Skip to content
This repository was archived by the owner on Jul 23, 2024. It is now read-only.

Commit 91b532a

Browse files
authored
Merge branch 'main' into rework-code-structure
2 parents df73f3d + e956b64 commit 91b532a

28 files changed

+587
-559
lines changed

.github/pull_request_template.md

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,27 @@
1-
# <title>
1+
# Description
22

3-
Global description
3+
<!-- Describe your changes in detail here. -->
44

5-
<!-- That would be nice if you can provide a changelog :P.
6-
If the description say everything no need.
5+
Fixes #(issue)
76

8-
## Changelog
7+
## Type of change
8+
9+
<!-- What type of change does your pull request introduce? Put an `x` in the box that apply. -->
10+
- [ ] Bugfix (Change which fixes a issue)
11+
- [ ] New feature (Change which adds new functionality)
12+
- [ ] Enhancement (Change which slightly improves existing code)
13+
- [ ] Breaking change (This change will introduce incompatibility with existing functionality)
14+
15+
## Changelog <!-- This is optional, but highly appreciated. -->
916

1017
- Fixed …
1118
- Added …
12-
-->
1319

14-
<!--
15-
If you modified the UI, please include
16-
## Screenshot
17-
-->
20+
## Testing
21+
22+
- [ ] I have tested my changes and verified that they work as expected <!-- Required, your PR won't be accepted if you don't do this step. -->
23+
24+
### How to test the changes
25+
26+
<!-- Optional, it can speed up review process if you provide the information on how to test your changes. -->
27+
No information provided.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ fabric.properties
262262

263263

264264
# VSCode
265-
.vscode/*
265+
.vscode/
266266
!.vscode/settings.json
267267
!.vscode/tasks.json
268268
!.vscode/launch.json

data/presets/adwaita-dark.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
"dialog_fg_color": "#ffffff",
3333
"popover_bg_color": "#383838",
3434
"popover_fg_color": "#ffffff",
35-
"shade_color": "rgba(0,0,0,0.36)",
36-
"scrollbar_outline_color": "rgba(0,0,0,0.5)"
35+
"shade_color": "rgba(0, 0, 0, 0.36)",
36+
"scrollbar_outline_color": "rgba(0, 0, 0, 0.5)"
3737
},
3838
"palette": {
3939
"blue_": {
@@ -99,9 +99,5 @@
9999
"4": "#241f31",
100100
"5": "#000000"
101101
}
102-
},
103-
"custom_css": {
104-
"gtk4": "",
105-
"gtk3": ""
106102
}
107103
}

data/presets/adwaita.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"window_bg_color": "#fafafa",
2020
"window_fg_color": "rgba(0, 0, 0, 0.8)",
2121
"view_bg_color": "#ffffff",
22-
"view_fg_color": "#000000",
22+
"view_fg_color": "rgba(0, 0, 0, 0.8)",
2323
"headerbar_bg_color": "#ebebeb",
2424
"headerbar_fg_color": "rgba(0, 0, 0, 0.8)",
2525
"headerbar_border_color": "rgba(0, 0, 0, 0.8)",
@@ -32,8 +32,8 @@
3232
"dialog_fg_color": "rgba(0, 0, 0, 0.8)",
3333
"popover_bg_color": "#ffffff",
3434
"popover_fg_color": "rgba(0, 0, 0, 0.8)",
35-
"shade_color": "rgba(0,0,0,0.07)",
36-
"scrollbar_outline_color": "rgb(255,255,255)"
35+
"shade_color": "rgba(0, 0, 0, 0.07)",
36+
"scrollbar_outline_color": "#ffffff"
3737
},
3838
"palette": {
3939
"blue_": {
@@ -99,9 +99,5 @@
9999
"4": "#241f31",
100100
"5": "#000000"
101101
}
102-
},
103-
"custom_css": {
104-
"gtk4": "",
105-
"gtk3": ""
106102
}
107103
}

data/presets/pretty-purple.json

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "Pretty Purple",
33
"variables": {
4-
"accent_color": "rgb(220,138,221)",
5-
"accent_bg_color": "rgb(145,65,172)",
4+
"accent_color": "#dc8add",
5+
"accent_bg_color": "#9141ac",
66
"accent_fg_color": "#ffffff",
77
"destructive_color": "#ff7b63",
88
"destructive_bg_color": "#c01c28",
@@ -16,24 +16,24 @@
1616
"error_color": "#ff7b63",
1717
"error_bg_color": "#c01c28",
1818
"error_fg_color": "#ffffff",
19-
"window_bg_color": "rgb(36,31,49)",
20-
"window_fg_color": "rgb(255,255,255)",
21-
"view_bg_color": "rgb(36,31,49)",
19+
"window_bg_color": "#241f31",
20+
"window_fg_color": "#ffffff",
21+
"view_bg_color": "#241f31",
2222
"view_fg_color": "#ffffff",
23-
"headerbar_bg_color": "rgb(36,31,49)",
23+
"headerbar_bg_color": "#241f31",
2424
"headerbar_fg_color": "#ffffff",
25-
"headerbar_border_color": "rgba(0,0,0,0)",
25+
"headerbar_border_color": "#ffffff",
2626
"headerbar_backdrop_color": "@window_bg_color",
27-
"headerbar_shade_color": "rgba(0,0,0,0.25)",
28-
"card_bg_color": "rgba(255,255,255,0.08)",
27+
"headerbar_shade_color": "rgba(0, 0, 0, 0.36)",
28+
"card_bg_color": "rgba(255, 255, 255, 0.08)",
2929
"card_fg_color": "#ffffff",
30-
"card_shade_color": "rgba(0,0,0,0.25)",
31-
"dialog_bg_color": "rgb(36,31,49)",
30+
"card_shade_color": "rgba(0, 0, 0, 0.36)",
31+
"dialog_bg_color": "#241f31",
3232
"dialog_fg_color": "#ffffff",
33-
"popover_bg_color": "rgb(36,31,49)",
33+
"popover_bg_color": "#241f31",
3434
"popover_fg_color": "#ffffff",
35-
"shade_color": "rgba(0,0,0,0.36)",
36-
"scrollbar_outline_color": "rgb(0,0,0)"
35+
"shade_color": "rgba(0, 0, 0, 0.36)",
36+
"scrollbar_outline_color": "rgba(0, 0, 0, 0.5)"
3737
},
3838
"palette": {
3939
"blue_": {
@@ -99,9 +99,5 @@
9999
"4": "#241f31",
100100
"5": "#000000"
101101
}
102-
},
103-
"custom_css": {
104-
"gtk4": "",
105-
"gtk3": ""
106102
}
107103
}

po/Gradience.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2022-12-01 12:16+0000\n"
11+
"POT-Creation-Date: 2022-12-02 12:14+0000\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"

0 commit comments

Comments
 (0)