diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/AboutScene.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/AboutScene.java index 89c9768e2..9d38d85f8 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/AboutScene.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/AboutScene.java @@ -60,8 +60,8 @@ public class AboutScene extends PixelScene { String shpxLink = "https://ShatteredPixel.com"; //tracking codes, so that the website knows where this pageview came from shpxLink += "?utm_source=shatteredpd"; - shpxLink += "&utm_medium=android"; - shpxLink += "&utm_campaign=about_page"; + shpxLink += "&utm_medium=about_page"; + shpxLink += "&utm_campaign=ingame_link"; CreditsBlock shpx = new CreditsBlock(true, Window.SHPX_COLOR, "Shattered Pixel Dungeon", diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/NewsScene.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/NewsScene.java index 6dc025109..3e937c229 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/NewsScene.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/NewsScene.java @@ -312,8 +312,8 @@ public class NewsScene extends PixelScene { String link = article.URL; //tracking codes, so that the website knows where this pageview came from link += "?utm_source=shatteredpd"; - link += "&utm_medium=android"; - link += "&utm_campaign=news_page"; + link += "&utm_medium=news_page"; + link += "&utm_campaign=ingame_link"; DeviceCompat.openURI(link); } }; diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/SupporterScene.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/SupporterScene.java index 1b2f06c6e..b647eb263 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/SupporterScene.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/SupporterScene.java @@ -81,8 +81,8 @@ public class SupporterScene extends PixelScene { String link = "https://www.patreon.com/ShatteredPixel"; //tracking codes, so that the website knows where this pageview came from link += "?utm_source=shatteredpd"; - link += "&utm_medium=android"; - link += "&utm_campaign=supporter_page"; + link += "&utm_medium=supporter_page"; + link += "&utm_campaign=ingame_link"; DeviceCompat.openURI(link); } }; diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndSupportPrompt.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndSupportPrompt.java index b74965951..15e6c61c6 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndSupportPrompt.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndSupportPrompt.java @@ -64,8 +64,8 @@ public class WndSupportPrompt extends Window { String link = "https://www.patreon.com/ShatteredPixel"; //tracking codes, so that the website knows where this pageview came from link += "?utm_source=shatteredpd"; - link += "&utm_medium=android"; - link += "&utm_campaign=supporter_prompt"; + link += "&utm_medium=supporter_prompt"; + link += "&utm_campaign=ingame_link"; DeviceCompat.openURI(link); SPDSettings.supportNagged(true); WndSupportPrompt.super.hide();