Skip to content

Commit 3b5e05e

Browse files
committed
Merge branch 'main' into develop
2 parents f958747 + 723514f commit 3b5e05e

3 files changed

Lines changed: 2 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
77
The changelog starts with version 1.6.1.
88
Changes to prior versions can be found on the [Github release page](https://github.com/cryptomator/integrations-linux/releases).
99

10-
## [Unreleased](https://github.com/cryptomator/integrations-linux/compare/1.6.1...HEAD)
10+
## [1.7.0](https://github.com/cryptomator/integrations-linux/releases/1.7.0) - 2026-03-12
1111

1212
### Added
1313
* Flatpak Update Mechanism ([#117](https://github.com/cryptomator/integrations-linux/pull/117))

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.cryptomator</groupId>
77
<artifactId>integrations-linux</artifactId>
8-
<version>1.7.0-SNAPSHOT</version>
8+
<version>1.7.0-beta1</version>
99

1010
<name>integrations-linux</name>
1111
<description>Provides optional Linux services used by Cryptomator</description>

src/main/java/org/cryptomator/linux/update/FlatpakUpdater.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,6 @@ public FlatpakUpdateInfo checkForUpdate(String currentVersion, HttpClient httpCl
7171
.map(AppstreamReleases::version)
7272
.orElse("0.0.0"); // fallback should always be smaller than current version
7373

74-
75-
// FIXME: remove this block! see https://github.com/cryptomator/cryptomator/issues/4058
76-
if (currentVersion.startsWith("1.18.0-beta")) {
77-
return new FlatpakUpdateInfo(updateVersion, this);
78-
}
79-
// END FIXME
80-
81-
8274
if (UpdateMechanism.isUpdateAvailable(updateVersion, currentVersion)) {
8375
return new FlatpakUpdateInfo(updateVersion, this);
8476
} else {

0 commit comments

Comments
 (0)