File tree 5 files changed +29
-12
lines changed
5 files changed +29
-12
lines changed Original file line number Diff line number Diff line change 1
- RSL 2.10.3
1
+ RSL 2.10.4
2
+
3
+ Made mirror ID start at first again.
4
+
5
+ ~pmow
6
+
7
+
8
+ RSL 2.10.3
2
9
3
10
Added offline mode merge.
4
11
Original file line number Diff line number Diff line change @@ -1739,15 +1739,26 @@ private void initMirrors(bool random)
1739
1739
1740
1740
if ( itemsCount > 0 )
1741
1741
{
1742
+
1742
1743
var rand = new Random ( ) ;
1743
- if ( random == true && index < itemsCount )
1744
- index = rand . Next ( 0 , itemsCount ) ;
1744
+ // Code that implements a randomized mirror. The rotation logic (the rotation) is reported as being bugged so I just disabled as a workaround ~pmow
1745
+ // if (random == true && index < itemsCount)
1746
+ // index = rand.Next(0, itemsCount);
1747
+ // remotesList.Invoke(() =>
1748
+ // {
1749
+ // remotesList.SelectedIndex = index;
1750
+ // remotesList.SelectedIndex = 0;
1751
+ // currentRemote = "VRP-mirror" + remotesList.SelectedItem.ToString();
1752
+ // });
1753
+
1745
1754
remotesList . Invoke ( ( ) =>
1746
- {
1747
- remotesList . SelectedIndex = index ;
1755
+ {
1756
+ remotesList . SelectedIndex = 0 ; //set mirror to first
1748
1757
currentRemote = "VRP-mirror" + remotesList . SelectedItem . ToString ( ) ;
1749
- } ) ;
1750
- }
1758
+ } ) ;
1759
+
1760
+
1761
+ } ;
1751
1762
}
1752
1763
1753
1764
public static string processError = string . Empty ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class Updater
17
17
private static string RawGitHubUrl ;
18
18
private static string GitHubUrl ;
19
19
20
- static readonly public string LocalVersion = "2.10.3 " ;
20
+ static readonly public string LocalVersion = "2.10.4 " ;
21
21
public static string currentVersion = string . Empty ;
22
22
public static string changelog = string . Empty ;
23
23
Original file line number Diff line number Diff line change 1
- RSL 2.10.3
1
+ RSL 2.10.4
2
2
3
- Imported offline mode commit.
4
- This update allows you to run with a --offline switch to circumvent Google Drive mirrors in the case of a quota meltdown.
3
+ Made mirror ID start at first again.
5
4
6
5
~pmow
Original file line number Diff line number Diff line change 1
- 2.10.3
1
+ 2.10.4
You can’t perform that action at this time.
0 commit comments