Skip to content

Commit

Permalink
Merge pull request #40 from GerRudi/v1.2.2
Browse files Browse the repository at this point in the history
V1.2.2
  • Loading branch information
GerRudi authored Feb 20, 2018
2 parents 336348e + 0d8342f commit 970d75d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog of SimpleR

## [v1.2.2] - 2018-02-20
### Added
- Support for public testing -> enjoy!


## [v1.2.1] - 2018-01-29
### Fixed
- Game not launching when testing website is offline
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Public testing is working with v1.2.2!

<img src="data/Icons/SimpleR.png" width="100">

# SimpleR-RotMG
Expand Down
Binary file modified SimpleR.exe
Binary file not shown.
10 changes: 5 additions & 5 deletions source/SimpleR.au3
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#AutoIt3Wrapper_Icon=..\data\Icons\SimpleR.ico
#AutoIt3Wrapper_Compression=0
#AutoIt3Wrapper_Res_Description=Simple launcher to play RotMG
#AutoIt3Wrapper_Res_Fileversion=1.2.0.0
#AutoIt3Wrapper_Res_Fileversion=1.2.2.0
#AutoIt3Wrapper_Res_LegalCopyright=GerRudi
#AutoIt3Wrapper_Res_Language=1033
#AutoIt3Wrapper_Run_Au3Stripper=y
Expand Down Expand Up @@ -742,13 +742,13 @@ Func _GetSWF()
EndIf

If IsArray($v2) Then
$SWF[1][0] = ("http://testing.realmofthemadgod.com/AGCLoader" & $v2[0] & ".swf")
$SWF[1][1] = ("http://testing.realmofthemadgod.com/AssembleeGameClient" & $v2[0] & ".swf")
$SWF[1][0] = ("https://rotmgtesting.appspot.com/AGCLoader" & $v2[0] & ".swf")
$SWF[1][1] = ("https://rotmgtesting.appspot.com/AssembleeGameClient" & $v2[0] & ".swf")
Else
Dim $temp = _INetGetSource("http://testing.realmofthemadgod.com/version.txt")

$SWF[1][0] = ("http://testing.realmofthemadgod.com/AGCLoader" & $temp & ".swf")
$SWF[1][1] = ("http://testing.realmofthemadgod.com/AssembleeGameClient" & $temp & ".swf")
$SWF[1][0] = ("https://rotmgtesting.appspot.com/AGCLoader" & $temp & ".swf")
$SWF[1][1] = ("https://rotmgtesting.appspot.com/AssembleeGameClient" & $temp & ".swf")
EndIf

Return $SWF
Expand Down

0 comments on commit 970d75d

Please sign in to comment.