Skip to content

Commit e16e280

Browse files
committed
Version 1.6
1 parent 1bdb603 commit e16e280

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
applicationId 'slowscript.warpinator'
99
minSdkVersion 21 //Required by NSD (attributes)
1010
targetSdkVersion 32
11-
versionCode 1053
12-
versionName "1.5.3"
11+
versionCode 1060
12+
versionName "1.6.0"
1313

1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1515
}

app/src/main/java/slowscript/warpinator/Remote.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,10 @@ public void connect() {
6767
//Receive certificate
6868
if (!receiveCertificate()) {
6969
status = RemoteStatus.ERROR;
70-
errorText = "Couldn't receive certificate - check firewall";
70+
if (errorGroupCode)
71+
errorText = MainService.svc.getString(R.string.wrong_group_code);
72+
else
73+
errorText = "Couldn't receive certificate - check firewall";
7174
updateUI();
7275
return;
7376
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
- Implemented V2 connection API
2+
- Implemented compression
3+
- Made sending folders more intuitive
4+
- Fixed handling of the group code
5+
- Improved handling of lost network
6+
- Fixed some bugs and crashes
7+
- Updated translations

0 commit comments

Comments
 (0)