From 17c34d86c472f44fb1fce86b9f5201132cfcde9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sat, 21 Feb 2015 08:16:24 +0100 Subject: [PATCH] added "from app" to homepage links --- src/com/jpexs/decompiler/flash/gui/MainFrameMenu.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/jpexs/decompiler/flash/gui/MainFrameMenu.java b/src/com/jpexs/decompiler/flash/gui/MainFrameMenu.java index 0a58fb2bb..78dc6ad86 100644 --- a/src/com/jpexs/decompiler/flash/gui/MainFrameMenu.java +++ b/src/com/jpexs/decompiler/flash/gui/MainFrameMenu.java @@ -244,14 +244,14 @@ public abstract class MainFrameMenu { } protected void helpUs() { - String helpUsURL = ApplicationInfo.PROJECT_PAGE + "/help_us.html"; + String helpUsURL = ApplicationInfo.PROJECT_PAGE + "/help_us.html?ref=app"; if (!View.navigateUrl(helpUsURL)) { View.showMessageDialog(null, translate("message.helpus").replace("%url%", helpUsURL)); } } protected void homePage() { - String homePageURL = ApplicationInfo.PROJECT_PAGE; + String homePageURL = ApplicationInfo.PROJECT_PAGE+"?ref=app"; if (!View.navigateUrl(homePageURL)) { View.showMessageDialog(null, translate("message.homepage").replace("%url%", homePageURL)); }