Skip to content

Commit c6a1861

Browse files
committed
Implemented completely dark background for better image quality.
Version v5.1.2 Build 115120 Changelog update
1 parent 294725d commit c6a1861

File tree

14 files changed

+28
-16
lines changed

14 files changed

+28
-16
lines changed

CustomVnc-app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
xmlns:tools="http://schemas.android.com/tools"
44
package="com.iiordanov.CUSTOM_VNC_APP_PACKAGE_NAME"
55
android:installLocation="auto"
6-
android:versionCode="115119"
7-
android:versionName="v5.1.1">
6+
android:versionCode="115120"
7+
android:versionName="v5.1.2">
88

99
<uses-permission tools:node="removeAll" />
1010
<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
@@ -2,8 +2,8 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
44
package="com.undatech.opaque"
5-
android:versionCode="115119"
6-
android:versionName="v5.1.1">
5+
android:versionCode="115120"
6+
android:versionName="v5.1.2">
77

88
<uses-feature
99
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
@@ -3,8 +3,8 @@
33
xmlns:tools="http://schemas.android.com/tools"
44
package="com.iiordanov.aRDP"
55
android:installLocation="auto"
6-
android:versionCode="115119"
7-
android:versionName="v5.1.1">
6+
android:versionCode="115120"
7+
android:versionName="v5.1.2">
88

99
<uses-permission tools:node="removeAll" />
1010
<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
@@ -3,8 +3,8 @@
33
xmlns:tools="http://schemas.android.com/tools"
44
package="com.iiordanov.aSPICE"
55
android:installLocation="auto"
6-
android:versionCode="115119"
7-
android:versionName="v5.1.1">
6+
android:versionCode="115120"
7+
android:versionName="v5.1.2">
88

99
<uses-feature
1010
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
@@ -3,8 +3,8 @@
33
xmlns:tools="http://schemas.android.com/tools"
44
package="com.iiordanov.bVNC"
55
android:installLocation="auto"
6-
android:versionCode="115119"
7-
android:versionName="v5.1.1">
6+
android:versionCode="115120"
7+
android:versionName="v5.1.2">
88

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

bVNC/CHANGELOG-Opaque

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
v5.1.2
2+
- Completely dark background for better image on OLED screens
13
v5.1.1
24
- Bugfix for single-click with certain trackpads
35
- Bugfix for Simulated Touchpad Drag&Drop

bVNC/CHANGELOG-aRDP

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
v5.1.2
2+
- Completely dark background for better image on OLED screens
13
v5.1.1
24
- Bugfix for single-click with certain trackpads
35
- Color mode selection

bVNC/CHANGELOG-aSPICE

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
v5.1.2
2+
- Completely dark background for better image on OLED screens
13
v5.1.1
24
- Bugfix for auto local cursor
35
- Bugfix for single-click with certain trackpads

bVNC/CHANGELOG-bVNC

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
v5.1.2
2+
- Completely dark background for better image on OLED screens
13
v5.1.1
24
- Bugfix for single-click with certain trackpads
35
- Bugfix for Simulated Touchpad Drag&Drop

bVNC/src/main/res/layout-large/canvas.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
android:orientation="vertical"
44
android:layout_width="fill_parent"
55
android:layout_height="fill_parent"
6+
android:background="@android:color/background_dark"
67
>
78

89
<com.iiordanov.bVNC.RemoteCanvas
910
android:id="@+id/canvas"
1011
android:layout_width="fill_parent"
1112
android:layout_height="fill_parent"
1213
android:layout_gravity="bottom|center"
14+
android:background="@android:color/background_dark"
1315
>
1416
</com.iiordanov.bVNC.RemoteCanvas>
1517

bVNC/src/main/res/layout/canvas.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
android:orientation="vertical"
44
android:layout_width="fill_parent"
55
android:layout_height="fill_parent"
6+
android:background="@android:color/background_dark"
67
>
78

89
<com.iiordanov.bVNC.RemoteCanvas
910
android:id="@+id/canvas"
1011
android:layout_width="fill_parent"
1112
android:layout_height="fill_parent"
1213
android:layout_gravity="bottom|center"
14+
android:background="@android:color/background_dark"
1315
>
1416
</com.iiordanov.bVNC.RemoteCanvas>
1517

freeaRDP-app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
xmlns:tools="http://schemas.android.com/tools"
44
package="com.iiordanov.freeaRDP"
55
android:installLocation="auto"
6-
android:versionCode="115119"
7-
android:versionName="v5.1.1">
6+
android:versionCode="115120"
7+
android:versionName="v5.1.2">
88

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

freeaSPICE-app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
xmlns:tools="http://schemas.android.com/tools"
44
package="com.iiordanov.freeaSPICE"
55
android:installLocation="auto"
6-
android:versionCode="115119"
7-
android:versionName="v5.1.1">
6+
android:versionCode="115120"
7+
android:versionName="v5.1.2">
88

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

freebVNC-app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
xmlns:tools="http://schemas.android.com/tools"
44
package="com.iiordanov.freebVNC"
55
android:installLocation="auto"
6-
android:versionCode="115119"
7-
android:versionName="v5.1.1">
6+
android:versionCode="115120"
7+
android:versionName="v5.1.2">
88

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

0 commit comments

Comments
 (0)