Skip to content

Commit 91c9e3f

Browse files
dsward2dsward2
dsward2
authored and
dsward2
committed
Added new markdown file: RELEASE-NOTES.md, containing release notes for macSVG v1.1.
1 parent c4ca5fe commit 91c9e3f

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed

RELEASE-NOTES.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# macSVG Release Notes
2+
3+
macSVG v1.1 - October 24, 2017
4+
5+
Several improvements and bug fixes were made for using the "transform" attribute for translate, scale, rotate, skewX and skewY operations. The interactive controls in the web view now work better with nested transformations using <g> group elements. Although a transform attribute can contain multiple operations, the controls may work better if the transform operations are divided into nested groups.
6+
7+
A new center of rotation control handle is now displayed in the web view while editing a rotate transform. The new handle can be dragged in the web view to change the center of rotation point, and the other handles can be dragged to rotate around the center of rotation point.
8+
9+
A new item is added to the Plug-Ins menu called "Path Text Generator". The user can enter a line of text and select a font, then click a button to generate a <path> element to draw the shape of the text. User settings are available for font size and origin offset. Two options are available for generating the path: 1) the whole string converted to a single path element, or 2) each character in the string is converted as a separate path element.
10+
11+
12+
<hr>
13+
14+
macSVG - [http://macsvg.org](http://macsvg.org)
15+
16+
macSVG project - [https://github.com/dsward2/macsvg](https://github.com/dsward2/macsvg)
17+
18+
Copyright (c) 2016-2017 by ArkPhone, LLC.
19+
20+
All trademarks are the property of their respective holders.
21+

macSVG.xcodeproj/project.pbxproj

+4
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@
8888
0E71453B142C0CD4002F8E1F /* VerticalRulerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E71453A142C0CD4002F8E1F /* VerticalRulerView.m */; };
8989
0E714560142C2FB3002F8E1F /* PanelView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E71455F142C2FB3002F8E1F /* PanelView.m */; };
9090
0E7145A1142C302C002F8E1F /* GradientView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E7145A0142C302B002F8E1F /* GradientView.m */; };
91+
0E753F511F9FD5660050AAB6 /* RELEASE-NOTES.md in Sources */ = {isa = PBXBuildFile; fileRef = 0E753F501F9FD5660050AAB6 /* RELEASE-NOTES.md */; };
9192
0E770CC21D7E395F000401C9 /* MacSVGPlugin.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0E770CC11D7E395F000401C9 /* MacSVGPlugin.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
9293
0E770CDC1D7FCE52000401C9 /* SVGPolylineEditor.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E770CDB1D7FCE52000401C9 /* SVGPolylineEditor.m */; };
9394
0E7967CA14A425080070B099 /* TimelineLabelsTableViewDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E7967C914A425080070B099 /* TimelineLabelsTableViewDelegate.m */; };
@@ -2272,6 +2273,7 @@
22722273
0E71455F142C2FB3002F8E1F /* PanelView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = PanelView.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
22732274
0E71459F142C302B002F8E1F /* GradientView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GradientView.h; sourceTree = "<group>"; };
22742275
0E7145A0142C302B002F8E1F /* GradientView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GradientView.m; sourceTree = "<group>"; };
2276+
0E753F501F9FD5660050AAB6 /* RELEASE-NOTES.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = "RELEASE-NOTES.md"; sourceTree = "<group>"; };
22752277
0E770CC11D7E395F000401C9 /* MacSVGPlugin.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MacSVGPlugin.framework; sourceTree = BUILT_PRODUCTS_DIR; };
22762278
0E770CDA1D7FCE52000401C9 /* SVGPolylineEditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVGPolylineEditor.h; sourceTree = "<group>"; };
22772279
0E770CDB1D7FCE52000401C9 /* SVGPolylineEditor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = SVGPolylineEditor.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
@@ -3874,6 +3876,7 @@
38743876
isa = PBXGroup;
38753877
children = (
38763878
0ECCAFDE1DB4A6A0001A6085 /* README.md */,
3879+
0E753F501F9FD5660050AAB6 /* RELEASE-NOTES.md */,
38773880
0ECCB0231DB51B57001A6085 /* README_images */,
38783881
0ECCB0211DB4B60A001A6085 /* LICENSE */,
38793882
0EB6638214286398003723F0 /* macSVG */,
@@ -4668,6 +4671,7 @@
46684671
0EDD0C1914A1A44B00430652 /* SynchroScrollView.m in Sources */,
46694672
0E9637A7178689440011861A /* HTTPDataResponse.m in Sources */,
46704673
0E82B1351D730A2E005D0634 /* DDTTYLogger.m in Sources */,
4674+
0E753F511F9FD5660050AAB6 /* RELEASE-NOTES.md in Sources */,
46714675
0EDD0C1D14A1E6F000430652 /* FlippedView.m in Sources */,
46724676
0E7967CA14A425080070B099 /* TimelineLabelsTableViewDelegate.m in Sources */,
46734677
0E4EA2E41D40721F00C5145C /* SVGHelpManager.m in Sources */,

macSVG/MacSVG-Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<key>CFBundleSignature</key>
106106
<string>????</string>
107107
<key>CFBundleVersion</key>
108-
<string>1282</string>
108+
<string>1283</string>
109109
<key>LSApplicationCategoryType</key>
110110
<string>public.app-category.graphics-design</string>
111111
<key>LSMinimumSystemVersion</key>

0 commit comments

Comments
 (0)