Compare commits

...

15 Commits

Author SHA1 Message Date
Maxine
2b770b30a8 Revert "Restructure and project file organization"
This reverts commit 0edc1deed0.
2025-09-14 08:56:11 -07:00
Maxine
e6d178cb2a Revert "Minor MainForm field cleanup"
This reverts commit 630fe98d31.
2025-09-14 08:56:11 -07:00
Maxine
c2f5b20e83 Revert "Minor Main file organization"
This reverts commit bd193c0d3f.
2025-09-14 08:56:11 -07:00
Maxine
952251be35 Revert "Renamed 'ADB' to 'AdbManager'"
This reverts commit 252955da0a.
2025-09-14 08:56:11 -07:00
Maxine
385fe45d5d Revert "Fix WebView2 'too many automatic redirections' error"
This reverts commit 06dc91f130.
2025-09-14 08:56:11 -07:00
Maxine
5db0ea301d Revert "Fix unmoved line"
This reverts commit 523efba81c.
2025-09-14 08:56:11 -07:00
Sombody101
523efba81c Fix unmoved line 2025-09-14 08:43:59 -07:00
Sombody101
06dc91f130 Fix WebView2 'too many automatic redirections' error 2025-09-14 08:43:59 -07:00
Sombody101
252955da0a Renamed 'ADB' to 'AdbManager' 2025-09-14 08:43:59 -07:00
Sombody101
bd193c0d3f Minor Main file organization 2025-09-14 08:43:59 -07:00
Sombody101
630fe98d31 Minor MainForm field cleanup 2025-09-14 08:43:59 -07:00
Sombody101
0edc1deed0 Restructure and project file organization 2025-09-14 08:43:59 -07:00
Chax
6aa5c7baea bump it while its hot 2025-04-13 11:41:43 +02:00
Chax
da09545168 Fix "Cannot add or insert the item" bug. 2025-04-13 11:37:33 +02:00
Chax
e07e9a09fa bump 2025-04-10 22:33:52 +02:00
5 changed files with 36 additions and 16 deletions

View File

@@ -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

View File

@@ -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);
}
}
}
})

View File

@@ -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;

View File

@@ -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"

View File

@@ -1 +1 @@
2.33.0
2.34.1