[Android] Change forum menu link to discord
This commit is contained in:
parent
f69a70e033
commit
92d22a014b
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
|
@ -6,8 +6,8 @@
|
|||
android:id="@+id/menuItem_settings"
|
||||
android:icon="@drawable/ic_settings"/>
|
||||
<item
|
||||
android:id="@+id/menuItem_forum"
|
||||
android:icon="@drawable/ic_forum" />
|
||||
android:id="@+id/menuItem_discord"
|
||||
android:icon="@drawable/ic_discord" />
|
||||
<item
|
||||
android:id="@+id/menuItem_reportBug"
|
||||
android:icon="@drawable/ic_bug" />
|
||||
|
|
|
@ -252,7 +252,7 @@ public class GalleryActivity extends AppCompatActivity implements IabBroadcastLi
|
|||
void UpdateLanguage()
|
||||
{
|
||||
Strings.SetMenuTitle(mDrawerList.getMenu(), R.id.menuItem_settings, LanguageStringID.ANDROID_SETTINGS);
|
||||
Strings.SetMenuTitle(mDrawerList.getMenu(), R.id.menuItem_forum, LanguageStringID.ANDROID_FORUM);
|
||||
Strings.SetMenuTitle(mDrawerList.getMenu(), R.id.menuItem_discord, LanguageStringID.ANDROID_DISCORD);
|
||||
Strings.SetMenuTitle(mDrawerList.getMenu(), R.id.menuItem_reportBug, LanguageStringID.ANDROID_REPORT_BUG);
|
||||
Strings.SetMenuTitle(mDrawerList.getMenu(), R.id.menuItem_about, LanguageStringID.ANDROID_ABOUT);
|
||||
}
|
||||
|
@ -401,8 +401,8 @@ public class GalleryActivity extends AppCompatActivity implements IabBroadcastLi
|
|||
Intent SettingsIntent = new Intent(this, SettingsActivity.class);
|
||||
startActivity( SettingsIntent );
|
||||
return true;
|
||||
case R.id.menuItem_forum:
|
||||
Intent ForumIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://forum.pj64-emu.com/forumdisplay.php?f=13"));
|
||||
case R.id.menuItem_discord:
|
||||
Intent ForumIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://discord.gg/sbYbnda"));
|
||||
startActivity(ForumIntent);
|
||||
return true;
|
||||
case R.id.menuItem_reportBug:
|
||||
|
|
|
@ -229,7 +229,8 @@ public enum LanguageStringID
|
|||
TAB_ROMNOTES(408),
|
||||
TAB_SHORTCUTS(409),
|
||||
TAB_ROMSTATUS(410),
|
||||
TAB_RECOMPILER(411), //Added in 1.7.0.50
|
||||
TAB_RECOMPILER(411),
|
||||
TAB_DEFAULTS(412),
|
||||
|
||||
//Plugin Dialog
|
||||
PLUG_ABOUT(420),
|
||||
|
@ -282,6 +283,7 @@ public enum LanguageStringID
|
|||
RB_UP(490),
|
||||
RB_DOWN(491),
|
||||
RB_REFRESH(492),
|
||||
RB_FILEEXT(493),
|
||||
|
||||
//Advanced Options
|
||||
ADVANCE_INFO(500),
|
||||
|
@ -321,6 +323,8 @@ public enum LanguageStringID
|
|||
ROM_COUNTPERBYTE(537),
|
||||
ROM_32BIT(538),
|
||||
ROM_DELAY_DP(539),
|
||||
ROM_OVER_CLOCK_MODIFIER(5400),
|
||||
ROM_UNALIGNED_DMA(5410),
|
||||
|
||||
//Core Styles
|
||||
CORE_INTERPTER(540),
|
||||
|
@ -384,6 +388,7 @@ public enum LanguageStringID
|
|||
STR_FR_DLS(701),
|
||||
STR_FR_PERCENT(702),
|
||||
STR_FR_DLS_VIS(703),
|
||||
STR_FR_NONE(704),
|
||||
|
||||
// Increase speed
|
||||
STR_INSREASE_SPEED(710),
|
||||
|
@ -573,6 +578,7 @@ public enum LanguageStringID
|
|||
ANDROID_ABOUT_REVISION(3018),
|
||||
ANDROID_ABOUT_TEXT(3019),
|
||||
ANDROID_ABOUT_PJ64_AUTHORS(3020),
|
||||
ANDROID_DISCORD(3021),
|
||||
|
||||
//In game menu
|
||||
ANDROID_MENU_SETTINGS(3100),
|
||||
|
|
|
@ -547,6 +547,7 @@
|
|||
#3018# "Revision"
|
||||
#3019# "Project64 for Android\u2122 is a port of the windows version of project64.The Android\u2122 version can play most N64 games."
|
||||
#3020# "Project64 Authors."
|
||||
#3021# "Discord"
|
||||
|
||||
//In game menu
|
||||
#3100# "Settings"
|
||||
|
|
|
@ -582,7 +582,8 @@ enum LanguageStringID
|
|||
ANDROID_ABOUT_LICENCE = 3017,
|
||||
ANDROID_ABOUT_REVISION = 3018,
|
||||
ANDROID_ABOUT_TEXT = 3019,
|
||||
ANDROID_ABOUT_PJ64_AUTHORS = 3020,
|
||||
ANDROID_ABOUT_PJ64_AUTHORS = 3020,
|
||||
ANDROID_DISCORD = 3021,
|
||||
|
||||
//In game menu
|
||||
ANDROID_MENU_SETTINGS = 3100,
|
||||
|
|
|
@ -549,6 +549,7 @@ void CLanguage::LoadDefaultStrings(void)
|
|||
DEF_STR(ANDROID_ABOUT_REVISION, "Revision");
|
||||
DEF_STR(ANDROID_ABOUT_TEXT, "Project64 for Android\u2122 is a port of the windows version of project64.The Android\u2122 version can play most N64 games.");
|
||||
DEF_STR(ANDROID_ABOUT_PJ64_AUTHORS, "Project64 Authors.");
|
||||
DEF_STR(ANDROID_DISCORD, "Discord");
|
||||
|
||||
//In game menu
|
||||
DEF_STR(ANDROID_MENU_SETTINGS, "Settings");
|
||||
|
|
Loading…
Reference in New Issue