Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<widget xmlns="http://www.w3.org/ns/widgets"
xmlns:cdv="http://cordova.apache.org/ns/1.0"
id="com.ecarriou.systemdesignerios"
version="5.3.1">
version="5.4.0">
<name>System Designer</name>
<description>
A low-code development platform for creating systems
Expand Down
Binary file modified icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions merges/android/styles/mobile.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ body {
background-color: transparent!important;
}

span.glyphicon.glyphicon-menu-left,
span.glyphicon.glyphicon-menu-right {
color:#337ab7!important;
}

.CodeMirror-gutter-wrapper {
-webkit-user-select: none;
-moz-user-select: none;
Expand Down
4 changes: 3 additions & 1 deletion merges/browser/styles/mobile.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ html {
body {
background-color: transparent!important;
}
span.glyphicon.glyphicon-menu-left {

span.glyphicon.glyphicon-menu-left,
span.glyphicon.glyphicon-menu-right {
color:#337ab7!important;
}

Expand Down
37 changes: 29 additions & 8 deletions merges/ios/styles/mobile.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ body {
background-color: transparent!important;
}

span.glyphicon.glyphicon-menu-left {
span.glyphicon.glyphicon-menu-left,
span.glyphicon.glyphicon-menu-right {
color:#337ab7!important;
}

Expand All @@ -61,7 +62,7 @@ span.glyphicon.glyphicon-menu-left {
right: -20px;
}

/* iPhone 5 / 5S / SE */
/* 4" physical screen size */
@media only screen
and (max-width: 600px)
and (orientation: landscape) {
Expand All @@ -88,7 +89,7 @@ span.glyphicon.glyphicon-menu-left {
}
}

/* iPhone 6 / 7 / 8 */
/* 4.7" physical screen size */
@media only screen
and (max-width : 667px)
and (orientation : landscape) {
Expand Down Expand Up @@ -122,7 +123,7 @@ span.glyphicon.glyphicon-menu-left {
}
}

/* iPhone 6+ / 7+ / 8+ */
/* 5.5" physical screen size */
@media only screen
and (max-width : 736px)
and (orientation : landscape) {
Expand All @@ -140,7 +141,7 @@ span.glyphicon.glyphicon-menu-left {
}
}

/* iPhone X, iPhone XS */
/* 5.8" physical screen size */
@media only screen
and (device-width : 375px)
and (device-height : 812px)
Expand All @@ -165,7 +166,7 @@ span.glyphicon.glyphicon-menu-left {
}
}

/* iPhone XR */
/* 6.1" physical screen size */
@media only screen
and (device-width : 414px)
and (device-height : 896px)
Expand All @@ -190,7 +191,7 @@ span.glyphicon.glyphicon-menu-left {
}
}

/* iPhone XS Max */
/* 6.5" physical screen size */
@media only screen
and (device-width : 414px)
and (device-height : 896px)
Expand All @@ -203,5 +204,25 @@ span.glyphicon.glyphicon-menu-left {
}
#designer-toolbar-item-command {
display: none;
}
}
#designer-toolbar-item-extension {
display: none;
}
}

/* 6.7" physical screen size */
@media only screen
and (device-width : 430px)
and (device-height : 932px)
and (-webkit-device-pixel-ratio : 3)
and (orientation : landscape) {
.list-group.designer-library {
max-height: 90px;
}
#designer-toolbar-item-command {
display: none;
}
#designer-toolbar-item-extension {
display: none;
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.ecarriou.systemdesignerios",
"version": "5.3.1",
"version": "5.4.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion www/cache.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// System Designer - Copyright 2024 Erwan Carriou
// Licensed under the Apache License, Version 2.0 (the "License")

const version = 'v5.3.0'
const version = 'v5.4.0'

const clearCaches = () => {
return caches.keys().then((keys) => {
Expand Down
2 changes: 1 addition & 1 deletion www/scripts/editor-behavior.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion www/scripts/editor-component.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion www/scripts/editor-model.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion www/scripts/editor-schema.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion www/scripts/editor-system.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion www/scripts/editor-type.js

Large diffs are not rendered by default.

6 changes: 0 additions & 6 deletions www/scripts/mobile.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@
* limitations under the License.
*/

document.addEventListener('deviceready', onDeviceReady, false)

function onDeviceReady() {
StatusBar.hide()
}

document.addEventListener('menubutton', onMenuButton, false)
function onMenuButton() {
if (document.location.href.indexOf('/app/') !== -1) {
Expand Down
2 changes: 1 addition & 1 deletion www/scripts/system-designer.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion www/styles/mobile.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ html {
body {
background-color: transparent!important;
}
span.glyphicon.glyphicon-menu-left {

span.glyphicon.glyphicon-menu-left,
span.glyphicon.glyphicon-menu-right {
color:#337ab7!important;
}

Expand Down