-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from brightdigit/release/v2.0.0-alpha1
Release/v2.0.0 alpha1
- Loading branch information
Showing
1,238 changed files
with
254,540 additions
and
9,109 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.3.7 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
excluded: # paths to ignore during linting. Takes precedence over `included`. | ||
- Pods | ||
- __archive | ||
- examples | ||
- frameworks/speculid/Models/VCS.swift |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,55 @@ | ||
language: objective-c | ||
env: | ||
global: | ||
- secure: hVl7EFbdJhUsIzMXOZ0BESzmcMwro5fSHoFD33xCoWF+4Ov5TtiW5iy02Z4096fbgziD5SBdNG/4y87Z0kqRPPJgcGOObfwE3VWkIYj6dIHaXXnGlmieTEMRkq4a4GOjXJFpJODkKPmMSL1NLqdxUYFmn3rvCyBEQjiRQzygTj4= | ||
branches: | ||
except: | ||
- develop | ||
- gh-pages | ||
osx_image: xcode8.2 | ||
xcode_workspace: speculid.xcworkspace # path to your xcodeproj folder | ||
xcode_scheme: Speculid | ||
except: | ||
- develop | ||
- gh-pages | ||
osx_image: xcode9.4 | ||
xcode_workspace: speculid.xcworkspace | ||
xcode_scheme: Speculid-Mac-App | ||
before_install: | ||
- brew update | ||
- ./brew-install homebrew/gui/inkscape | ||
- ./brew-install imagemagick | ||
- rvm use $RVM_RUBY_VERSION | ||
install: bundle install --without=documentation | ||
script: | ||
- xcodebuild -workspace speculid.xcworkspace -scheme "Speculid Application" -derivedDataPath ./build build -configuration "Release" | ||
- diff examples/shasum <(./shasum.sh) | ||
- xcodebuild -workspace speculid.xcworkspace -scheme Speculid test | ||
after_success: | ||
- slather | ||
- bash <(curl -s https://codecov.io/bash) -f cobertura.xml | ||
- bundler install | ||
- pod repo update | ||
- pod install | ||
script: | ||
- "./scripts/decrypt-certs.sh" | ||
- "./scripts/build-keychain.sh" | ||
- xcodebuild test -workspace speculid.xcworkspace -scheme "Speculid" | ||
- xcodebuild archive -workspace speculid.xcworkspace -scheme "Speculid-Mac-App" -configuration | ||
Release -derivedDataPath ./build -archivePath ./build/Products/Speculid.xcarchive | ||
- xcodebuild -exportArchive -archivePath ./build/Products/Speculid.xcarchive -exportOptionsPlist | ||
./exportOptions.plist -exportPath ./build/Products/App | ||
- ditto -c -k --sequesterRsrc --keepParent ./build/Products/App/Speculid.app build/Speculid.zip | ||
- open Build/Products/App/Speculid.app | ||
- osascript -e 'tell application "Speculid" to quit' | ||
- diff examples/shasum <(./scripts/shasum.sh) | ||
before_deploy: | ||
- git config --global user.email "[email protected]" | ||
- git config --global user.name "Travis CI" | ||
- export GIT_TAG=v`./bin/package.sh ./build/Products/App/Speculid.app`.$TRAVIS_BUILD_NUMBER-dev | ||
- git tag $GIT_TAG -a -m "Generated tag from TravisCI for build $TRAVIS_BUILD_NUMBER" | ||
- git push -q https://${TRAVIS_SECURE_TOKEN_NAME}@github.com/brightdigit/speculid | ||
--tags | ||
deploy: | ||
provider: releases | ||
prerelease: true | ||
api_key: | ||
secure: kB1IJxdHO6n3vTU6qR4klgASWhMzZmiiKYuKppgjZ5zq/dwTma8Ls3PabZcCoo8Bb+tZVXrohLweKwqP+IjH+oydV+9qt4oh2Q6po6gS+Qj3bTMQ+KrZYc699p32JVASQsRgLkYSUQHFT1wR4R5tlGw3A+tevJFlG56tC2WV1Sw= | ||
file: build/Speculid.zip | ||
skip_cleanup: true | ||
on: | ||
tags: false | ||
all_branches: true | ||
after_failure: | ||
- ./shasum.sh | ||
- find "examples/Assets/." -type f \( -iname \*.icns -o -iname \*.png -o -iname \*.pdf \) -print0 | sort -z | xargs -0 shasum -a 512 | ||
- "./scripts/shasum.sh" | ||
- find "examples/Assets/." -type f \( -iname \*.icns -o -iname \*.png -o -iname \*.pdf | ||
\) -print0 | sort -z | xargs -0 shasum -a 512 | ||
notifications: | ||
webhooks: | ||
urls: | ||
- https://webhooks.gitter.im/e/f596466e5c30701b566d | ||
on_success: change # options: [always|never|change] default: always | ||
on_failure: always # options: [always|never|change] default: always | ||
on_start: never # options: [always|never|change] default: always | ||
- https://webhooks.gitter.im/e/f596466e5c30701b566d | ||
on_success: change | ||
on_failure: always | ||
on_start: never |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#include "Pods/Target Support Files/Pods-CairoSVG/Pods-CairoSVG.debug.xcconfig" | ||
#include "CairoSVG.xcconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#include "Pods/Target Support Files/Pods-CairoSVG/Pods-CairoSVG.release.xcconfig" | ||
#include "CairoSVG.xcconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// | ||
// CarioSVG.h | ||
// CarioSVG | ||
// | ||
// Created by Leo Dion on 6/28/18. | ||
// | ||
|
||
#import <Cocoa/Cocoa.h> | ||
|
||
//! Project version number for CarioSVG. | ||
FOUNDATION_EXPORT double CarioSVGVersionNumber; | ||
|
||
//! Project version string for CarioSVG. | ||
FOUNDATION_EXPORT const unsigned char CarioSVGVersionString[]; | ||
|
||
// In this header, you should import all the public headers of your framework using statements like #import <CarioSVG/PublicHeader.h> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// ImageHandleBuilder.h | ||
// CairoSVG | ||
// | ||
// Created by Leo Dion on 6/28/18. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <rsvg.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface ImageHandleBuilder : NSObject | ||
- (RsvgHandle *)rsvgHandleFromURL:(NSURL*) url; | ||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// | ||
// ImageHandleBuilder.m | ||
// CairoSVG | ||
// | ||
// Created by Leo Dion on 6/28/18. | ||
// | ||
|
||
#import "ImageHandleBuilder.h" | ||
//#import "GlibError.h" | ||
|
||
@implementation ImageHandleBuilder | ||
|
||
- (RsvgHandle *)rsvgHandleFromURL:(NSURL*) url{ | ||
GError * gerror = nil; | ||
RsvgHandle * rsvgHandle; | ||
rsvgHandle = rsvg_handle_new_from_file(url.path.UTF8String , &gerror); | ||
|
||
return rsvgHandle; | ||
} | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>$(DEVELOPMENT_LANGUAGE)</string> | ||
<key>CFBundleExecutable</key> | ||
<string>$(EXECUTABLE_NAME)</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>$(PRODUCT_NAME)</string> | ||
<key>CFBundlePackageType</key> | ||
<string>FMWK</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
<key>CFBundleVersion</key> | ||
<string>$(CURRENT_PROJECT_VERSION)</string> | ||
</dict> | ||
</plist> |
Oops, something went wrong.