File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed
src/main/java/slowscript/warpinator
fastlane/metadata/android/en-US/changelogs Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments