-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated colors throughout the app * Prep 3.2.0 release * More 3.2.0 and translations prep * Accidentally a word * Remove unused meson post install, correct action manifest path * Actions: fix paths
- Loading branch information
1 parent
f354694
commit 58d237b
Showing
29 changed files
with
111 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
name: Lint | ||
on: | ||
pull_request: | ||
paths: | ||
- '**.vala' | ||
|
||
jobs: | ||
lint: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"id": "com.cassidyjames.plausible", | ||
"runtime": "org.gnome.Platform", | ||
"runtime-version": "46", | ||
"sdk": "org.gnome.Sdk", | ||
"command": "com.cassidyjames.plausible", | ||
"finish-args": [ | ||
"--socket=wayland", | ||
"--socket=fallback-x11", | ||
"--share=ipc", | ||
"--share=network", | ||
"--device=dri" | ||
], | ||
"modules": [ | ||
{ | ||
"name": "tally", | ||
"buildsystem": "meson", | ||
"sources": [ | ||
{ | ||
"type": "dir", | ||
"path": "../.." | ||
} | ||
] | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
@define-color accent_color #9c95fd; | ||
@define-color window_bg_color #1a202c; | ||
@define-color dialog_bg_color #1f2937; | ||
@define-color accent_color #99A8FE; | ||
@define-color accent_alt_color @accent_color; | ||
|
||
@define-color headerbar_bg_color #1e293b; | ||
|
||
@define-color window_bg_color #1a202C; | ||
@define-color window_fg_color #f1f5f9; | ||
@define-color dialog_bg_color #1e293b; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
@define-color headerbar_bg_color #5850ec; | ||
@define-color headerbar_fg_color #fff; | ||
@define-color headerbar_border_color #fff; | ||
@define-color headerbar_backdrop_color mix(@headerbar_bg_color, @window_bg_color, 0.2); | ||
@define-color accent_color #4f46e5; | ||
@define-color accent_alt_color #1f2961; | ||
|
||
@define-color accent_color @headerbar_bg_color; | ||
@define-color headerbar_bg_color #f4f5fc; | ||
@define-color headerbar_fg_color @accent_color; | ||
@define-color headerbar_border_color @headerbar_fg_color; | ||
@define-color headerbar_backdrop_color mix(@headerbar_bg_color, @window_bg_color, 0.2); | ||
|
||
@define-color window_bg_color #f9fafb; | ||
@define-color window_bg_color #f8fafc; | ||
@define-color window_fg_color #0f172a; | ||
@define-color dialog_bg_color #fff; | ||
@define-color popover_bg_color @dialog_bg_color; | ||
|
||
.loading { | ||
background-color: @dialog_bg_color; | ||
background-color: @headerbar_bg_color; | ||
color: @accent_alt_color; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,6 @@ | |
|
||
public class Plausible.App : Adw.Application { | ||
public const string NAME = "Tally"; | ||
public const string DEVELOPER = "Cassidy James Blaede"; | ||
public const string EMAIL = "[email protected]"; | ||
public const string URL = "https://cassidyjames.com"; | ||
|
||
public static GLib.Settings settings; | ||
|
||
|
Oops, something went wrong.