Skip to content

Commit

Permalink
work on flatpak toolbox
Browse files Browse the repository at this point in the history
  • Loading branch information
vhdirk committed Jan 14, 2024
1 parent cdbb7e3 commit 46a859f
Show file tree
Hide file tree
Showing 11 changed files with 666 additions and 99 deletions.
111 changes: 109 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 20 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ version = "0.1.0"
authors = ["Dirk Van Haerenborgh <[email protected]>"]
edition = "2021"

[[bin]]
name="terms"
path = "./src/main.rs"

[[bin]]
name="terms-toolbox"
path = "./src/bin/toolbox.rs"

[lib]
name = "terms_toolbox"
path = "src/lib/toolbox.rs"

[profile.release]
lto = true

Expand All @@ -26,8 +38,8 @@ adw = { package = "libadwaita", version = "0.5", features = ["v1_4"] }
vte = { git = "https://gitlab.gnome.org/vhdirk/vte4-rs", package = "vte4", branch = "0.7", version = "0.7", features = [
"v0_72",
] }
ashpd = { version = "0.6.8" }
rsvg = { package = "librsvg", version = "2.57" }
ashpd = { version = "0.6.8" }
gsettings-macro = "0.1.20"

async-std = "1.12.0"
Expand All @@ -42,6 +54,13 @@ rand = "0.8.5"
elementtree = "1.2.3"
serde_yaml = "0.9.30"
itertools = "0.12.0"
bitflags = "2.4.1"
async-trait = "0.1.77"
clap = { version = "4.4.16", features = ["derive"] }
libc = "0.2.152"
thiserror = "1.0.56"
anyhow = "1.0.79"
zbus = "3.14.1"

[build-dependencies]
glib-build-tools = "0.18.0"
9 changes: 5 additions & 4 deletions data/icons/actions/checkmark-small-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 4 additions & 7 deletions data/resources/resources.gresource.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,16 @@
<file compressed="true" preprocess="xml-stripblanks" alias="search_toolbar.ui">../../src/components/search_toolbar/search_toolbar.ui</file>
<file compressed="true" preprocess="xml-stripblanks" alias="session.ui">../../src/components/session/session.ui</file>
<file compressed="true" preprocess="xml-stripblanks" alias="style_switcher.ui">../../src/components/style_switcher/style_switcher.ui</file>

<file compressed="true">style.css</file>
<file compressed="true">style-dark.css</file>
</gresource>
<gresource prefix="/io/github/vhdirk/Terms/svg">
<file compressed="true" preprocess="xml-stripblanks" alias="theme-thumbnail.svg">svg/theme-thumbnail.svg</file>
</gresource>
<gresource prefix="/io/github/vhdirk/Terms/icons/scalable/actions">
<file preprocess="xml-stripblanks" alias="checkmark-small-symbolic.svg">../icons/actions/checkmark-small-symbolic.svg</file>
<file compressed="true" preprocess="xml-stripblanks" alias="checkmark-small-symbolic.svg">../icons/actions/checkmark-small-symbolic.svg</file>
</gresource>
<gresource prefix="/io/github/vhdirk/Terms/icons/scalable/apps">
<file alias="app-icon.svg" preprocess="xml-stripblanks">../icons/io.github.vhdirk.Terms.svg</file>
<file alias="app-icon-devel.svg" preprocess="xml-stripblanks">../icons/io.github.vhdirk.Terms.Devel.svg</file>
<file alias="app-icon-symbolic.svg" preprocess="xml-stripblanks">../icons/io.github.vhdirk.Terms-symbolic.svg</file>
<file compressed="true" preprocess="xml-stripblanks" alias="app-icon.svg" >../icons/io.github.vhdirk.Terms.svg</file>
<file compressed="true" preprocess="xml-stripblanks" alias="app-icon-devel.svg">../icons/io.github.vhdirk.Terms.Devel.svg</file>
<file compressed="true" preprocess="xml-stripblanks" alias="app-icon-symbolic.svg">../icons/io.github.vhdirk.Terms-symbolic.svg</file>
</gresource>
</gresources>
Loading

0 comments on commit 46a859f

Please sign in to comment.