Skip to content

Commit 7aa7521

Browse files
committed
Version v6.2.6, Build 116260, Changelog update
1 parent 99c7ec7 commit 7aa7521

File tree

77 files changed

+209
-22
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+209
-22
lines changed

CustomVnc-app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
44
android:installLocation="auto"
5-
android:versionCode="116250"
6-
android:versionName="v6.2.5">
5+
android:versionCode="116260"
6+
android:versionName="v6.2.6">
77

88
<uses-permission tools:node="removeAll" />
99
<uses-permission android:name="android.permission.INTERNET" />

Opaque-app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
android:versionCode="116250"
4-
android:versionName="v6.2.5">
3+
android:versionCode="116260"
4+
android:versionName="v6.2.6">
55

66
<uses-feature
77
android:name="android.hardware.usb.host"

aRDP-app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
44
android:installLocation="auto"
5-
android:versionCode="116250"
6-
android:versionName="v6.2.5">
5+
android:versionCode="116260"
6+
android:versionName="v6.2.6">
77

88
<uses-permission tools:node="removeAll" />
99
<uses-permission android:name="android.permission.INTERNET" />

aSPICE-app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
44
android:installLocation="auto"
5-
android:versionCode="116250"
6-
android:versionName="v6.2.5">
5+
android:versionCode="116260"
6+
android:versionName="v6.2.6">
77

88
<uses-feature
99
android:name="android.hardware.usb.host"

bVNC-app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
44
android:installLocation="auto"
5-
android:versionCode="116250"
6-
android:versionName="v6.2.5">
5+
android:versionCode="116260"
6+
android:versionName="v6.2.6">
77

88
<uses-permission tools:node="removeAll" />
99
<uses-permission android:name="android.permission.INTERNET" />

bVNC/CHANGELOG-Opaque

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v6.2.6
2+
- Localized the app into most supported languages
3+
- Ensured all strings are present in existing localizations
4+
- Improved messaging
15
v6.2.3
26
- Launch app into separate task started via URI intent
37
v6.2.2

bVNC/CHANGELOG-aRDP

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v6.2.6
2+
- Localized the app into most supported languages
3+
- Ensured all strings are present in existing localizations
4+
- Improved messaging
15
v6.2.5
26
- Vastly lowered bandwidth usage for Windows hosts and Gfx H264 codec
37
v6.2.3

bVNC/CHANGELOG-aSPICE

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v6.2.6
2+
- Localized the app into most supported languages
3+
- Ensured all strings are present in existing localizations
4+
- Improved messaging
15
v6.2.3
26
- Launch app into separate task started via URI intent
37
v6.2.2

bVNC/CHANGELOG-bVNC

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v6.2.6
2+
- Localized the app into most supported languages
3+
- Ensured all strings are present in existing localizations
4+
- Improved messaging
15
v6.2.4
26
- UTF-8 clipboard support
37
v6.2.3

bVNC/src/main/java/com/iiordanov/bVNC/AbstractConnectionBean.java

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public abstract class AbstractConnectionBean extends com.antlersoft.android.dbim
3030
public static final String TAG = "AbstractConnectionBean";
3131

3232
public static final String GEN_TABLE_NAME = "CONNECTION_BEAN";
33-
public static final int GEN_COUNT = 94;
33+
public static final int GEN_COUNT = 95;
3434

3535
// Field constants
3636
public static final String GEN_FIELD__ID = "_id";
@@ -226,6 +226,8 @@ public abstract class AbstractConnectionBean extends com.antlersoft.android.dbim
226226
public static final int GEN_ID_DESKTOPSCALEPERCENTAGE = 92;
227227
public static final String GEN_FIELD_RDPSECURITY = "RDPSECURITY";
228228
public static final int GEN_ID_RDPSECURITY = 93;
229+
public static final String GEN_FIELD_ENABLEGLYPHCACHE = "ENABLEGLYPHCACHE";
230+
public static final int GEN_ID_ENABLEGLYPHCACHE = 94;
229231

230232
// SQL Command for creating the table
231233
public static String GEN_CREATE = "CREATE TABLE CONNECTION_BEAN (" +
@@ -322,7 +324,8 @@ public abstract class AbstractConnectionBean extends com.antlersoft.android.dbim
322324
"RDPGATEWAYPASSWORD TEXT," +
323325
"KEEPRDPGATEWAYPASSWORD INTEGER," +
324326
"DESKTOPSCALEPERCENTAGE INTEGER," +
325-
"RDPSECURITY INTEGER" +
327+
"RDPSECURITY INTEGER," +
328+
"ENABLEGLYPHCACHE BOOLEAN" +
326329
")";
327330

