Skip to content

Commit d535a62

Browse files
authored
Merge pull request #3 from design-first/version/5.3.0
chore: bump version 5.3.0
2 parents a717d14 + 9b2227b commit d535a62

37 files changed

+4900
-4435
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ npm i
1616

1717
## Build for iOS
1818

19+
Install [CocoaPods](https://cocoapods.org):
20+
21+
```sh
22+
brew install cocoapods
23+
```
24+
1925
Add iOS platform:
2026

2127
```sh
@@ -44,7 +50,7 @@ npx cordova build android
4450

4551
## License
4652

47-
Copyright 2022 Erwan Carriou
53+
Copyright 2024 Erwan Carriou
4854

4955
Licensed under the Apache License, Version 2.0 (the "License");
5056
you may not use this file except in compliance with the License.

config.xml

Lines changed: 17 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,27 @@
1-
<?xml version='1.0' encoding='utf-8'?>
2-
<widget android-versionCode="51000" id="com.ecarriou.systemdesignerios" version="5.1.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
3-
<name>System Designer</name>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<widget xmlns="http://www.w3.org/ns/widgets"
3+
xmlns:cdv="http://cordova.apache.org/ns/1.0"
4+
id="com.ecarriou.systemdesignerios"
5+
version="5.3.0">
6+
<name>System Designer</name>
47
<description>
58
A low-code development platform for creating systems
69
</description>
7-
<author email="[email protected]" href="https://designfirst.io/systemdesigner/">System Designer</author>
8-
<preference name="deployment-target" value="13.4" />
9-
<preference name="android-minSdkVersion" value="23" />
10-
<feature name="CDVWKWebViewEngine">
11-
<param name="ios-package" value="CDVWKWebViewEngine" />
12-
</feature>
13-
<feature name="StatusBar">
14-
<param name="ios-package" onload="true" value="CDVStatusBar" />
15-
</feature>
16-
<preference name="CordovaWebViewEngine" value="CDVWKWebViewEngine" />
17-
<preference name="orientation" value="landscape" />
10+
11+
<content src="index.html" />
12+
<icon src="icon.png" />
13+
1814
<preference name="DisallowOverscroll" value="true" />
1915
<preference name="BackupWebStorage" value="local" />
2016
<preference name="SplashScreenDelay" value="0" />
2117
<preference name="FadeSplashScreenDuration" value="500" />
22-
<content src="index.html" />
18+
19+
<!-- Security Related Settings -->
2320
<access origin="*" />
2421
<allow-intent href="http://*/*" />
2522
<allow-intent href="https://*/*" />
26-
<allow-intent href="tel:*" />
27-
<allow-intent href="sms:*" />
28-
<allow-intent href="mailto:*" />
29-
<allow-intent href="geo:*" />
30-
<platform name="ios">
31-
<allow-intent href="itms:*" />
32-
<allow-intent href="itms-apps:*" />
33-
<preference name="KeyboardDisplayRequiresUserAction" value="false" />
34-
</platform>
35-
<platform name="android">
36-
<preference name="Fullscreen" value="false" />
37-
</platform>
38-
</widget>
23+
24+
<!-- Platform Configs & Platform Overriding Configs -->
25+
<platform name="android"></platform>
26+
<platform name="ios"></platform>
27+
</widget>

icon-android.png

-43.8 KB
Binary file not shown.

icon-ios.png

-8.13 KB
Binary file not shown.

icon.png

40.7 KB
Loading

merges/android/scripts/mobile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* https://designfirst.io/systemdesigner/
55
*
6-
* Copyright 2022 Erwan Carriou
6+
* Copyright 2024 Erwan Carriou
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");
99
* you may not use this file except in compliance with the License.

merges/android/styles/mobile.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* https://designfirst.io/systemdesigner/
55
*
6-
* Copyright 2022 Erwan Carriou
6+
* Copyright 2024 Erwan Carriou
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");
99
* you may not use this file except in compliance with the License.

merges/browser/scripts/mobile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* https://designfirst.io/systemdesigner/
55
*
6-
* Copyright 2022 Erwan Carriou
6+
* Copyright 2024 Erwan Carriou
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");
99
* you may not use this file except in compliance with the License.

merges/browser/styles/mobile.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* https://designfirst.io/systemdesigner/
55
*
6-
* Copyright 2022 Erwan Carriou
6+
* Copyright 2024 Erwan Carriou
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");
99
* you may not use this file except in compliance with the License.

merges/ios/scripts/mobile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* https://designfirst.io/systemdesigner/
55
*
6-
* Copyright 2022 Erwan Carriou
6+
* Copyright 2024 Erwan Carriou
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");
99
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)