Skip to content

Commit

Permalink
release 0.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
elevenhsoft committed Sep 25, 2024
1 parent 3e2f9c8 commit 6793160
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

84 changes: 65 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webapps"
version = "0.4.8"
version = "0.4.9"
edition = "2021"
description = "Web applications at your fingertips"
authors = ["cosmic-utils"]
Expand Down Expand Up @@ -53,30 +53,76 @@ features = ["tokio", "winit", "wgpu", "dbus-config"]
[package.metadata.deb]
license-file = "LICENSE"
assets = [
["target/release/quick-webapps", "usr/bin/", "755"],
["res/io.github.elevenhsoft.WebApps.desktop", "usr/share/applications/", "644"],
["res/io.github.elevenhsoft.WebApps.metainfo.xml", "usr/share/metainfo/", "644"],
["res/icons/hicolor/**/*", "usr/share/icons/hicolor/", "644"],
[
"target/release/quick-webapps",
"usr/bin/",
"755",
],
[
"res/io.github.elevenhsoft.WebApps.desktop",
"usr/share/applications/",
"644",
],
[
"res/io.github.elevenhsoft.WebApps.metainfo.xml",
"usr/share/metainfo/",
"644",
],
[
"res/icons/hicolor/**/*",
"usr/share/icons/hicolor/",
"644",
],
]

[package.metadata.generate-rpm]
assets = [
{ source = "target/release/quick-webapps", dest = "/usr/bin/", mode = "755" },
{ source = "LICENSE", dest = "/usr/share/doc/wizard/LICENSE", doc = true, mode = "644" },
{ source = "res/*.desktop", dest = "/usr/share/applications/", mode = "644" },
{ source = "res/icons/hicolor/**/*", dest = "/usr/share/icons/hicolor/", mode = "644"},
{ source = "target/release/quick-webapps", dest = "/usr/bin/", mode = "755" },
{ source = "LICENSE", dest = "/usr/share/doc/wizard/LICENSE", doc = true, mode = "644" },
{ source = "res/*.desktop", dest = "/usr/share/applications/", mode = "644" },
{ source = "res/icons/hicolor/**/*", dest = "/usr/share/icons/hicolor/", mode = "644" },
]

[package.metadata.aur]
files = [
["res/io.github.elevenhsoft.WebApps.desktop", "/usr/share/applications/io.github.elevenhsoft.WebApps.desktop"],
["res/io.github.elevenhsoft.WebApps.metainfo.xml", "/usr/share/metainfo/io.github.elevenhsoft.WebApps.metainfo.xml"],
["LICENSE","/usr/share/doc/quick-webapps/LICENSE"],
["res/icons/hicolor/16x16/apps/io.github.elevenhsoft.WebApps.png", "/usr/share/icons/hicolor/16x16/apps/io.github.elevenhsoft.WebApps.png"],
["res/icons/hicolor/24x24/apps/io.github.elevenhsoft.WebApps.png", "/usr/share/icons/hicolor/24x24/apps/io.github.elevenhsoft.WebApps.png"],
["res/icons/hicolor/32x32/apps/io.github.elevenhsoft.WebApps.png", "/usr/share/icons/hicolor/32x32/apps/io.github.elevenhsoft.WebApps.png"],
["res/icons/hicolor/48x48/apps/io.github.elevenhsoft.WebApps.png", "/usr/share/icons/hicolor/48x48/apps/io.github.elevenhsoft.WebApps.png"],
["res/icons/hicolor/64x64/apps/io.github.elevenhsoft.WebApps.png", "/usr/share/icons/hicolor/64x64/apps/io.github.elevenhsoft.WebApps.png"],
["res/icons/hicolor/128x128/apps/io.github.elevenhsoft.WebApps.png", "/usr/share/icons/hicolor/128x128/apps/io.github.elevenhsoft.WebApps.png"],
["res/icons/hicolor/256x256/apps/io.github.elevenhsoft.WebApps.png", "/usr/share/icons/hicolor/256x256/apps/io.github.elevenhsoft.WebApps.png"],
[
"res/io.github.elevenhsoft.WebApps.desktop",
"/usr/share/applications/io.github.elevenhsoft.WebApps.desktop",
],
[
"res/io.github.elevenhsoft.WebApps.metainfo.xml",
"/usr/share/metainfo/io.github.elevenhsoft.WebApps.metainfo.xml",
],
[
"LICENSE",
"/usr/share/doc/quick-webapps/LICENSE",
],
[
"res/icons/hicolor/16x16/apps/io.github.elevenhsoft.WebApps.png",
"/usr/share/icons/hicolor/16x16/apps/io.github.elevenhsoft.WebApps.png",
],
[
"res/icons/hicolor/24x24/apps/io.github.elevenhsoft.WebApps.png",
"/usr/share/icons/hicolor/24x24/apps/io.github.elevenhsoft.WebApps.png",
],
[
"res/icons/hicolor/32x32/apps/io.github.elevenhsoft.WebApps.png",
"/usr/share/icons/hicolor/32x32/apps/io.github.elevenhsoft.WebApps.png",
],
[
"res/icons/hicolor/48x48/apps/io.github.elevenhsoft.WebApps.png",
"/usr/share/icons/hicolor/48x48/apps/io.github.elevenhsoft.WebApps.png",
],
[
"res/icons/hicolor/64x64/apps/io.github.elevenhsoft.WebApps.png",
"/usr/share/icons/hicolor/64x64/apps/io.github.elevenhsoft.WebApps.png",
],
[
"res/icons/hicolor/128x128/apps/io.github.elevenhsoft.WebApps.png",
"/usr/share/icons/hicolor/128x128/apps/io.github.elevenhsoft.WebApps.png",
],
[
"res/icons/hicolor/256x256/apps/io.github.elevenhsoft.WebApps.png",
"/usr/share/icons/hicolor/256x256/apps/io.github.elevenhsoft.WebApps.png",
],
]
6 changes: 6 additions & 0 deletions res/io.github.elevenhsoft.WebApps.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@
</branding>

<releases>
<release version="0.4.9" date="2024-09-25">
<description>
<p>Fixed web app validation in creator</p>
<p>Updated dependencies</p>
</description>
</release>
<release version="0.4.8" date="2024-09-16">
<description>
<p>Just a fixed release to resolve some packaging issue</p>
Expand Down

0 comments on commit 6793160

Please sign in to comment.