328331
// Members corresponding to defined fields
@@ -424,6 +427,7 @@ public abstract class AbstractConnectionBean extends com.antlersoft.android.dbim
424427
private boolean gen_keepRdpGatewayPassword;
425428
private int gen_desktopScalePercentage;
426429
private int gen_rdpSecurity;
430+
private boolean gen_enableGlyphCache;
427431

428432
public String Gen_tableName() {
429433
return GEN_TABLE_NAME;
@@ -1186,6 +1190,16 @@ public void setRdpSecurity(int rdpSecurity) {
11861190
this.gen_rdpSecurity = rdpSecurity;
11871191
}
11881192

1193+
@Override
1194+
public boolean getEnableGlyphCache() {
1195+
return gen_enableGlyphCache;
1196+
}
1197+
1198+
@Override
1199+
public void setEnableGlyphCache(boolean enableGlyphCache) {
1200+
this.gen_enableGlyphCache = enableGlyphCache;
1201+
}
1202+
11891203
public android.content.ContentValues Gen_getValues() {
11901204
android.content.ContentValues values = new android.content.ContentValues();
11911205
values.put(GEN_FIELD__ID, Long.toString(this.gen__Id));
@@ -1287,6 +1301,7 @@ public android.content.ContentValues Gen_getValues() {
12871301
values.put(GEN_FIELD_KEEPRDPGATEWAYPASSWORD, (this.gen_keepRdpGatewayPassword));
12881302
values.put(GEN_FIELD_DESKTOPSCALEPERCENTAGE, (this.gen_desktopScalePercentage));
12891303
values.put(GEN_FIELD_RDPSECURITY, (this.gen_rdpSecurity));
1304+
values.put(GEN_FIELD_ENABLEGLYPHCACHE, (this.gen_enableGlyphCache));
12901305

12911306
return values;
12921307
}
@@ -1402,6 +1417,7 @@ public int[] Gen_columnIndices(android.database.Cursor cursor) {
14021417
result[91] = cursor.getColumnIndex(GEN_FIELD_KEEPRDPGATEWAYPASSWORD);
14031418
result[92] = cursor.getColumnIndex(GEN_FIELD_DESKTOPSCALEPERCENTAGE);
14041419
result[93] = cursor.getColumnIndex(GEN_FIELD_RDPSECURITY);
1420+
result[94] = cursor.getColumnIndex(GEN_FIELD_ENABLEGLYPHCACHE);
14051421

14061422
return result;
14071423
}
@@ -1696,6 +1712,9 @@ public void Gen_populate(android.database.Cursor cursor, int[] columnIndices) {
16961712
if (columnIndices[GEN_ID_RDPSECURITY] >= 0 && !cursor.isNull(columnIndices[GEN_ID_RDPSECURITY])) {
16971713
gen_rdpSecurity = cursor.getInt(columnIndices[GEN_ID_RDPSECURITY]);
16981714
}
1715+
if (columnIndices[GEN_ID_ENABLEGLYPHCACHE] >= 0 && !cursor.isNull(columnIndices[GEN_ID_ENABLEGLYPHCACHE])) {
1716+
gen_enableGlyphCache = cursor.getInt(columnIndices[GEN_ID_ENABLEGLYPHCACHE]) != 0;
1717+
}
16991718
}
17001719

17011720
/**
@@ -1801,6 +1820,7 @@ public void Gen_populate(android.content.ContentValues values) {
18011820
gen_keepRdpGatewayPassword = values.getAsBoolean(GEN_FIELD_KEEPRDPGATEWAYPASSWORD);
18021821
gen_desktopScalePercentage = values.getAsInteger(GEN_FIELD_DESKTOPSCALEPERCENTAGE);
18031822
gen_rdpSecurity = values.getAsInteger(GEN_FIELD_RDPSECURITY);
1823+
gen_enableGlyphCache = values.getAsBoolean(GEN_FIELD_ENABLEGLYPHCACHE);
18041824
}
18051825

18061826
/**

0 commit comments

Comments
 (0)