Skip to content

Commit 0644b94

Browse files
committed
Update for 1.3.1 release
1 parent 19c5bf8 commit 0644b94

3 files changed

Lines changed: 25 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## [1.3.1](https://github.com/nicklockwood/ShapeScript/releases/tag/1.3.1) (2021-09-07)
2+
3+
- Disabled axes by default and added instructions for enabling to help
4+
- Added ordinal members for accessing arbitrary tuple elements
5+
- Fixed rendering bug when using negative scale values
6+
- Fixed bug where functions were able to access local variables of the caller
7+
- Fixed dot operator (member lookup) chaining
8+
- Added documentation for tuples and structured data access
9+
- Bumped Euclid to 0.5.11, which includes several performance optimizations
10+
- Fixed issue where console would not clear correctly when reloading
11+
- Fixed hint message when missing closing brace
12+
- Added `colour` and `grey` as aliases for `color` and `gray`
13+
- Made stroke line width proportional to the scene size
14+
- Improved logic for default camera zoom level
15+
- Increase antialiasing quality in viewer
16+
- Updated screenshots and fixed bugs in help examples
17+
118
## [1.3.0](https://github.com/nicklockwood/ShapeScript/releases/tag/1.3.0) (2021-08-31)
219

320
- Added new standalone range expression with optional `step` value

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.3.0",
3+
"version": "1.3.1",
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.3.0"
13+
"tag": "1.3.1"
1414
},
1515
"source_files": ["ShapeScript", "LRUCache/Sources"],
1616
"requires_arc": true,

ShapeScript.xcodeproj/project.pbxproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,9 @@
276276
01BFB39721425C8500E47A7C /* Products */,
277277
019551B321B5899100292771 /* Frameworks */,
278278
);
279+
indentWidth = 4;
279280
sourceTree = "<group>";
281+
tabWidth = 4;
280282
};
281283
01BFB39721425C8500E47A7C /* Products */ = {
282284
isa = PBXGroup;
@@ -711,7 +713,7 @@
711713
"$(inherited)",
712714
"@executable_path/../Frameworks",
713715
);
714-
MARKETING_VERSION = 1.3.0;
716+
MARKETING_VERSION = 1.3.1;
715717
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
716718
PRODUCT_MODULE_NAME = Viewer;
717719
PRODUCT_NAME = "ShapeScript Viewer";
@@ -738,7 +740,7 @@
738740
"$(inherited)",
739741
"@executable_path/../Frameworks",
740742
);
741-
MARKETING_VERSION = 1.3.0;
743+
MARKETING_VERSION = 1.3.1;
742744
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptViewer;
743745
PRODUCT_MODULE_NAME = Viewer;
744746
PRODUCT_NAME = "ShapeScript Viewer";
@@ -890,7 +892,7 @@
890892
"@executable_path/../Frameworks",
891893
"@loader_path/Frameworks",
892894
);
893-
MARKETING_VERSION = 1.3.0;
895+
MARKETING_VERSION = 1.3.1;
894896
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
895897
PRODUCT_NAME = ShapeScript;
896898
SKIP_INSTALL = YES;
@@ -919,7 +921,7 @@
919921
"@executable_path/../Frameworks",
920922
"@loader_path/Frameworks",
921923
);
922-
MARKETING_VERSION = 1.3.0;
924+
MARKETING_VERSION = 1.3.1;
923925
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.ShapeScriptLib;
924926
PRODUCT_NAME = ShapeScript;
925927
SKIP_INSTALL = YES;

0 commit comments

Comments
 (0)