Merge branch 'main' into presets-improvs

This commit is contained in:
0xMRTT 2022-09-11 14:22:27 +02:00 committed by GitHub
commit 6588bd751e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 12 deletions

View file

@ -61,7 +61,7 @@ dnf install gradience
### Debian (And derivates) ### Debian (And derivates)
Not available yet Not available yet. If you want, submit a PR.
### AUR ### AUR
@ -167,12 +167,12 @@ This tool is currently WIP, but it already has a plenty of features and is very
- [x] Make the code more secure - [x] Make the code more secure
- [x] Add preset manager with option to download other users presets - [x] Add preset manager with option to download other users presets
- [x] Release on Flathub - [x] Release on Flathub
- [ ] Add plugin support. Will help integration with others tools. (WIP) - [x] Add plugin support. Will help integration with others tools. (WIP)
- [ ] Full theme preview - [ ] Full theme preview
- [ ] Customize GNOME Shell - [ ] Customize GNOME Shell
- [ ] Customize GDM - [ ] Customize GDM
- [ ] Customize KvLibadwaita - [ ] Customize KvLibadwaita
- [ ] Customize Firefox GNOME theme - [x] Customize Firefox GNOME theme
</details> </details>

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-09-10 12:14+0000\n" "POT-Creation-Date: 2022-09-11 12:14+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -116,11 +116,11 @@ msgid ""
"GTK 4 CSS will be previewed here." "GTK 4 CSS will be previewed here."
msgstr "" msgstr ""
#: data/ui/custom_css_group.blp:29 #: data/ui/custom_css_group.blp:33
msgid "GTK 4" msgid "GTK 4"
msgstr "" msgstr ""
#: data/ui/custom_css_group.blp:29 #: data/ui/custom_css_group.blp:33
msgid "GTK 3" msgid "GTK 3"
msgstr "" msgstr ""
@ -545,17 +545,17 @@ msgstr ""
msgid "Not a color, see text value" msgid "Not a color, see text value"
msgstr "" msgstr ""
#: src/plugins_list.py:72 #: src/plugins_list.py:94
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/plugins_list.py:75 #: src/plugins_list.py:97
msgid "" msgid ""
"Plugins add additional features to Gradience, plugins are made by Gradience " "Plugins add additional features to Gradience, plugins are made by Gradience "
"community and can make issues." "community and can make issues."
msgstr "" msgstr ""
#: src/plugins_list.py:85 #: src/plugins_list.py:108
msgid "No plugins found" msgid "No plugins found"
msgstr "" msgstr ""

View file

@ -63,7 +63,7 @@ class GradiencePluginsList:
self.app.settings.get_value("enabled-plugins").unpack() self.app.settings.get_value("enabled-plugins").unpack()
) )
def save_enabled_plugins(self): def save_enabled_plugins(self):
self.app.settings.set_value( self.app.settings.set_value(
"enabled-plugins", GLib.Variant("as", list(self.enabled_plugins)) "enabled-plugins", GLib.Variant("as", list(self.enabled_plugins))
) )

View file

@ -61,7 +61,7 @@ class GradiencePresetWindow(Adw.Window):
official_repositories = { official_repositories = {
_( _(
"Official" "Official"
): "https://github.com/GradienceTeam/Community/raw/v2/official.json", ): "https://github.com/GradienceTeam/Community/raw/next/official.json",
} }
search_results_list = [] search_results_list = []
@ -77,7 +77,7 @@ class GradiencePresetWindow(Adw.Window):
self.user_repositories = self.settings.get_value("repos").unpack() self.user_repositories = self.settings.get_value("repos").unpack()
self.user_repositories[ self.user_repositories[
_("Curated") _("Curated")
] = "https://github.com/GradienceTeam/Community/raw/v2/curated.json" ] = "https://github.com/GradienceTeam/Community/raw/next/curated.json"
self.enabled_repos = self.settings.get_value("enabled-repos").unpack() self.enabled_repos = self.settings.get_value("enabled-repos").unpack()
self.setup_signals() self.setup_signals()