| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
| |
Currently translated at 85.1% (46 of 54 strings)
Translation: Arctica Framework/Arctica Greeter
Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/cs/
|
|
|
|
|
|
|
| |
Currently translated at 83.3% (45 of 54 strings)
Translation: Arctica Framework/Arctica Greeter
Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/cs/
|
|
|
|
|
|
|
| |
Currently translated at 83.3% (45 of 54 strings)
Translation: Arctica Framework/Arctica Greeter
Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/cs/
|
|
|
|
|
|
|
| |
Currently translated at 75.9% (41 of 54 strings)
Translation: Arctica Framework/Arctica Greeter
Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/cs/
|
|
|
|
|
|
|
| |
Currently translated at 96.2% (52 of 54 strings)
Translation: Arctica Framework/Arctica Greeter
Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/ja/
|
|\
| |
| |
| | |
Attributes GH PR #70: https://github.com/ArcticaProject/arctica-greeter/pull/70
|
| | |
|
| |
| |
| |
| | |
gtk-theme-name and gtk-icon-theme-name.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This functionality doesn't make sense, for two reasons:
- If we query the gtk-theme-name property before setting anything
else, we will certainly get the default theme name. But that is
hardcoded in GTK and not exactly secret. It can't be configured
directly, only by changing specific macros in GTK's source code and
recompiling it. The chances of someone doing that are... very small.
Thus, we can also just hardcode "Adwaita" in AG.
- If we query the gtk-theme-name property after setting it to a
different value... we will fetch the value we just set. That's
totally useless. My initial idea was that GTK is doing some input
sanitization on the provided theme name and handles an invalid name
by falling back to its built-in default and setting the
gtk-theme-name property to this built-in default as well. This,
however, is not true. Setting an invalid theme name will just mean
that GTK will fail loading the new theme and stay on whatever theme
it was before, copying the new value to the gtk-theme-name property
regardless. Unfortunately, querying the property is not something we
could use for error handling, which makes it completely useless.
It's better to just get rid of this.
|
| |
| |
| |
| | |
toggle icon theme if a11y indicator's high contrast switch gets toggled.
|
|/
|
|
| |
HighContrastInverse to HighContrast as default GTK+ theme.
|
|\
| |
| |
| | |
Attributes GH PR #71: https://github.com/ArcticaProject/arctica-greeter/pull/71
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
This adds a configurable 'high-contrast-background-color' gsetting
parameter (defaulting to #000000), so the high contrast bgcolor becomes
customizable.
|
|/
|
|
|
|
| |
background change requests.
Also reference the conncted-to gsettings by its class property name (KEY_HIGHT_CONTRAST).
|
|\
| |
| |
| | |
Attributes GH PR #52: https://github.com/ArcticaProject/arctica-greeter/pull/52
|
| | |
|
| | |
|
|/ |
|
|\
| |
| |
| | |
Attributes GH PR #67: https://github.com/ArcticaProject/arctica-greeter/pull/67
|
| |
| |
| |
| | |
eye to identified code-blocks.
|
| | |
|
|/ |
|
|\
| |
| |
| | |
Attributes GH PR #69: https://github.com/ArcticaProject/arctica-greeter/pull/69
|
|/ |
|
|\
| |
| |
| | |
Attributes GH PR #66: https://github.com/ArcticaProject/arctica-greeter/pull/66
|
|/
|
|
|
|
|
|
| |
sorting on a deep copy of the session list from LightDM.
This resolves the issue of loosing all session types starting with lower
case letters from the session chooser when accessing the chooser list
the second time.
|
|\
| |
| |
| | |
Attributes GH PR #65: https://github.com/ArcticaProject/arctica-greeter/pull/65
|
|/
|
|
| |
size unit 'pt' now (and reducing font size by 3).
|
|\
| |
| |
| | |
Attributes GH PR #64: https://github.com/ArcticaProject/arctica-greeter/pull/64
|
|/
|
|
|
| |
The preferred-session gsetting shall provide an ordered list of preferred
sessions for detecing the default session type.
|
|\
| |
| |
| | |
Attributes GH PR #63: https://github.com/ArcticaProject/arctica-greeter/pull/63
|
|/ |
|
|\
| |
| |
| | |
Attributes GH PR #61: https://github.com/ArcticaProject/arctica-greeter/pull/61
|
| |
| |
| |
| | |
Fixes: https://github.com/ArcticaProject/arctica-greeter/issues/56
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Previously, the HAVE_GTK_4_0 macro has been enabled whenever GTK 4
development files were found on the system.
We keep that behavior, and actually modify the build system to actually
build and link against GTK 4, but also add a new configure flag
--disable-gtk4 that disables GTK 4 usage.
The logic goes like that:
- If --disable-gtk4 has not been provided, configure will first look
for GTK 4 and use that if available, otherwise fall back to GTK+ 3.
- If --disable-gtk4 has been provided, GTK 4 detection is skipped and
only GTK+ 3 is detected.
- If --enable-gtk4 has been provided, configure will check for GTK 4
and not fall back to GTK+ 3, but error out if GTK 4 has not been
found.
Note that making GTK 4 the default might not be the best option
currently, because the greeter does not build against GTK 4, but is
paving the way for the future.
For now, users will have to use --disable-gtk4, up until all code has
been fully ported to support GTK 4.
Fixes: https://github.com/ArcticaProject/arctica-greeter/issues/56
|
|\
| |
| |
| | |
Attributes GH PR #59: https://github.com/ArcticaProject/arctica-greeter/pull/59
|
| | |
|
| |
| |
| |
| |
| |
| | |
greeter-wrapper again.
Fixes https://github.com/ArcticaProject/arctica-greeter/issues/36
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
spawn_async them directly.
This assures DBUS_SESSION_BUS_ADDRESS being shared between
greeter and indicators, so DBus session bus operation work
out-of-the-box (which is not the case when launching indicators
via systemd).
|
| | |
|
|/ |
|
|\
| |
| |
| | |
Attributes GH PR #60: https://github.com/ArcticaProject/arctica-greeter/pull/60
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Previously, the dialog resized whenever the timer was shown or hidden.
We want to avoid this, but unfortunately, GTK doesn't provide a way to
hide a widget and retain its size in the parent (for instance, a
container).
To work around this, create a new private class FakeHideLabel,
subclassing Gtk.Label, that exposes a fake_hide () property. If the
property is set to true, the widget is "fake hidden" by changing the
draw () method to first draw normally, and then paint everything fully
transparent.
The usual hide () and show () methods are not used any longer (other
than at widget creation).
Additionally, a dummy text is inserted at widget creation, including
setting the widget to "fake hidden", so that text line actually has a
size.
While this should work fine visually, this WILL definitely create
accessibility issues, which we must fix at a later time.
Fixes: https://github.com/ArcticaProject/arctica-greeter/issues/58
|
|
|
|
|
|
|
| |
Currently translated at 100.0% (54 of 54 strings)
Translation: Arctica Framework/Arctica Greeter
Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/es/
|
|\
| |
| |
| | |
Attributes GH PR #57: https://github.com/ArcticaProject/arctica-greeter/pull/57
|
|/
|
|
| |
slightly.
|
|
|
|
|
|
|
| |
Currently translated at 100.0% (54 of 54 strings)
Translation: Arctica Framework/Arctica Greeter
Translate-URL: https://hosted.weblate.org/projects/arctica-framework/greeter/sv/
|