Skip to content

Commit 742a9b8

Browse files
committed
ready for 1.2.9
1 parent 9b231fa commit 742a9b8

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ buildscript {
1010
}
1111

1212
project.ext {
13-
versionCode = 130
14-
versionName = "1.2.8"
13+
versionCode = 131
14+
versionName = "1.2.9"
1515
}
1616

1717
task hello {

phonk_app/src/main/assets/changelog.txt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
1.2.9
2+
- Toggle state order are fixed
3+
- Camera methods changed to fix callbacks
4+
- MQTT methods are changed a bit to work better asynchronously. Hopefully it won't change anymore! :)
5+
- Background service now stops properly
6+
- Fixed memory leak in main app
7+
- Custom icons in projects and shortcuts
8+
- Scripts now launch with the same previous orientation. This is nice for tablets!
9+
110
1.2.8
211
- Decimals method in slider and knob now works
312
- Launch other scripts via app.launchScript(path) method

phonk_apprunner/src/main/java/io/phonk/runner/AppRunnerActivity.java

-2
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,6 @@ protected void onCreate(Bundle savedInstanceState) {
156156
if (size.x > size.y) isPortrait = false;
157157
else isPortrait = true;
158158

159-
MLog.d("qqq isPortrait: ", "" + isPortrait);
160-
161159
if (orientation.equals("landscape")) {
162160
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
163161
} else if (orientation.equals("portrait")) {

0 commit comments

Comments
 (0)