diff options
author | swirl <swurl@swurl.xyz> | 2021-12-29 10:37:09 -0500 |
---|---|---|
committer | swirl <swurl@swurl.xyz> | 2021-12-29 10:37:09 -0500 |
commit | f25a9bc103d101ea9d79fe159b83d88a4cc35f87 (patch) | |
tree | 629e8bfc4058a820ec3a661fee9ab703704b6e0a /buildconfig | |
parent | af76cf59b639561d92ae9129d48d4205fd23185b (diff) | |
download | PrismLauncher-f25a9bc103d101ea9d79fe159b83d88a4cc35f87.tar.gz PrismLauncher-f25a9bc103d101ea9d79fe159b83d88a4cc35f87.tar.bz2 PrismLauncher-f25a9bc103d101ea9d79fe159b83d88a4cc35f87.zip |
Completely remove Google Analytics library
Diffstat (limited to 'buildconfig')
-rw-r--r-- | buildconfig/BuildConfig.cpp.in | 1 | ||||
-rw-r--r-- | buildconfig/BuildConfig.h | 6 |
2 files changed, 2 insertions, 5 deletions
diff --git a/buildconfig/BuildConfig.cpp.in b/buildconfig/BuildConfig.cpp.in index 66cb0f17..af8845dc 100644 --- a/buildconfig/BuildConfig.cpp.in +++ b/buildconfig/BuildConfig.cpp.in @@ -24,7 +24,6 @@ Config::Config() BUILD_PLATFORM = "@Launcher_BUILD_PLATFORM@"; UPDATER_BASE = "@Launcher_UPDATER_BASE@"; - ANALYTICS_ID = "@Launcher_ANALYTICS_ID@"; NOTIFICATION_URL = "@Launcher_NOTIFICATION_URL@"; FULL_VERSION_STR = "@Launcher_VERSION_MAJOR@.@Launcher_VERSION_MINOR@.@Launcher_VERSION_BUILD@"; diff --git a/buildconfig/BuildConfig.h b/buildconfig/BuildConfig.h index 2d847f94..009fb2bc 100644 --- a/buildconfig/BuildConfig.h +++ b/buildconfig/BuildConfig.h @@ -46,9 +46,6 @@ public: QString USER_AGENT_UNCACHED; - /// Google analytics ID - QString ANALYTICS_ID; - /// URL for notifications QString NOTIFICATION_URL; @@ -79,7 +76,7 @@ public: * Client ID you can get from Imgur when you register an application */ QString IMGUR_CLIENT_ID; - + /** * Client ID you can get from Microsoft Identity Platform when you register an application */ @@ -115,3 +112,4 @@ public: }; extern const Config BuildConfig; + |