Skip to content

Commit

Permalink
Version 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
slowscript committed Feb 12, 2023
1 parent 1bdb603 commit e16e280
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId 'slowscript.warpinator'
minSdkVersion 21 //Required by NSD (attributes)
targetSdkVersion 32
versionCode 1053
versionName "1.5.3"
versionCode 1060
versionName "1.6.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
5 changes: 4 additions & 1 deletion app/src/main/java/slowscript/warpinator/Remote.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ public void connect() {
//Receive certificate
if (!receiveCertificate()) {
status = RemoteStatus.ERROR;
errorText = "Couldn't receive certificate - check firewall";
if (errorGroupCode)
errorText = MainService.svc.getString(R.string.wrong_group_code);
else
errorText = "Couldn't receive certificate - check firewall";
updateUI();
return;
}
Expand Down
7 changes: 7 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/1060.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
- Implemented V2 connection API
- Implemented compression
- Made sending folders more intuitive
- Fixed handling of the group code
- Improved handling of lost network
- Fixed some bugs and crashes
- Updated translations

0 comments on commit e16e280

Please # to comment.