Skip to content

Commit db35e9f

Browse files
committed
Relax download folder permissions to fix downloads not starting
1 parent 481ae3a commit db35e9f

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

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.0.1"
3+
version = "1.1.1"
44
authors = ["ranfdev <[email protected]>"]
55
edition = "2021"
66

build-aux/com.ranfdev.Geopard.Devel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"--socket=wayland",
1818
"--device=dri",
1919
"--share=network",
20-
"--filesystem=xdg-download/Geopard"
20+
"--filesystem=xdg-download"
2121
],
2222
"build-options" : {
2323
"append-path": "/usr/lib/sdk/rust-stable/bin:/usr/lib/sdk/llvm13/bin",

build-aux/com.ranfdev.Geopard.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,13 @@
77
"org.freedesktop.Sdk.Extension.rust-stable"
88
],
99
"command" : "geopard",
10-
"tags" : [
11-
"devel"
12-
],
1310
"finish-args" : [
1411
"--share=ipc",
1512
"--socket=fallback-x11",
1613
"--socket=wayland",
1714
"--device=dri",
1815
"--share=network",
19-
"--filesystem=xdg-download/Geopard"
16+
"--filesystem=xdg-download"
2017
],
2118
"build-options" : {
2219
"append-path" : "/usr/lib/sdk/rust-stable/bin",

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@
5050
<content_rating type="oars-1.0" />
5151

5252
<releases>
53+
<release version="1.1.1" date="2022-06-06">
54+
<description>
55+
Relax download folder permissions to fix downloads not starting
56+
</description>
57+
</release>
5358
<release version="1.1.0" date="2022-05-19">
5459
<description>
5560
<ul>

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.0',
4+
version: '1.1.1',
55
meson_version: '>= 0.59',
66
# license: MIT,
77
)

nix/geopard.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
stdenv.mkDerivation rec {
2727
pname = "geopard";
28-
version = "1.1.0";
28+
version = "1.1.1";
2929

3030
cargoDeps = rustPlatform.importCargoLock {
3131
lockFile = ../Cargo.lock;

0 commit comments

Comments
 (0)