File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ private async void Form1_Shown(object sender, EventArgs e)
310310 if ( ! debugMode && Properties . Settings . Default . checkForUpdates )
311311 {
312312 Updater . AppName = "AndroidSideloader" ;
313- Updater . Repository = "nerdunit/androidsideloader " ;
313+ Updater . Repository = "VRPirates/rookie " ;
314314 Updater . Update ( ) ;
315315 }
316316 progressBar . Invoke ( ( ) => { progressBar . Style = ProgressBarStyle . Marquee ; } ) ;
@@ -3556,7 +3556,7 @@ private void MountButton_Click(object sender, EventArgs e)
35563556
35573557 private void freeDisclaimer_Click ( object sender , EventArgs e )
35583558 {
3559- _ = Process . Start ( "https://github.com/nerdunit/androidsideloader " ) ;
3559+ _ = Process . Start ( "https://github.com/VRPirates/rookie " ) ;
35603560 }
35613561
35623562 private async void removeQUSetting_Click ( object sender , EventArgs e )
Original file line number Diff line number Diff line change 11# androidsideloader
2- ![ GitHub last commit] ( https://img.shields.io/github/last-commit/nerdunit/androidsideloader )
3- ![ GitHub release (latest by date)] ( https://img.shields.io/github/v/release/nerdunit/androidsideloader )
4- [ ![ Downloads] ( https://img.shields.io/github/downloads/nerdunit/androidsideloader /total.svg )] ( https://github.com/nerdunit/androidsideloader /releases )
5- ![ Issues] ( https://img.shields.io/github/issues/nerdunit/androidsideloader )
2+ ![ GitHub last commit] ( https://img.shields.io/github/last-commit/VRPirates/rookie )
3+ ![ GitHub release (latest by date)] ( https://img.shields.io/github/v/release/VRPirates/rookie )
4+ [ ![ Downloads] ( https://img.shields.io/github/downloads/VRPirates/rookie /total.svg )] ( https://github.com/VRPirates/rookie /releases )
5+ ![ Issues] ( https://img.shields.io/github/issues/VRPirates/rookie )
66
77androidsideloader uses the GPL license, any forks of it must have their source code made public on the internet.
88
@@ -12,4 +12,4 @@ This app may be buggy and have problems.
1212
1313### This app might get detected as malware, however both the sideloader and the sideloader launcher are open source. And obviously, it isn't.
1414See:
15- https://www.virustotal.com/gui/file/977105693610cf360fc29339b918e224180ba393ba05a64b6255af3845cbf376/relations
15+ https://www.virustotal.com/gui/file/46b6e24a03a6670dfbbde6e6f06caac05f2f9486115ef7bd77e0b568df7e5342/detection
Original file line number Diff line number Diff line change @@ -272,13 +272,13 @@ public static void downloadFiles()
272272 if ( ! File . Exists ( "Sideloader Launcher.exe" ) )
273273 {
274274 currentAccessedWebsite = "github" ;
275- client . DownloadFile ( "https://github.com/nerdunit/androidsideloader /raw/master/Sideloader%20Launcher.exe" , "Sideloader Launcher.exe" ) ;
275+ client . DownloadFile ( "https://github.com/VRPirates/rookie /raw/master/Sideloader%20Launcher.exe" , "Sideloader Launcher.exe" ) ;
276276 }
277277
278278 if ( ! File . Exists ( "Rookie Offline.cmd" ) )
279279 {
280280 currentAccessedWebsite = "github" ;
281- client . DownloadFile ( "https://github.com/nerdunit/androidsideloader /raw/master/Rookie%20Offline.cmd" , "Rookie Offline.cmd" ) ;
281+ client . DownloadFile ( "https://github.com/VRPirates/rookie /raw/master/Rookie%20Offline.cmd" , "Rookie Offline.cmd" ) ;
282282 }
283283
284284 if ( ! File . Exists ( $ "{ Path . GetPathRoot ( Environment . SystemDirectory ) } \\ RSL\\ platform-tools\\ aug2021.txt") || ! File . Exists ( $ "{ Path . GetPathRoot ( Environment . SystemDirectory ) } \\ RSL\\ platform-tools\\ adb.exe") ) //if adb is not updated, download and auto extract
@@ -299,7 +299,7 @@ public static void downloadFiles()
299299 }
300300
301301 currentAccessedWebsite = "github" ;
302- client . DownloadFile ( "https://github.com/nerdunit/androidsideloader /raw/master/adb2.zip" , "Ad.7z" ) ;
302+ client . DownloadFile ( "https://github.com/VRPirates/rookie /raw/master/adb2.zip" , "Ad.7z" ) ;
303303 Utilities . Zip . ExtractFile ( Environment . CurrentDirectory + "\\ Ad.7z" , $ "{ Path . GetPathRoot ( Environment . SystemDirectory ) } \\ RSL\\ platform-tools") ;
304304 File . Delete ( "Ad.7z" ) ;
305305 }
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ internal class Updater
1010 {
1111 public static string AppName { get ; set ; }
1212 public static string Repository { get ; set ; }
13- private static readonly string RawGitHubUrl = "https://raw.githubusercontent.com/nerdunit/androidsideloader " ;
14- private static readonly string GitHubUrl = "https://github.com/nerdunit/androidsideloader " ;
13+ private static readonly string RawGitHubUrl = "https://raw.githubusercontent.com/VRPirates/rookie " ;
14+ private static readonly string GitHubUrl = "https://github.com/VRPirates/rookie " ;
1515
1616 public static readonly string LocalVersion = "2.21" ;
1717 public static string currentVersion = string . Empty ;
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ private static void DoExtract(string args)
2828 {
2929 _ = Logger . Log ( "Begin download 7-zip" ) ;
3030 WebClient client = new WebClient ( ) ;
31- client . DownloadFile ( "https://github.com/nerdunit/androidsideloader /raw/master/7z.exe" , "7z.exe" ) ;
32- client . DownloadFile ( "https://github.com/nerdunit/androidsideloader /raw/master/7z.dll" , "7z.dll" ) ;
31+ client . DownloadFile ( "https://github.com/VRPirates/rookie /raw/master/7z.exe" , "7z.exe" ) ;
32+ client . DownloadFile ( "https://github.com/VRPirates/rookie /raw/master/7z.dll" , "7z.dll" ) ;
3333 _ = Logger . Log ( "Complete download 7-zip" ) ;
3434 }
3535 ProcessStartInfo pro = new ProcessStartInfo
You can’t perform that action at this time.
0 commit comments