Skip to content
Open
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
4 changes: 2 additions & 2 deletions GlyphsSource/SpeedPunk/SpeedPunk.m
Original file line number Diff line number Diff line change
Expand Up @@ -490,15 +490,15 @@ - (NSArray *)_calcCurvaturesQuadratic:(NSPoint)p1 p2:(NSPoint)p2 p3:(NSPoint)p3

- (void)calcCurvatures:(GSPathSegment *)segment steps:(int)steps {
NSArray *curvatureSets;
if( segment.type == CURVE) {
if (segment.type == CURVE) {
// curvatureSets = self._calcCurvaturesCubic(segment[0], segment[1], segment[2], segment[3], steps)
curvatureSets = [self _calcCurvaturesCubic:segment->elements[0] p2:segment->elements[1] p3:segment->elements[2] p4:segment->elements[3] steps:steps];
}
else if (segment.type == QCURVE) {
if (segment->count == 3) {
curvatureSets = [self _calcCurvaturesQuadratic:segment->elements[0] p2:segment->elements[1] p3:segment->elements[2] steps:steps];
}
else {
else if (segment->count > 3) {
curvatureSets = [NSMutableArray new];
NSPoint prevOn = segment->elements[0];
steps /= segment->count - 2;
Expand Down
6 changes: 3 additions & 3 deletions GlyphsSource/SpeedPunk/common.xcconfig
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// common

MARKETING_VERSION = 1.3
CURRENT_PROJECT_VERSION = 20
MARKETING_VERSION = 1.3.1
CURRENT_PROJECT_VERSION = 21

HUMAN_READABLE_COPYRIGHT = © 2023 Yanone
HUMAN_READABLE_COPYRIGHT = © 2025 Yanone

PRODUCT_BUNDLE_IDENTIFIER = de.Yanone.${PRODUCT_NAME:rfc1034identifier}

Expand Down
6 changes: 3 additions & 3 deletions SpeedPunk.glyphsReporter/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>21G726</string>
<string>22H420</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
Expand All @@ -17,13 +17,13 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.3</string>
<string>1.3.1</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>20</string>
<string>21</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
Expand Down
Binary file modified SpeedPunk.glyphsReporter/Contents/MacOS/SpeedPunk
Binary file not shown.