Skip to content

Commit 98a37b3

Browse files
committed
v0.1.1
1 parent a5ebd06 commit 98a37b3

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cosmic-ext-calculator"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
license = "GPL-3.0"
66

@@ -24,6 +24,9 @@ features = ["dbus-config", "tokio", "winit", "wgpu", "multi-window", "desktop"]
2424
version = "0.14"
2525
features = ["fluent-system", "desktop-requester"]
2626

27+
[patch."https://github.com/smithay/client-toolkit.git"]
28+
sctk = { package = "smithay-client-toolkit", version = "=0.19.2" }
29+
2730
# Uncomment to test a locally-cloned libcosmic
2831
# [patch.'https://github.com/pop-os/libcosmic']
2932
# libcosmic = { path = "../libcosmic" }

res/metainfo.xml

+9
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@
3030
<icon type="remote" height="256" width="256">https://raw.githubusercontent.com/cosmic-utils/calculator/main/res/icons/hicolor/scalable/apps/icon.svg</icon>
3131
<launchable type="desktop-id">dev.edfloreshz.Calculator.desktop</launchable>
3232
<releases>
33+
<release version="0.1.1" date="2024-11-06">
34+
<description>
35+
<p>Toolkit improvements 🧰</p>
36+
<ul>
37+
<li>Revamped about page</li>
38+
<li>Added window borders</li>
39+
</ul>
40+
</description>
41+
</release>
3342
<release version="0.1.0" date="2024-10-03">
3443
<description>
3544
<p>Initial release! 🎉</p>

src/app.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ impl Application for Calculator {
148148
.set_application_icon(Self::APP_ID)
149149
.set_developer_name("Eduardo Flores")
150150
.set_license_type("GPL-3.0")
151-
.set_version("0.1.0")
151+
.set_version("0.1.1")
152152
.set_support_url("https://github.com/cosmic-utils/calculator/issues")
153153
.set_repository_url("https://github.com/cosmic-utils/calculator")
154154
.set_developers([("Eduardo Flores".into(), "[email protected]".into())]);

0 commit comments

Comments
 (0)