Compare commits

...

5 Commits

Author SHA1 Message Date
Fenopy
d475936bbb Merge pull request #43 from VRPirates/beta/RSL-2.25
Beta/rsl 2.25.1
2023-11-04 15:23:19 -05:00
Fenopy
c404d69b54 Merge pull request #42 from Chax1/beta/RSL-2.25
Fix Device not authorized prompt showing up after authorization.
2023-11-04 15:22:54 -05:00
Chax
6edc9cf7e9 Change not authorized message to be more clear on what to do
Some additional info
2023-11-04 16:23:01 +01:00
Chax
71d89284f1 Chore: Bump Version. 2023-11-04 16:02:29 +01:00
Chax
39473ba15c - Fix: Device not authorized prompt showing up after authorization. 2023-11-04 16:02:06 +01:00
5 changed files with 13 additions and 10 deletions

View File

@@ -1,4 +1,10 @@
RSL 2.24
RSL 2.25
- Fix: Fix to unauthorized device bug
- Chore: Update Wiki URL
RSL 2.24
- Feature: Added "Open Download" and "Open Backup" Directory buttons to Settings Menu
- Fix: OBB Pushes for Quest 3 Devices

View File

@@ -806,13 +806,13 @@ namespace AndroidSideloader
public void changeTitlebarToDevice()
{
if (!Devices.Contains("unauthorized"))
if (Devices.Contains("unauthorized"))
{
DeviceConnected = false;
this.Invoke(() =>
{
Text = "Device Not Authorized";
DialogResult dialogResult = FlexibleMessageBox.Show(Program.form, "Device not authorized, be sure to authorize computer on device.", "Not Authorized", MessageBoxButtons.RetryCancel);
DialogResult dialogResult = FlexibleMessageBox.Show(Program.form, "Please check inside your headset for ADB DEBUGGING prompt/notification, check the box \"Always allow from this computer.\" and hit OK.", "Not Authorized", MessageBoxButtons.RetryCancel);
if (dialogResult == DialogResult.Retry)
{
devicesbutton.PerformClick();
@@ -846,8 +846,6 @@ namespace AndroidSideloader
return;
}
}
});
}
}

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.25";
public static readonly string LocalVersion = "2.25.1";
public static string currentVersion = string.Empty;
public static string changelog = string.Empty;

View File

@@ -1,4 +1,3 @@
RSL 2.25
RSL 2.25.1
- Fix: Fix to unauthorized device bug
- Chore: Update Wiki URL
- Fix: Device not authorized prompt showing up after authorization.

View File

@@ -1 +1 @@
2.25
2.25.1