aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * src/menubar.vala: Hide the bigfont feature until it's really available.Mike Gabriel2023-02-061-0/+4
| |
| * misc src/: completely rework high contrast mode, add stub for big font mode.Mihai Moldovan2023-02-0610-36/+586
| | | | | | | | | | | | | | | | | | This is a work-in-progress. The reworked high contrast mode adds support for a configurable high contrast GTK theme and changes a lot of widgets to change their color. The big font mode is a stub currently.
| * src/: add util.vala, wrapping a GTK 3 function for use within vala.Mihai Moldovan2023-02-063-1/+40
| | | | | | | | | | | | | | Since this function is only needed for and available in GTK 3, add configure checks for GTK 4.0 and higher as well. We will use this function later on.
| * src/toggle-box.vala: fix CSS style.Mihai Moldovan2023-02-061-3/+3
| | | | | | | | | | CSS element ids called "GtkElement" haven't been in use since 2014 and they never had a class called "element".
| * misc src/: make ArcticaGreeter a proper vala SingleInstance class.Mihai Moldovan2023-02-0611-99/+171
| | | | | | | | | | This allows us to drop the rather awkward self-referencing static singleton member and use a standard vala/glib feature.
| * src/settings.vala: make SingleInstance class.Mihai Moldovan2023-02-062-1/+20
|/ | | | | | | This way, we will be able to use it everywhere, as long as we hold a reference in the main greeter object. We will extend this class with other properties later on.
* Translated using Weblate (Ukrainian)Dan2023-01-201-6/+6
| | | | | | | Currently translated at 100.0% (49 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/uk/
* Translated using Weblate (Swedish)tygyh2023-01-191-8/+8
| | | | | | | Currently translated at 100.0% (49 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/sv/
* Translated using Weblate (Chinese (Traditional, Hong Kong))Jack Tam2023-01-061-20/+19
| | | | | | | Currently translated at 100.0% (49 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/zh_Hant_HK/
* src/settings-daemon.vala: Also set rfill MSD plugin to disabled in greeter.Mike Gabriel2022-11-281-0/+1
|
* src/settings-daemon.vala: Use correct MSD schema names.Mike Gabriel2022-11-281-16/+17
|
* Translated using Weblate (Chinese (Simplified))Eric2022-10-021-7/+12
| | | | | | | Currently translated at 100.0% (49 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/zh_Hans/
* Translated using Weblate (Chinese (Simplified))yangyangdaji2022-10-021-3/+3
| | | | | | | Currently translated at 100.0% (49 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/zh_Hans/
* Translated using Weblate (Chinese (Simplified))yinaroh@all-mail.net2022-10-011-2/+2
| | | | | | | Currently translated at 100.0% (49 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/zh_Hans/
* Translated using Weblate (Chinese (Simplified))Kocic W2022-10-011-3/+3
| | | | | | | Currently translated at 100.0% (49 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/zh_Hans/
* Translated using Weblate (Chinese (Simplified))yinaroh@all-mail.net2022-10-011-4/+5
| | | | | | | Currently translated at 100.0% (49 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/zh_Hans/
* Translated using Weblate (Chinese (Simplified))yangyangdaji2022-10-011-4/+4
| | | | | | | Currently translated at 100.0% (49 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/zh_Hans/
* Translated using Weblate (Chinese (Simplified))yinaroh@all-mail.net2022-10-011-2/+2
| | | | | | | Currently translated at 93.8% (46 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/zh_Hans/
* Translated using Weblate (Chinese (Simplified))yangyangdaji2022-10-011-2/+2
| | | | | | | Currently translated at 93.8% (46 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/zh_Hans/
* Translated using Weblate (Chinese (Simplified))yinaroh@all-mail.net2022-10-011-12/+10
| | | | | | | Currently translated at 91.8% (45 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/zh_Hans/
* src/toggle-box.vala: Port font-family-with-blanks-fix from prompt-box to ↵Mike Gabriel2022-06-271-2/+12
| | | | | | toggle-box. Fixes: https://github.com/ArcticaProject/arctica-greeter/issues/34
* session-list: Add badge for IceWM.Mike Gabriel2022-06-273-0/+3
| | | | Fixes: https://github.com/ArcticaProject/arctica-greeter/issues/35
* src/prompt-box.vala: Use regular expression to split KEY_FONT_NAME into ↵Mike Gabriel2022-06-271-3/+12
| | | | | | | | font_family and font_size. This now also supports font family names containing blanks. Fixes: https://github.com/ArcticaProject/arctica-greeter/issues/34
* .travis.yml: Add CI builds for Ubuntu 22.04.Mike Gabriel2022-06-271-0/+1
|
* .build.yml: Skip CI tests on ppc64el for now. Something seems to be broken ↵Mike Gabriel2022-06-271-1/+1
| | | | over at Travis CI regarding ppc64el.
* po/fr_CA.po: typo fix.Elyes HAOUAS2022-06-271-1/+1
|
* Fix some typosElyes HAOUAS2022-06-274-8/+8
| | | | Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
* src/Makefile.am: Avoid duplicate double-quotes.Mike Gabriel2022-06-261-4/+4
|
* configure.ac: Show summary of build parameters at end of configure.Mike Gabriel2022-06-261-0/+28
|
* Translated using Weblate (Burmese)Michael Kha2022-04-221-4/+6
| | | | | | | Currently translated at 73.4% (36 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/my/
* .travis.yml: Use Ubuntu focal base image for CI builds.Mike Gabriel2022-04-011-1/+1
|
* .travis.yml: Fix docker-build script URL (default branch has been renamed to ↵Mike Gabriel2022-04-011-1/+1
| | | | 'main').
* Translated using Weblate (Chinese (Simplified))yzqzss2022-01-251-5/+5
| | | | | | | Currently translated at 77.5% (38 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/zh_Hans/
* Translated using Weblate (Chinese (Simplified))Eric2022-01-081-15/+12
| | | | | | | Currently translated at 77.5% (38 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/zh_Hans/
* Translated using Weblate (Urdu)Civil 056DB2021-09-301-29/+46
| | | | | | | Currently translated at 97.9% (48 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/ur/
* Translated using Weblate (Khmer (Central))ប៉ុកណូ រ៉ូយ៉ាល់2021-09-281-14/+23
| | | | | | | Currently translated at 97.9% (48 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/km/
* Translated using Weblate (Sardinian)Ivano Peddis2021-09-271-27/+43
| | | | | | | Currently translated at 100.0% (49 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/sc/
* Translated using Weblate (Occitan)Quentin PAGÈS2021-09-081-9/+9
| | | | | | | Currently translated at 100.0% (49 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/oc/
* Translated using Weblate (Bengali)Sanaf2021-09-081-33/+33
| | | | | | | Currently translated at 75.5% (37 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/bn/
* Translated using Weblate (Polish)Urszula2021-09-071-4/+4
| | | | | | | Currently translated at 100.0% (49 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/pl/
* Merge branch 'ElyesH-master'Mike Gabriel2021-06-072-2/+2
|\ | | | | | | Attribute GH PR #22: https://github.com/ArcticaProject/arctica-greeter/pull/22
| * Fix some typosElyes HAOUAS2021-06-072-2/+2
|/ | | | Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
* .build.yml: Disable unit tests for now. They are badly maintained.Mike Gabriel2021-06-071-11/+11
|
* Travis CI: Initial CI build configuration.Mike Gabriel2021-06-072-0/+223
|
* Translated using Weblate (Bengali)Oymate2021-05-281-5/+7
| | | | | | | Currently translated at 20.4% (10 of 49 strings) Translation: Arctica Framework/Arctica Greeter Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/bn/
* debian/control: Add B-D: lightdm (for detecting where lightdm-guest-session ↵Mike Gabriel2021-05-121-0/+1
| | | | resides).
* debian/rules: At least at build time, try to find the lightdm-guest-session ↵Mike Gabriel2021-04-121-1/+15
| | | | executable. On purpose, we have kept this outside of the upstream code.
* data/50-arctica-greeter.conf.in: Drop long ago commented out greeter-wrapper ↵Mike Gabriel2021-04-121-4/+0
| | | | option for [Seat:*].
* debian/rules: Explicitly set GUEST_WRAPPER_BINARY during auto_configure.Mike Gabriel2021-04-121-0/+3
|
* guest-session: Make path to lightdm-guest-session executable adaptable to ↵Mike Gabriel2021-04-123-2/+17
| | | | | | the lightdm package this greeter is co-installed with. Fixes ArcticaProject/arctica-greeter#15.