File tree 3 files changed +11
-4
lines changed
phonk_app/src/main/assets
phonk_apprunner/src/main/java/io/phonk/runner
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ buildscript {
10
10
}
11
11
12
12
project. ext {
13
- versionCode = 130
14
- versionName = " 1.2.8 "
13
+ versionCode = 131
14
+ versionName = " 1.2.9 "
15
15
}
16
16
17
17
task hello {
Original file line number Diff line number Diff line change
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
+
1
10
1.2.8
2
11
- Decimals method in slider and knob now works
3
12
- Launch other scripts via app.launchScript(path) method
Original file line number Diff line number Diff line change @@ -156,8 +156,6 @@ protected void onCreate(Bundle savedInstanceState) {
156
156
if (size .x > size .y ) isPortrait = false ;
157
157
else isPortrait = true ;
158
158
159
- MLog .d ("qqq isPortrait: " , "" + isPortrait );
160
-
161
159
if (orientation .equals ("landscape" )) {
162
160
setRequestedOrientation (ActivityInfo .SCREEN_ORIENTATION_LANDSCAPE );
163
161
} else if (orientation .equals ("portrait" )) {
You can’t perform that action at this time.
0 commit comments