mirror of
https://github.com/syncthing/syncthing-macos.git
synced 2026-05-17 12:00:37 +00:00
Make macOS 12 minimum version after some investigation
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
[](https://github.com/syncthing/syncthing-macos/releases) [](https://github.com/syncthing/syncthing-macos/releases/latest) [](LICENSE)
|
||||
|
||||
> [!NOTE]
|
||||
> Syncthing v2 is the supported version since 23 february 2026. It needs at least macOS 15. Syncthing v1 is deprecated and will not get any updates or bugfixes.
|
||||
> Syncthing v2 is the supported version since 23 february 2026. It needs at least macOS 12. Syncthing v1 is deprecated and will not get any updates or bugfixes.
|
||||
|
||||
# Introduction
|
||||
|
||||
@@ -62,7 +62,7 @@ See the [issue tracker (bug tag filtered)]([https://github.com/syncthing/syncthi
|
||||
|
||||
## macOS version support
|
||||
|
||||
* From release v2.0.14 macOS 15 is required (see issue [#218](https://github.com/syncthing/syncthing-macos/issues/218))
|
||||
* From release v2.0.14 macOS 12 is required (see issue [#218](https://github.com/syncthing/syncthing-macos/issues/218))
|
||||
* From release v1.27.7 macOS 11 or probably higher is required (see issue [#218](https://github.com/syncthing/syncthing-macos/issues/218))
|
||||
* Last v1.27.6-1 release is compatible with macOS 10.13 (see issue [#217](https://github.com/syncthing/syncthing-macos/issues/217))
|
||||
* From release v1.20.0-1 macOS 10.13 or higher is required
|
||||
|
||||
@@ -191,9 +191,10 @@ func sparkleItemCheckCriticalUpdate(item *SparkleItem) {
|
||||
item.MinimumSystemVersion = "11.0.0"
|
||||
} else if item.Enclosure.SparkleShortVersionString == "v2.0.14-1" {
|
||||
item.CriticalUpdate = &CriticalUpdate{}
|
||||
item.MinimumSystemVersion = "15.0.0"
|
||||
item.MinimumSystemVersion = "12.0.0"
|
||||
} else {
|
||||
// Default others to at least macOS 15 for now to prevent auto updates from older macOS
|
||||
item.MinimumSystemVersion = "15.0.0"
|
||||
// Default others to at least macOS 12 for now to prevent auto updates from older macOS
|
||||
// Golang 1.25 needs macOS 12. See https://go.dev/doc/go1.25#darwin
|
||||
item.MinimumSystemVersion = "12.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user