Skip to content

Commit dc31aaa

Browse files
committed
feat: branch 6 stays on stable update channel
1 parent e6b6d41 commit dc31aaa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/gui/updater/updater.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,19 @@ QString updateChannel()
4949
}
5050
*/
5151
// until then, migrate old setting if present
52-
settings.setValue(updateChannelKey, "ocis");
52+
settings.setValue(updateChannelKey, "stable");
5353

54-
// By now only two channels are supported: ocis and beta-ocis
54+
// By now only two channels are supported: stabe and stable-beta
5555
const QString suffix = OCC::Version::suffix();
5656
if (suffix.startsWith(QLatin1String("daily"))
5757
|| suffix.startsWith(QLatin1String("nightly"))
5858
|| suffix.startsWith(QLatin1String("alpha"))
5959
|| suffix.startsWith(QLatin1String("rc"))
6060
|| suffix.startsWith(QLatin1String("beta"))) {
61-
return "ocis-beta";
61+
return "stable-beta";
6262
}
6363

64-
return "ocis";
64+
return "stable";
6565
}
6666

6767
Updater *Updater::_instance = nullptr;

0 commit comments

Comments
 (0)