Skip to content

Commit 8948559

Browse files
authored
Merge pull request #6 from design-first/version/5.3.2
chore: bump 5.4.0
2 parents 615bd40 + 338ef1d commit 8948559

File tree

16 files changed

+50
-26
lines changed

16 files changed

+50
-26
lines changed

config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<widget xmlns="http://www.w3.org/ns/widgets"
33
xmlns:cdv="http://cordova.apache.org/ns/1.0"
44
id="com.ecarriou.systemdesignerios"
5-
version="5.3.1">
5+
version="5.4.0">
66
<name>System Designer</name>
77
<description>
88
A low-code development platform for creating systems

icon.png

834 Bytes
Loading

merges/android/styles/mobile.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ body {
4242
background-color: transparent!important;
4343
}
4444

45+
span.glyphicon.glyphicon-menu-left,
46+
span.glyphicon.glyphicon-menu-right {
47+
color:#337ab7!important;
48+
}
49+
4550
.CodeMirror-gutter-wrapper {
4651
-webkit-user-select: none;
4752
-moz-user-select: none;

merges/browser/styles/mobile.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ html {
3838
body {
3939
background-color: transparent!important;
4040
}
41-
span.glyphicon.glyphicon-menu-left {
41+
42+
span.glyphicon.glyphicon-menu-left,
43+
span.glyphicon.glyphicon-menu-right {
4244
color:#337ab7!important;
4345
}
4446

merges/ios/styles/mobile.css

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ body {
4242
background-color: transparent!important;
4343
}
4444

45-
span.glyphicon.glyphicon-menu-left {
45+
span.glyphicon.glyphicon-menu-left,
46+
span.glyphicon.glyphicon-menu-right {
4647
color:#337ab7!important;
4748
}
4849

@@ -61,7 +62,7 @@ span.glyphicon.glyphicon-menu-left {
6162
right: -20px;
6263
}
6364

64-
/* iPhone 5 / 5S / SE */
65+
/* 4" physical screen size */
6566
@media only screen
6667
and (max-width: 600px)
6768
and (orientation: landscape) {
@@ -88,7 +89,7 @@ span.glyphicon.glyphicon-menu-left {
8889
}
8990
}
9091

91-
/* iPhone 6 / 7 / 8 */
92+
/* 4.7" physical screen size */
9293
@media only screen
9394
and (max-width : 667px)
9495
and (orientation : landscape) {
@@ -122,7 +123,7 @@ span.glyphicon.glyphicon-menu-left {
122123
}
123124
}
124125

125-
/* iPhone 6+ / 7+ / 8+ */
126+
/* 5.5" physical screen size */
126127
@media only screen
127128
and (max-width : 736px)
128129
and (orientation : landscape) {
@@ -140,7 +141,7 @@ span.glyphicon.glyphicon-menu-left {
140141
}
141142
}
142143

143-
/* iPhone X, iPhone XS */
144+
/* 5.8" physical screen size */
144145
@media only screen
145146
and (device-width : 375px)
146147
and (device-height : 812px)
@@ -165,7 +166,7 @@ span.glyphicon.glyphicon-menu-left {
165166
}
166167
}
167168

168-
/* iPhone XR */
169+
/* 6.1" physical screen size */
169170
@media only screen
170171
and (device-width : 414px)
171172
and (device-height : 896px)
@@ -190,7 +191,7 @@ span.glyphicon.glyphicon-menu-left {
190191
}
191192
}
192193

193-
/* iPhone XS Max */
194+
/* 6.5" physical screen size */
194195
@media only screen
195196
and (device-width : 414px)
196197
and (device-height : 896px)
@@ -203,5 +204,25 @@ span.glyphicon.glyphicon-menu-left {
203204
}
204205
#designer-toolbar-item-command {
205206
display: none;
206-
}
207+
}
208+
#designer-toolbar-item-extension {
209+
display: none;
210+
}
211+
}
212+
213+
/* 6.7" physical screen size */
214+
@media only screen
215+
and (device-width : 430px)
216+
and (device-height : 932px)
217+
and (-webkit-device-pixel-ratio : 3)
218+
and (orientation : landscape) {
219+
.list-group.designer-library {
220+
max-height: 90px;
221+
}
222+
#designer-toolbar-item-command {
223+
display: none;
224+
}
225+
#designer-toolbar-item-extension {
226+
display: none;
227+
}
207228
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.ecarriou.systemdesignerios",
3-
"version": "5.3.1",
3+
"version": "5.4.0",
44
"license": "Apache-2.0",
55
"repository": {
66
"type": "git",

www/cache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// System Designer - Copyright 2024 Erwan Carriou
22
// Licensed under the Apache License, Version 2.0 (the "License")
33

4-
const version = 'v5.3.0'
4+
const version = 'v5.4.0'
55

66
const clearCaches = () => {
77
return caches.keys().then((keys) => {

www/scripts/editor-behavior.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

www/scripts/editor-component.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

www/scripts/editor-model.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)