Skip to content

Commit 44358b3

Browse files
author
ContentSync
authored
Merge pull request #58 from contentsync/version-3.0.3
Updates .gitignore to include missing framework files.
2 parents 29903ea + e2bded1 commit 44358b3

File tree

84 files changed

+659
-17
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+659
-17
lines changed

.gitignore

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,6 @@ src/custom-presets
1010

1111
src/frameworks/ContentSync.framework/ContentSync.build
1212

13-
Contents/Sketch/frameworks/ContentSync.framework/ContentSync.js
14-
Contents/Sketch/frameworks/ContentSync.framework/Images.xcassets/
15-
Contents/Sketch/frameworks/ContentSync.framework/Versions/
16-
17-
SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/ContentSync.js
18-
SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/Images.xcassets/
19-
SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/Versions/
20-
2113
release.sh
2214

2315

README.md

Lines changed: 2 additions & 2 deletions
Binary file not shown.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
//
2+
// ContentSync.h
3+
// ContentSync
4+
//
5+
// Created by David Brody on 2/26/17.
6+
// Copyright © 2017 Syncify. All rights reserved.
7+
//
8+
9+
#import <Cocoa/Cocoa.h>
10+
11+
//! Project version number for ContentSync.
12+
FOUNDATION_EXPORT double ContentSyncVersionNumber;
13+
14+
//! Project version string for ContentSync.
15+
FOUNDATION_EXPORT const unsigned char ContentSyncVersionString[];
16+
17+
#import "ContentSyncPanelManager.h"
18+
19+
// In this header, you should import all the public headers of your framework using statements like #import <ContentSync/PublicHeader.h>
20+
21+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
//
2+
// ContentSyncPanelManager.h
3+
// ContentSync
4+
//
5+
// Created by David Brody on 2/26/17.
6+
// Copyright © 2017 Syncify. All rights reserved.
7+
//
8+
9+
#import "Globals.h"
10+
#import "CSDocumentState.h"
11+
#import "CSLogger.h"
12+
#import "NotificationListeners/MSDocumentWindowNotificationListener.h"
13+
#import "NotificationListeners/AllNotificationsListener.h"
14+
15+
NSString* const globalnotificationID;
16+
17+
@interface ContentSyncPanelManager : NSObject
18+
19+
+ (ContentSyncPanelManager*)sharedManager;
20+
21+
- (NSString*)toggleContentSync;
22+
- (NSString*)loadContentSync;
23+
- (NSString*)unloadContentSync;
24+
25+
- (NSString*)actionPush;
26+
- (NSString*)actionPull;
27+
28+
@end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
framework module ContentSync {
2+
umbrella header "ContentSync.h"
3+
4+
export *
5+
module * { export * }
6+
}

0 commit comments

Comments
 (0)