Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ when needed; writes remain protected in the local VFS cache until uploaded.

The supported target is Linux Mint 22.x with Cinnamon, Nemo and a normal
graphical login. Arch Linux and Ubuntu are the first portability targets. The
Arch Linux `0.8.1-1` package candidate preserves the package baseline whose
Arch Linux `0.8.2-1` package candidate preserves the package baseline whose
`0.8.0-1` build passed its clean Cinnamon/X11 desktop gate. It is attached to
the `v0.8.1` GitHub Release for configured real-world review; Arch is not yet a
the `v0.8.2` GitHub Release for configured real-world review; Arch is not yet a
generally supported target. See the
[distribution portability plan](docs/PORTABILITY.md) and the privacy-safe
[real desktop release gates](docs/DESKTOP_GATES.md).
Expand All @@ -97,12 +97,12 @@ cd proton-drive-linux
pdrive-ui
```

Arch reviewers can download the `proton-drive-linux-0.8.1-1-any.pkg.tar.zst`
asset from the [`v0.8.1` release](https://github.com/oss-singularity/proton-drive-linux/releases/tag/v0.8.1),
Arch reviewers can download the `proton-drive-linux-0.8.2-1-any.pkg.tar.zst`
asset from the [`v0.8.2` release](https://github.com/oss-singularity/proton-drive-linux/releases/tag/v0.8.2),
verify the SHA-256 published in its release notes and install it with:

```bash
sudo pacman -U ./proton-drive-linux-0.8.1-1-any.pkg.tar.zst
sudo pacman -U ./proton-drive-linux-0.8.2-1-any.pkg.tar.zst
pdrive-ui
```

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.1
0.8.2
2 changes: 1 addition & 1 deletion bin/pdrive-state
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ from typing import Any


SCHEMA_VERSION = 1
TOOL_VERSION = "0.8.1"
TOOL_VERSION = "0.8.2"
RECENT_TRANSFER_WINDOW_SECONDS = 24 * 60 * 60
RECENT_TRANSFER_LIMIT = 24
MOUNT_LOG_TAIL_BYTES = 512 * 1024
Expand Down
2 changes: 1 addition & 1 deletion bin/pdrive-ui
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ PLATFORM_ADAPTER = load_platform_adapter()


APP_ID = "io.github.claudiuschuster.PDriveControl"
VERSION = "0.8.1"
VERSION = "0.8.2"
REFRESH_INTERVAL_SECONDS = 2
REFRESH_INTERVAL_OPTIONS = (1, 2, 5, 10)
GRAPH_WINDOW_SECONDS = 5 * 60
Expand Down
8 changes: 4 additions & 4 deletions docs/QUICK_START.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ upload. Detailed maintenance belongs in [Operations](OPERATIONS.md), not here.

The supported target is Linux Mint 22.x with Cinnamon, Nemo and a graphical
login. Arch Linux and Ubuntu are active portability targets. The Arch Linux
`0.8.1-1` candidate preserves the package baseline whose `0.8.0-1` build passed
`0.8.2-1` candidate preserves the package baseline whose `0.8.0-1` build passed
its clean Cinnamon/X11 desktop gate. It is ready for configured real-world
review, but Arch is not yet a generally supported release target; see
[Distribution portability](PORTABILITY.md).
Expand All @@ -25,12 +25,12 @@ pdrive-ui
```

For the reviewed Arch candidate, download
`proton-drive-linux-0.8.1-1-any.pkg.tar.zst` from the
[`v0.8.1` release](https://github.com/oss-singularity/proton-drive-linux/releases/tag/v0.8.1),
`proton-drive-linux-0.8.2-1-any.pkg.tar.zst` from the
[`v0.8.2` release](https://github.com/oss-singularity/proton-drive-linux/releases/tag/v0.8.2),
verify its published SHA-256 and replace the source-install commands above with:

```bash
sudo pacman -U ./proton-drive-linux-0.8.1-1-any.pkg.tar.zst
sudo pacman -U ./proton-drive-linux-0.8.2-1-any.pkg.tar.zst
pdrive-ui
```

Expand Down