Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bannedbook committed May 27, 2020
1 parent d37fbc4 commit 7c07b3e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ buildscript {
junitVersion = '4.13'
androidTestVersion = '1.2.0'
androidEspressoVersion = '3.2.0'
versionCode = 5000778
versionName = '5.1.2-nightly'
versionCode = 5000788
versionName = '5.1.3-nightly'
resConfigs = ['ar', 'es', 'fa', 'fr', 'ja', 'ko', 'ru', 'tr', 'zh-rCN', 'zh-rTW']
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class ProxyTestService : ProxyService(), Interface {
}, "$packageName.SERVICE", null)
data.closeReceiverRegistered = true
}
//data.changeState(BaseService.State.Connecting)
data.changeState(BaseService.State.Connecting)
data.connectingJob = GlobalScope.launch(Dispatchers.Main) {
try {
Executable.killAll() // clean up old processes
Expand All @@ -99,7 +99,7 @@ class ProxyTestService : ProxyService(), Interface {
proxy.scheduleUpdate()
data.udpFallback?.scheduleUpdate()

//data.changeState(BaseService.State.Connected)
data.changeState(BaseService.State.Connected)
} catch (_: CancellationException) {
// if the job was cancelled, it is canceller's responsibility to call stopRunner
} catch (_: UnknownHostException) {
Expand Down
2 changes: 1 addition & 1 deletion gitupdate.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ git pull origin master
git add -A
git commit -m "update"
git push origin master
git tag -a v5.1.2 -m "release v5.1.2"
git tag -a v5.1.3 -m "release v5.1.3"
git push origin --tags
pause

0 comments on commit 7c07b3e

Please sign in to comment.