├── .gitignore ├── LICENSE ├── README.md ├── SwiftNote.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SwiftNote ├── AppDelegate.swift ├── Base.lproj │ └── Main.storyboard ├── Constants.swift ├── CoreDataProvider.swift ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── Info.plist ├── Note.swift ├── NoteDetailViewController.swift ├── NoteProtocol.swift ├── NotesTableViewCell.swift ├── NotesTableViewController.swift ├── SwiftNote.entitlements ├── SwiftNote.xcdatamodeld │ ├── .xccurrentversion │ └── SwiftNote.xcdatamodel │ │ └── contents └── SwiftNoteNavigationController.swift ├── SwiftNoteTests ├── Info.plist └── SwiftNoteTests.swift └── SwiftNoteTodayWidget ├── Info.plist ├── MainInterface.storyboard ├── TodayTableViewCell.swift ├── TodayViewController.swift └── com.appbrewllc.SwiftNote.SwiftNoteTodayWidget.entitlements /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/README.md -------------------------------------------------------------------------------- /SwiftNote.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftNote.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftNote/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/AppDelegate.swift -------------------------------------------------------------------------------- /SwiftNote/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SwiftNote/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/Constants.swift -------------------------------------------------------------------------------- /SwiftNote/CoreDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/CoreDataProvider.swift -------------------------------------------------------------------------------- /SwiftNote/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftNote/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /SwiftNote/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/Info.plist -------------------------------------------------------------------------------- /SwiftNote/Note.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/Note.swift -------------------------------------------------------------------------------- /SwiftNote/NoteDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/NoteDetailViewController.swift -------------------------------------------------------------------------------- /SwiftNote/NoteProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/NoteProtocol.swift -------------------------------------------------------------------------------- /SwiftNote/NotesTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/NotesTableViewCell.swift -------------------------------------------------------------------------------- /SwiftNote/NotesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/NotesTableViewController.swift -------------------------------------------------------------------------------- /SwiftNote/SwiftNote.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/SwiftNote.entitlements -------------------------------------------------------------------------------- /SwiftNote/SwiftNote.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/SwiftNote.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /SwiftNote/SwiftNote.xcdatamodeld/SwiftNote.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/SwiftNote.xcdatamodeld/SwiftNote.xcdatamodel/contents -------------------------------------------------------------------------------- /SwiftNote/SwiftNoteNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNote/SwiftNoteNavigationController.swift -------------------------------------------------------------------------------- /SwiftNoteTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNoteTests/Info.plist -------------------------------------------------------------------------------- /SwiftNoteTests/SwiftNoteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNoteTests/SwiftNoteTests.swift -------------------------------------------------------------------------------- /SwiftNoteTodayWidget/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNoteTodayWidget/Info.plist -------------------------------------------------------------------------------- /SwiftNoteTodayWidget/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNoteTodayWidget/MainInterface.storyboard -------------------------------------------------------------------------------- /SwiftNoteTodayWidget/TodayTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNoteTodayWidget/TodayTableViewCell.swift -------------------------------------------------------------------------------- /SwiftNoteTodayWidget/TodayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNoteTodayWidget/TodayViewController.swift -------------------------------------------------------------------------------- /SwiftNoteTodayWidget/com.appbrewllc.SwiftNote.SwiftNoteTodayWidget.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mslathrop/SwiftNote/HEAD/SwiftNoteTodayWidget/com.appbrewllc.SwiftNote.SwiftNoteTodayWidget.entitlements --------------------------------------------------------------------------------