diff options
author | Ezekiel Smith <ezekielsmith@protonmail.com> | 2022-03-15 00:51:28 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 00:51:28 +1100 |
commit | 5b8003cbe502af04792f4c462b1b8094444e19ad (patch) | |
tree | ba1bc491bddceccf1511197dfe294b6edd3dc606 /buildconfig | |
parent | c0719102a0ab65db80d75d61e6086f918d1f79b9 (diff) | |
parent | 6d1f9d4d02cef93e92ebf0ba46a1c1296da50673 (diff) | |
download | PrismLauncher-5b8003cbe502af04792f4c462b1b8094444e19ad.tar.gz PrismLauncher-5b8003cbe502af04792f4c462b1b8094444e19ad.tar.bz2 PrismLauncher-5b8003cbe502af04792f4c462b1b8094444e19ad.zip |
Merge pull request #188 from PolyMC/removal/notifications
remove notifications
Diffstat (limited to 'buildconfig')
-rw-r--r-- | buildconfig/BuildConfig.cpp.in | 2 | ||||
-rw-r--r-- | buildconfig/BuildConfig.h | 7 |
2 files changed, 0 insertions, 9 deletions
diff --git a/buildconfig/BuildConfig.cpp.in b/buildconfig/BuildConfig.cpp.in index d1bd4d05..6524fb5d 100644 --- a/buildconfig/BuildConfig.cpp.in +++ b/buildconfig/BuildConfig.cpp.in @@ -25,8 +25,6 @@ Config::Config() BUILD_PLATFORM = "@Launcher_BUILD_PLATFORM@"; UPDATER_BASE = "@Launcher_UPDATER_BASE@"; - NOTIFICATION_URL = "@Launcher_NOTIFICATION_URL@"; - FULL_VERSION_STR = "@Launcher_VERSION_MAJOR@.@Launcher_VERSION_MINOR@.@Launcher_VERSION_BUILD@"; GIT_COMMIT = "@Launcher_GIT_COMMIT@"; GIT_REFSPEC = "@Launcher_GIT_REFSPEC@"; diff --git a/buildconfig/BuildConfig.h b/buildconfig/BuildConfig.h index cf74b39e..79210505 100644 --- a/buildconfig/BuildConfig.h +++ b/buildconfig/BuildConfig.h @@ -46,13 +46,6 @@ public: /// User-Agent to use for uncached requests. QString USER_AGENT_UNCACHED; - - /// URL for notifications - QString NOTIFICATION_URL; - - /// Used for matching notifications - QString FULL_VERSION_STR; - /// The git commit hash of this build QString GIT_COMMIT; |