Compare commits

...

1 Commits

Author SHA1 Message Date
William Swartwood
95d4623e6c RSL 2.10.1
= Fixed sort by Size (MB).
= Fixed issue where game list column headers
were appearing as a game in the games list.

HFP
2021-10-02 01:37:02 -04:00
7 changed files with 40 additions and 29 deletions

View File

@@ -1,6 +1,34 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
RSL 2.10.1
= Fixed sort by Size (MB).
= Fixed issue where game list column headers
were appearing as a game in the games list.
HFP
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEKjgtlwMyrpVu4TGfx/Rql1VoczcFAmFX75kACgkQx/Rql1Vo
czewPw//c8KDn9EdatBCeH3lWCkrACrxAEtUAhv55Gu+KCZFw4t5YKFvuE0L+tL+
K5FYT225TVycWKos2LN2e5lRP1LZJPQ/xFQAon8sG/GgujtubgX/JPwpWKn0kl8B
2QZXwhrDA2wM1Cn78cuC6zpaQjbiofoaMWH9J8q/1nkjvXmxijoMGkz37raNfnas
sEr66FCyRb5naDujiNAXLg/wZokbWLirmupQLFb11ai6ahVExgqM+mPqNIadzSBW
3I0KMYBQ5zFNQCdjcAYOTIWBUaF+ObjdjsNhZNr2axmoxdcPvwG2ToAXHJjXDaIz
3iNRQRfBg3LobCBtZEjXT/DHlBWAP9++bacgNoB6VFEjStMfQqduYgUz2tuj0Zv0
OjtWnU/Fc8kAK3l2a+aGFKkBmW6dHtFhWzt9WpRiDJ3JXnjBXahy0Zhd1X1/g4dd
8ORzAbRj6cRbW8M42awqecN6pU3PxKdZBG4m0yX44uDXqsKHLWjufuWcc8p+Q3pE
h5TkYFfr7rpPAK6Qh5nRKJQPoSelruR7v4GMqfQIDbt267PTViSn+29EYh4Jn+Y8
YQoDC2ba+iYbqBez2ypBRgXiAk6lOmESKs+v77QAnx8pqprFLx3fkulB6gczwGwZ
B1Uq6SQR1i8IXGs3l8/bYByKBp/Xt9X+JkJggbj5UKOdeNsGTyA=
=Pn1f
-----END PGP SIGNATURE-----
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
RSL 2.10.0
+ Added code to store wireless ADB connect command in

View File

@@ -123,7 +123,7 @@ public class ListViewColumnSorter : IComparer
private string cleanNumber(string number)
{
return number.Substring(0, number.LastIndexOf('.'));
return number.Substring(0);
}
}

2
MainForm.Designer.cs generated
View File

@@ -1474,7 +1474,7 @@
private System.Windows.Forms.ColumnHeader PackageNameIndex;
private System.Windows.Forms.ColumnHeader VersionCodeIndex;
private System.Windows.Forms.ColumnHeader ReleaseAPKPathIndex;
private System.Windows.Forms.ColumnHeader VersionNameIndex;
public System.Windows.Forms.ColumnHeader VersionNameIndex;
}
}

View File

@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Newtonsoft.Json;
@@ -93,6 +94,7 @@ namespace AndroidSideloader
if (!tempGameList.Equals(""))
{
string[] gameListSplited = tempGameList.Split(new[] { '\n' });
gameListSplited = gameListSplited.Skip(1).ToArray();
foreach (string game in gameListSplited)
{
if (game.Length > 1)

View File

@@ -17,7 +17,7 @@ namespace AndroidSideloader
private static string RawGitHubUrl;
private static string GitHubUrl;
static readonly public string LocalVersion = "2.10.0";
static readonly public string LocalVersion = "2.10.1";
public static string currentVersion = string.Empty;
public static string changelog = string.Empty;

View File

@@ -1,26 +1,7 @@
RSL 2.10.0
RSL 2.10.1
+ Added code to store wireless ADB connect command in
StoredIP.txt so RSL updates will no longer wipe Wireless
ADB settings.
+ Added code to prefer wired if wireless ADB is setup
but user plugs device in via USB.
+ Added new Updater form for RSL updates.
+ Added new Donor form with listview so all detected
donatable apps will appear in a list.
+ Added NewApps list so users can select free/non-VR
apps. This will then upload to pre-determined debuglogs
server (so the packagenames can be added to blacklist).
+ Threaded entire list population procedure so RSL will
no longer freeze when the list is being populated.
+ Added Pull to Desktop option if user wishes to just
pull an app without uploading.
+ Added code to allow removing currently downloading
app as long as all other items in queue have been removed
first.
= Fixed logic for listview columns (removed duplicate
column headers when expanding RSL borders.
= Fixed OBB drag and drop and Copy OBB button.
= Colorblind mode switched on by default.
- Removed gridlines from main updates list for cleaner
look.
= Fixed sort by Size (MB).
= Fixed issue where game list column headers
were appearing as a game in the games list.
HFP

View File

@@ -1 +1 @@
2.10.0
2.10.1