• R/O
  • HTTP
  • SSH
  • HTTPS

alterlinux-calamares: 提交

GitHubのミラーです
https://github.com/FascodeNet/alterlinux-calamares


Commit MetaInfo

修订版4e08b6609f5fc1504d95eb483418a4d007819d08 (tree)
时间2020-03-09 14:04:00
作者lap1sid <48173871+lap1sid@user...>
CommiterGitHub

Log Message

Merge pull request #14 from Hayao0819/master

いくつかの追加を修正

更改概述

差异

--- a/src/branding/alter/branding.desc
+++ b/src/branding/alter/branding.desc
@@ -1,3 +1,9 @@
1+# Product branding information. This influences some global
2+# user-visible aspects of Calamares, such as the product
3+# name, window behavior, and the slideshow during installation.
4+#
5+# Additional styling can be done using the stylesheet.qss
6+# file, also in the branding directory.
17 ---
28 componentName: alter
39
@@ -17,8 +23,8 @@ welcomeExpandingLogo: true
1723 # Size and expansion policy for Calamares.
1824 # - "normal" or unset, expand as needed, use *windowSize*
1925 # - "fullscreen", start as large as possible, ignore *windowSize*
20-# - "noexpand", never expand, use *windowSize*
21-windowExpanding: noexpand
26+# - "noexpand", don't expand automatically, use *windowSize*
27+windowExpanding: normal
2228
2329 # Size of Calamares window, expressed as w,h. Both w and h
2430 # may be either pixels (suffix px) or font-units (suffix em).
@@ -29,6 +35,12 @@ windowExpanding: noexpand
2935 # in CalamaresUtilsGui, 800x520.
3036 windowSize: 800px,520px
3137
38+# Placement of Calamares window. Either "center" or "free".
39+# Whether "center" actually works does depend on the window
40+# manager in use (and only makes sense if you're not using
41+# *windowExpanding* set to "fullscreen").
42+windowPlacement: center
43+
3244 # These are strings shown to the user in the user interface.
3345 # There is no provision for translating them -- since they
3446 # are names, the string is included as-is.
@@ -40,14 +52,32 @@ windowSize: 800px,520px
4052 #
4153 # bootloaderEntryName is how this installation / distro is named
4254 # in the boot loader (e.g. in the GRUB menu).
55+#
56+# These strings support substitution from /etc/os-release
57+# if KDE Frameworks 5.58 are available at build-time. When
58+# enabled, @{var-name} is replaced by the equivalent value
59+# from os-release. All the supported var-names are in all-caps,
60+# and are listed on the FreeDesktop.org site,
61+# https://www.freedesktop.org/software/systemd/man/os-release.html
62+# Note that ANSI_COLOR and CPE_NAME don't make sense here, and
63+# are not supported (the rest are). Remember to quote the string
64+# if it contains substitutions, or you'll get YAML exceptions.
65+#
66+# The *Url* entries are used on the welcome page, and they
67+# are visible as buttons there if the corresponding *show* keys
68+# are set to "true" (they can also be overridden).
4369 strings:
4470 productName: Alter Linux
4571 shortProductName: Alter Linux
46- version:
47- shortVersion:
72+ version:
73+ shortVersion:
4874 versionedName: Alter Linux
4975 shortVersionedName: Alter Linux
5076 bootloaderEntryName: Alter Linux
77+ productUrl: https://alterlinux.com
78+ supportUrl: https://github.com/SereneTeam/alterlinux/issues
79+ knownIssuesUrl: https://alterlinux.com
80+ releaseNotesUrl: https://github.com/SereneTeam/alterlinux/releases
5181
5282 # These images are loaded from the branding module directory.
5383 #
@@ -63,6 +93,8 @@ strings:
6393 # any size and proportion, and will be scaled to fit inside
6494 # the window. Use `welcomeExpandingLogo` to make it non-scaled.
6595 # Recommended size is 320x150.
96+#
97+# These filenames can also use substitutions from os-release (see above).
6698 images:
6799 productIcon: "logo-16.png"
68100 productLogo: "logo-128.png"
@@ -71,6 +103,17 @@ images:
71103 # The slideshow is displayed during execution steps (e.g. when the
72104 # installer is actually writing to disk and doing other slow things).
73105 slideshow: "show.qml"
106+# There are two available APIs for the slideshow:
107+# - 1 (the default) loads the entire slideshow when the installation-
108+# slideshow page is shown and starts the QML then. The QML
109+# is never stopped (after installation is done, times etc.
110+# continue to fire).
111+# - 2 loads the slideshow on startup and calls onActivate() and
112+# onLeave() in the root object. After the installation is done,
113+# the show is stopped (first by calling onLeave(), then destroying
114+# the QML components).
115+slideshowAPI: 2
116+
74117
75118 # Colors for text and background components.
76119 #
@@ -80,15 +123,12 @@ slideshow: "show.qml"
80123 # Optional, and defaults to the application palette.
81124 # - sidebarSelect is the text color of the selected step.
82125 #
83-# Manjaro defaults
84-#
85-#style:
86-# sidebarBackground: "#454948"
87-# sidebarTextSelect: "#4d915e"
88-# sidebarTextHighlight: "#1a1c1b"
89-
126+# These colors can **also** be set through the stylesheet, if the
127+# branding component also ships a stylesheet.qss. Then they are
128+# the corresponding CSS attributes of #sidebarApp.
90129 style:
91- sidebarBackground: "#EFEFEF"
130+# sidebarBackground: "#EFEFEF"
131+ sidebarBackground: "#FFFFFF"
92132 sidebarText: "#000000"
93133 sidebarTextSelect: "#1565C0"
94- sidebarTextHighlight: "#EFEFEF"
\ No newline at end of file
134+ sidebarTextHighlight: "#EFEFEF"
Show on old repository browser