Skip to content

Commit 4996705

Browse files
committed
v1.2.0
1 parent ba42487 commit 4996705

File tree

6 files changed

+30
-17
lines changed

6 files changed

+30
-17
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "geopard"
3-
version = "1.1.1"
3+
version = "1.2.0"
44
authors = ["ranfdev <ranfdev@gmail.com>"]
55
edition = "2021"
66

build-aux/deploy-flatpak.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ git clone "$git_out" git_repo;
1919
cd $_;
2020
cp ../"$manifest" ./;
2121
git commit -a -m "Update";
22-
git push

data/com.ranfdev.Geopard.metainfo.xml.in.in

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,16 @@
5050
<content_rating type="oars-1.0" />
5151

5252
<releases>
53+
<release version="1.2.0" date="2022-06-09">
54+
<description>
55+
<p>Added more shortcuts</p>
56+
<p>There's now a status bar showing the URL of hovered links</p>
57+
<p>Various code refactorings</p>
58+
</description>
59+
</release>
5360
<release version="1.1.1" date="2022-06-06">
5461
<description>
55-
Relax download folder permissions to fix downloads not starting
62+
<p>Relax download folder permissions to fix downloads not starting</p>
5663
</description>
5764
</release>
5865
<release version="1.1.0" date="2022-05-19">
@@ -67,10 +74,12 @@
6774
</release>
6875
<release version="1.0.1" date="2022-05-07">
6976
<description>
70-
Changes:
71-
- Fix downloads by granting access to download folder
72-
- Improve download progress handling
73-
- Show close button on small window sizes
77+
<p>Changes</p>
78+
<ul>
79+
<li>Fix downloads by granting access to download folder</li>
80+
<li>Improve download progress handling</li>
81+
<li>Show close button on small window sizes</li>
82+
</ul>
7483
</description>
7584
</release>
7685
<release version="1.0.0-alpha" date="2021-04-01">
@@ -81,11 +90,12 @@
8190
</release>
8291
<release version="1.0.0" date="2022-04-29">
8392
<description>
84-
First release on flathub! You get all the most important features:
85-
- colors
86-
- caching
87-
- search
88-
:D
93+
<p>First release on flathub! You get all the most important features</p>
94+
<ul>
95+
<li>colors</li>
96+
<li>caching</li>
97+
<li>search</li>
98+
</ul>
8999
</description>
90100
</release>
91101
</releases>
@@ -102,6 +112,10 @@
102112
<requires>
103113
<display_length compare="ge">360</display_length>
104114
</requires>
115+
<custom>
116+
<value key="Purism::form_factor">workstation</value>
117+
<value key="Purism::form_factor">mobile</value>
118+
</custom>
105119

106120

107121
<developer_name>Lorenzo Miglietta</developer_name>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'geopard',
33
'rust',
4-
version: '1.1.1',
4+
version: '1.2.0',
55
meson_version: '>= 0.59',
66
# license: MIT,
77
)

nix/geopard.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@
2424

2525
stdenv.mkDerivation rec {
2626
pname = "geopard";
27-
version = "1.1.1";
27+
version = "1.2.0";
2828

2929
cargoDeps = rustPlatform.importCargoLock {
3030
lockFile = ../Cargo.lock;
3131
outputHashes = {
32-
"cairo-rs-0.16.0" = "sha256-lEgfnteBl9aaI8RXRJmgWMIhNUTAuWjODgHA6J32rJs=";
32+
"cairo-rs-0.16.0" = "sha256-Y0qRUliZRuEYvLje2ld75BDgSM7lHOnWITyuI/RoxwI=";
3333
"gdk4-0.5.0" = "sha256-cRZS8csxpPZm6yxyb6MYiGO7rdw207E4w4uiuJqJoaU=";
34-
"gio-0.16.0" = "sha256-OajUoavBxnKoN5wHRYWBpNXTGAQyxME95FT6bAhy15c=";
34+
"gio-0.16.0" = "sha256-wENBSDGVUQIa6CK4d5oZ9ih0h1SY1CKWBKVtVcxsXP0=";
3535
"libadwaita-0.2.0" = "sha256-+ATfy8QIgpoifSCrcqdoub1ust3pEdU3skjOPfIaDQc=";
3636
};
3737
};

0 commit comments

Comments
 (0)