Compare commits
15 Commits
v2.34.0
...
master-old
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2b770b30a8 | ||
|
|
e6d178cb2a | ||
|
|
c2f5b20e83 | ||
|
|
952251be35 | ||
|
|
385fe45d5d | ||
|
|
5db0ea301d | ||
|
|
523efba81c | ||
|
|
06dc91f130 | ||
|
|
252955da0a | ||
|
|
bd193c0d3f | ||
|
|
630fe98d31 | ||
|
|
0edc1deed0 | ||
|
|
6aa5c7baea | ||
|
|
da09545168 | ||
|
|
e07e9a09fa |
@@ -1,4 +1,16 @@
|
||||
RSL 2.32
|
||||
RSL 2.34
|
||||
|
||||
- Feature: Allow users to favorite games (right click on game)
|
||||
- Fix: Release Notes not showing with trailers enabled
|
||||
- Fix: Correct Discord Invite link on connection error
|
||||
|
||||
RSL 2.33
|
||||
|
||||
- Feature: Allow users to cancel backups
|
||||
- QoL: Lower ADB Version
|
||||
- QoL: Revert Add saving the ColumnWidths, Window Sizes/Position
|
||||
|
||||
RSL 2.32
|
||||
|
||||
- Feature: Allow switching between Public and Private configs
|
||||
- Feature: Switch to Offline Mode when unable to connect
|
||||
|
||||
28
MainForm.cs
28
MainForm.cs
@@ -1863,23 +1863,33 @@ namespace AndroidSideloader
|
||||
}
|
||||
}
|
||||
}
|
||||
if (settings.HideAdultContent == true)
|
||||
{
|
||||
if (!Game.SubItems[1].Text.Contains("(18+)"))
|
||||
{
|
||||
GameList.Add(Game);
|
||||
}
|
||||
}
|
||||
if (favoriteView)
|
||||
{
|
||||
if (settings.FavoritedGames.Contains(Game.SubItems[1].Text))
|
||||
{
|
||||
GameList.Add(Game);
|
||||
if (settings.HideAdultContent == true && !Game.SubItems[1].Text.Contains("(18+)"))
|
||||
{
|
||||
GameList.Add(Game);
|
||||
}
|
||||
else if (!settings.HideAdultContent)
|
||||
{
|
||||
GameList.Add(Game);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
GameList.Add(Game);
|
||||
if (settings.HideAdultContent == true)
|
||||
{
|
||||
if (!Game.SubItems[1].Text.Contains("(18+)"))
|
||||
{
|
||||
GameList.Add(Game);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
GameList.Add(Game);
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
@@ -13,7 +13,7 @@ namespace AndroidSideloader
|
||||
private static readonly string RawGitHubUrl = "https://raw.githubusercontent.com/VRPirates/rookie";
|
||||
private static readonly string GitHubUrl = "https://github.com/VRPirates/rookie";
|
||||
|
||||
public static readonly string LocalVersion = "2.33.0";
|
||||
public static readonly string LocalVersion = "2.34.1";
|
||||
public static string currentVersion = string.Empty;
|
||||
public static string changelog = string.Empty;
|
||||
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
RSL 2.33
|
||||
RSL 2.34.1
|
||||
|
||||
- [Feature] Allow users to cancel backups
|
||||
- [QoL] Lower ADB Version
|
||||
- [QoL] Revert Add saving the ColumnWidths, Window Sizes/Position
|
||||
- Fix: Rookie crashing with "Cannto add or insert the item"
|
||||
Reference in New Issue
Block a user