File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,8 @@ private function getLegacyChannel(): ?string {
138138 }
139139
140140 // macOS 11/12 — not compatible with Qt6.10 (required by current stable)
141- if ($ this ->platform === "macos " && version_compare ($ this ->osVersion , "13 " ) == -1 ) {
141+ // we also exclude macOS 14 for the moment due to an XPC error
142+ if ($ this ->platform === "macos " && version_compare ($ this ->osVersion , "14 " ) == -1 ) {
142143 return 'stable-qt6.9 ' ;
143144 }
144145
Original file line number Diff line number Diff line change @@ -858,13 +858,13 @@ public function updateDataProvider(): array
858858 </channel>
859859</rss> '
860860 ],
861- // #40 macOS 13 — not legacy, gets regular stable via sparkle
861+ // #40 macOS 14 — not legacy, gets regular stable via sparkle
862862 [
863863 'nextcloud ' ,
864864 'macos ' ,
865865 '1.9.0 ' ,
866866 '' ,
867- '13 .0 ' ,
867+ '14 .0 ' ,
868868 '22.00.00 ' ,
869869 'stable ' ,
870870 true ,
@@ -885,13 +885,13 @@ public function updateDataProvider(): array
885885 </channel>
886886</rss> '
887887 ],
888- // #41 macOS 13 — not legacy, gets regular beta via sparkle
888+ // #41 macOS 14 — not legacy, gets regular beta via sparkle
889889 [
890890 'nextcloud ' ,
891891 'macos ' ,
892892 '2.2.2-rc1 ' ,
893893 '' ,
894- '13 .0 ' ,
894+ '14 .0 ' ,
895895 '22.00.00 ' ,
896896 'beta ' ,
897897 true ,
You can’t perform that action at this time.
0 commit comments