-
Notifications
You must be signed in to change notification settings - Fork 684
[DC-158] chore: remove ownCloud 10 update channel #12429
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
|
Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would create a changelog item based on your changes. |
src/libsync/configfile.cpp
Outdated
| const QString skipUpdateCheckC() { return QStringLiteral("skipUpdateCheck"); } | ||
| const QString updateCheckIntervalC() { return QStringLiteral("updateCheckInterval"); } | ||
| const QString updateChannelC() { return QStringLiteral("updateChannel"); } | ||
| // deprecated - will be removed in 8.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
don't just comment it out - we should keep compiler warnings. to "properly" deprecate:
[[deprecated("updateChannel is no longer supported. the key will be removed in 8.0")]] const QString updateChannelC()....
the todo item for these is #52 so I am currently tagging any deprecations with // todo: #52 remove with next major release
| // remove deprecated updateChannel setting once we hit 8.0 | ||
| auto settings = ConfigFile::makeQSettings(); | ||
| QString updateChannelKey = "updateChannel"; | ||
| /* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add a // todo: #52
here too please
No description provided.