-
Notifications
You must be signed in to change notification settings - Fork 12
3.0.0 Early gui work #39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
6e429e0
feat: non functional gui
AshtakaOOf b527b48
Merge branch 'master' into v3-gui
AshtakaOOf 009acdd
feat: add about menu from equinox
AshtakaOOf 944fd01
chore: missing nimble dependencies
AshtakaOOf 53024eb
losing it tbh
AshtakaOOf 231dc3d
rawr
AshtakaOOf e9a88be
add: license
xTrayambak cc6f44a
ref: delete build_info.nim
xTrayambak 119b5e9
fix: compile time error
xTrayambak 4128a0d
bump: 0.1.0 -> 3.0.0
xTrayambak fe745e5
fix: LICENSE: i wonder if this makes it void
xTrayambak bf79fe0
fix: get it compiling
xTrayambak 253679f
add: patch reverting stuff
xTrayambak 54c6545
some stuff
xTrayambak fbef441
feat(gui): preparing changes
AshtakaOOf 2c0d359
build: fix github actions
AshtakaOOf 7a7e75e
build: squashed attemps
AshtakaOOf 7ed93b8
feat: gui css stylesheet
AshtakaOOf bac8ba6
fix: make general settings button normal
xTrayambak 59f9fe0
fix: remove stylesheet
xTrayambak 76ef562
add: get some config saving working
xTrayambak bc139de
feat: add patch store button
AshtakaOOf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -3,3 +3,4 @@ | |
| !*/ | ||
| result | ||
| src/resources.c | ||
| !LICENSE | ||
Large diffs are not rendered by default.
Oops, something went wrong.
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 hidden or 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 hidden or 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,6 @@ | ||
| [package] | ||
| name = "lucem" | ||
| version = "0.1.0" | ||
| version = "3.0.0" | ||
| license = "GPL3" | ||
| kind = "Binary" | ||
| backend = "C" | ||
|
|
||
This file contains hidden or 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,2 +1,3 @@ | ||
| --deepcopy:on | ||
| --define:adwMinor=5 | ||
| --passC:"-march=znver3 -mtune=znver3 -msse -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mpclmul -mavx -mavx2" |
This file contains hidden or 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,5 +1,12 @@ | ||
| <gresources> | ||
| <gresource prefix="/xyz/xtrayambak/lucem"> | ||
| <file>assets/icons/lucem.svg</file> | ||
| <gresource prefix="/equinoxhq/lucem/resources"> | ||
| <file | ||
| compressed="true" | ||
| preprocess="xml-stripblanks" | ||
| >assets/icons/lucem.svg</file> | ||
| <file | ||
| compressed="true" | ||
| preprocess="xml-stripblanks" | ||
| >assets/icons/shopping-cart-symbolic.svg</file> | ||
| </gresource> | ||
| </gresources> |
This file contains hidden or 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,25 @@ | ||
| import pkg/owlkettle, pkg/owlkettle/adw | ||
| import ../meta | ||
|
|
||
| proc openAboutMenu*(app: Viewable) = | ||
| discard app.open: | ||
| gui: | ||
| AboutWindow: | ||
| applicationName = "Lucem" | ||
| developerName = "The EquinoxHQ Team" | ||
| version = meta.Version | ||
| supportUrl = "https://discord.gg/Z5m3n9fjcU" | ||
| issueUrl = "https://github.com/equinoxhq/lucem/issues" | ||
| website = "https://equinoxhq.github.io" | ||
| applicationIcon = "lucem" | ||
| copyright = | ||
| """ | ||
| Copyright (C) 2025 xTrayambak and the EquinoxHQ Team | ||
| """ | ||
| license = meta.License | ||
| licenseType = LicenseGPL_3_0 | ||
| developers = @["Trayambak (xTrayambak)"] | ||
| designers = @["Adrien (AshtakaOOf)"] | ||
| artists = @[] | ||
| documenters = @[] | ||
| credits = @{"Emotional support (probably)": @["Kirby (k1yrix)"]} |
This file contains hidden or 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,12 @@ | ||
| /* | ||
| Random styles because I was too lazy to find the proper implementation in owlkettle for random stuff | ||
| - Ashtaka | ||
| */ | ||
|
|
||
| /* .sidebar-button { | ||
| --shade-color: green; | ||
| --border-color: green; | ||
| --accent-bg-color: green; | ||
| --card-bg-color: green; | ||
| padding: 2rem; | ||
| } */ |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ts is enough to give libxml2 a stroke and cardiac arrest at once 🙏💔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left it like that because I couldn't figure out how to have the icon follow the system theme 😭🙏