├── .gitignore ├── LICENSE ├── README.md ├── XTrello.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── XTrello ├── API │ ├── XTTrelloWrapper.h │ └── XTTrelloWrapper.m ├── Categories and Subclasses │ ├── NSArray+trelloAdditions.h │ ├── NSArray+trelloAdditions.m │ ├── NSColor+Hex.h │ ├── NSColor+Hex.m │ ├── NSDate+trelloAdditions.h │ ├── NSDate+trelloAdditions.m │ ├── NSDictionary+trelloAdditions.h │ ├── NSDictionary+trelloAdditions.m │ ├── NSMenuItem+boardDict.h │ ├── NSMenuItem+boardDict.m │ ├── NSString+trelloAdditions.h │ ├── NSString+trelloAdditions.m │ ├── NSView+trelloAdditions.h │ ├── NSView+trelloAdditions.m │ ├── XTMenuItem.h │ ├── XTMenuItem.m │ ├── XTTableView.h │ └── XTTableView.m ├── NSData+Split.h ├── NSData+Split.m ├── PureLayout │ ├── ALView+PureLayout.h │ ├── ALView+PureLayout.m │ ├── NSArray+PureLayout.h │ ├── NSArray+PureLayout.m │ ├── NSLayoutConstraint+PureLayout.h │ ├── NSLayoutConstraint+PureLayout.m │ ├── PureLayout+Internal.h │ ├── PureLayout.h │ └── PureLayoutDefines.h ├── View Classes │ ├── XTTagView.h │ ├── XTTagView.m │ ├── XTTagViewController.h │ ├── XTTagViewController.m │ ├── XTTrelloCardView.h │ └── XTTrelloCardView.m ├── XTModel.h ├── XTModel.m ├── XTProjectSetting.h ├── XTProjectSetting.m ├── XTWindowController.h ├── XTWindowController.m ├── XTWindowController.xib ├── XTrello-Info.plist ├── XTrello-Prefix.pch ├── XTrello.h ├── XTrello.m ├── XTrelloItem.h ├── XTrelloItem.m └── en.lproj │ └── InfoPlist.strings ├── add_labels.png ├── browser_window.png └── create_source_card.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/README.md -------------------------------------------------------------------------------- /XTrello.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XTrello.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XTrello/API/XTTrelloWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/API/XTTrelloWrapper.h -------------------------------------------------------------------------------- /XTrello/API/XTTrelloWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/API/XTTrelloWrapper.m -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSArray+trelloAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSArray+trelloAdditions.h -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSArray+trelloAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSArray+trelloAdditions.m -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSColor+Hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSColor+Hex.h -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSColor+Hex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSColor+Hex.m -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSDate+trelloAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSDate+trelloAdditions.h -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSDate+trelloAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSDate+trelloAdditions.m -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSDictionary+trelloAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSDictionary+trelloAdditions.h -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSDictionary+trelloAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSDictionary+trelloAdditions.m -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSMenuItem+boardDict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSMenuItem+boardDict.h -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSMenuItem+boardDict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSMenuItem+boardDict.m -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSString+trelloAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSString+trelloAdditions.h -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSString+trelloAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSString+trelloAdditions.m -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSView+trelloAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSView+trelloAdditions.h -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/NSView+trelloAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/NSView+trelloAdditions.m -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/XTMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/XTMenuItem.h -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/XTMenuItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/XTMenuItem.m -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/XTTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/XTTableView.h -------------------------------------------------------------------------------- /XTrello/Categories and Subclasses/XTTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/Categories and Subclasses/XTTableView.m -------------------------------------------------------------------------------- /XTrello/NSData+Split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/NSData+Split.h -------------------------------------------------------------------------------- /XTrello/NSData+Split.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/NSData+Split.m -------------------------------------------------------------------------------- /XTrello/PureLayout/ALView+PureLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/PureLayout/ALView+PureLayout.h -------------------------------------------------------------------------------- /XTrello/PureLayout/ALView+PureLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/PureLayout/ALView+PureLayout.m -------------------------------------------------------------------------------- /XTrello/PureLayout/NSArray+PureLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/PureLayout/NSArray+PureLayout.h -------------------------------------------------------------------------------- /XTrello/PureLayout/NSArray+PureLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/PureLayout/NSArray+PureLayout.m -------------------------------------------------------------------------------- /XTrello/PureLayout/NSLayoutConstraint+PureLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/PureLayout/NSLayoutConstraint+PureLayout.h -------------------------------------------------------------------------------- /XTrello/PureLayout/NSLayoutConstraint+PureLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/PureLayout/NSLayoutConstraint+PureLayout.m -------------------------------------------------------------------------------- /XTrello/PureLayout/PureLayout+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/PureLayout/PureLayout+Internal.h -------------------------------------------------------------------------------- /XTrello/PureLayout/PureLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/PureLayout/PureLayout.h -------------------------------------------------------------------------------- /XTrello/PureLayout/PureLayoutDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/PureLayout/PureLayoutDefines.h -------------------------------------------------------------------------------- /XTrello/View Classes/XTTagView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/View Classes/XTTagView.h -------------------------------------------------------------------------------- /XTrello/View Classes/XTTagView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/View Classes/XTTagView.m -------------------------------------------------------------------------------- /XTrello/View Classes/XTTagViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/View Classes/XTTagViewController.h -------------------------------------------------------------------------------- /XTrello/View Classes/XTTagViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/View Classes/XTTagViewController.m -------------------------------------------------------------------------------- /XTrello/View Classes/XTTrelloCardView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/View Classes/XTTrelloCardView.h -------------------------------------------------------------------------------- /XTrello/View Classes/XTTrelloCardView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/View Classes/XTTrelloCardView.m -------------------------------------------------------------------------------- /XTrello/XTModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/XTModel.h -------------------------------------------------------------------------------- /XTrello/XTModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/XTModel.m -------------------------------------------------------------------------------- /XTrello/XTProjectSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/XTProjectSetting.h -------------------------------------------------------------------------------- /XTrello/XTProjectSetting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/XTProjectSetting.m -------------------------------------------------------------------------------- /XTrello/XTWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/XTWindowController.h -------------------------------------------------------------------------------- /XTrello/XTWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/XTWindowController.m -------------------------------------------------------------------------------- /XTrello/XTWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/XTWindowController.xib -------------------------------------------------------------------------------- /XTrello/XTrello-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/XTrello-Info.plist -------------------------------------------------------------------------------- /XTrello/XTrello-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/XTrello-Prefix.pch -------------------------------------------------------------------------------- /XTrello/XTrello.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/XTrello.h -------------------------------------------------------------------------------- /XTrello/XTrello.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/XTrello.m -------------------------------------------------------------------------------- /XTrello/XTrelloItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/XTrelloItem.h -------------------------------------------------------------------------------- /XTrello/XTrelloItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/XTrello/XTrelloItem.m -------------------------------------------------------------------------------- /XTrello/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /add_labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/add_labels.png -------------------------------------------------------------------------------- /browser_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/browser_window.png -------------------------------------------------------------------------------- /create_source_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lechium/XTrello/HEAD/create_source_card.png --------------------------------------------------------------------------------