Skip to content

Commit ff41d26

Browse files
committed
Update for 1.5.11 release
1 parent aab8eef commit ff41d26

File tree

6 files changed

+20
-10
lines changed

6 files changed

+20
-10
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## [1.5.11](https://github.com/nicklockwood/ShapeScript/releases/tag/1.5.11) (2022-11-06)
4+
5+
- Fixed source code view on iOS
6+
- Fixed loading of external iCloud assets when file has not been downloaded
7+
- ShapeScript now monitors changes to external textures, fonts and imports on iOS
8+
- Original topology for imported models is now preserved, instead of being triangulated
9+
- Improved error messaging for file imports
10+
- Bumped Euclid to version 0.6.2
11+
312
## [1.5.10](https://github.com/nicklockwood/ShapeScript/releases/tag/1.5.10) (2022-10-29)
413

514
- Improved documentation for strings and trigonometry functions

ShapeScript.podspec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ShapeScript",
3-
"version": "1.5.10",
3+
"version": "1.5.11",
44
"license": {
55
"type": "MIT",
66
"file": "LICENSE.md"
@@ -10,7 +10,7 @@
1010
"authors": "Nick Lockwood",
1111
"source": {
1212
"git": "https://github.com/nicklockwood/ShapeScript.git",
13-
"tag": "1.5.10"
13+
"tag": "1.5.11"
1414
},
1515
"source_files": ["ShapeScript", "LRUCache/Sources", "SVGPath/Sources"],
1616
"requires_arc": true,

ShapeScript.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,7 @@
11151115
"$(inherited)",
11161116
"@executable_path/../Frameworks",
11171117
);
1118-
MARKETING_VERSION = 1.5.10;
1118+
MARKETING_VERSION = 1.5.11;
11191119
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
11201120
PRODUCT_MODULE_NAME = Viewer;
11211121
PRODUCT_NAME = "ShapeScript Viewer";
@@ -1143,7 +1143,7 @@
11431143
"$(inherited)",
11441144
"@executable_path/../Frameworks",
11451145
);
1146-
MARKETING_VERSION = 1.5.10;
1146+
MARKETING_VERSION = 1.5.11;
11471147
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
11481148
PRODUCT_MODULE_NAME = Viewer;
11491149
PRODUCT_NAME = "ShapeScript Viewer";
@@ -1173,7 +1173,7 @@
11731173
"$(inherited)",
11741174
"@executable_path/Frameworks",
11751175
);
1176-
MARKETING_VERSION = 1.5.10;
1176+
MARKETING_VERSION = 1.5.11;
11771177
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
11781178
PRODUCT_MODULE_NAME = Viewer;
11791179
PRODUCT_NAME = ShapeScript;
@@ -1205,7 +1205,7 @@
12051205
"$(inherited)",
12061206
"@executable_path/Frameworks",
12071207
);
1208-
MARKETING_VERSION = 1.5.10;
1208+
MARKETING_VERSION = 1.5.11;
12091209
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
12101210
PRODUCT_MODULE_NAME = Viewer;
12111211
PRODUCT_NAME = ShapeScript;
@@ -1369,7 +1369,7 @@
13691369
"@executable_path/../Frameworks",
13701370
"@loader_path/Frameworks",
13711371
);
1372-
MARKETING_VERSION = 1.5.10;
1372+
MARKETING_VERSION = 1.5.11;
13731373
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
13741374
PRODUCT_NAME = ShapeScript;
13751375
SKIP_INSTALL = YES;
@@ -1400,7 +1400,7 @@
14001400
"@executable_path/../Frameworks",
14011401
"@loader_path/Frameworks",
14021402
);
1403-
MARKETING_VERSION = 1.5.10;
1403+
MARKETING_VERSION = 1.5.11;
14041404
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
14051405
PRODUCT_NAME = ShapeScript;
14061406
SKIP_INSTALL = YES;

ShapeScript/Interpreter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111

1212
// MARK: Public interface
1313

14-
public let version = "1.5.10"
14+
public let version = "1.5.11"
1515

1616
public protocol EvaluationDelegate: AnyObject {
1717
func resolveURL(for path: String) -> URL

Viewer/Mac/DocumentViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class DocumentViewController: NSViewController {
8080
}
8181
}
8282

83-
func dismissModals(animated: Bool = true) {
83+
func dismissModals(animated _: Bool = true) {
8484
// Does nothing on macOS
8585
}
8686

docs/1.5.11

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.5.10

0 commit comments

Comments
 (0)