├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── appstore ├── Kotoba App Store description.md ├── Screenshot-iPad_(7th_generation)-History.png ├── Screenshot-iPad_(7th_generation)-Settings.png ├── Screenshot-iPad_(7th_generation)-Type_A_Word.png ├── Screenshot-iPad_Air_(3rd_generation)-History.png ├── Screenshot-iPad_Air_(3rd_generation)-Settings.png ├── Screenshot-iPad_Air_(3rd_generation)-Type_A_Word.png ├── Screenshot-iPad_Pro_(11-inch)-History.png ├── Screenshot-iPad_Pro_(11-inch)-Settings.png ├── Screenshot-iPad_Pro_(11-inch)-Type_A_Word.png ├── Screenshot-iPad_Pro_(12.9-inch)_(3rd_generation)-History.png ├── Screenshot-iPad_Pro_(12.9-inch)_(3rd_generation)-Settings.png ├── Screenshot-iPad_Pro_(12.9-inch)_(3rd_generation)-Type_A_Word.png ├── Screenshot-iPad_Pro_(9.7-inch)-History.png ├── Screenshot-iPad_Pro_(9.7-inch)-Settings.png ├── Screenshot-iPad_Pro_(9.7-inch)-Type_A_Word.png ├── Screenshot-iPhone_11-History.png ├── Screenshot-iPhone_11-Settings.png ├── Screenshot-iPhone_11-Type_A_Word.png ├── Screenshot-iPhone_11_Pro-History.png ├── Screenshot-iPhone_11_Pro-Settings.png ├── Screenshot-iPhone_11_Pro-Type_A_Word.png ├── Screenshot-iPhone_11_Pro_Max-History.png ├── Screenshot-iPhone_11_Pro_Max-Settings.png ├── Screenshot-iPhone_11_Pro_Max-Type_A_Word.png ├── Screenshot-iPhone_8-History.png ├── Screenshot-iPhone_8-Settings.png ├── Screenshot-iPhone_8-Type_A_Word.png ├── Screenshot-iPhone_8_Plus-History.png ├── Screenshot-iPhone_8_Plus-Settings.png └── Screenshot-iPhone_8_Plus-Type_A_Word.png ├── code ├── .bartycrouch.toml ├── Kotoba.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── Kotoba.xcscheme │ │ └── ShareExtension.xcscheme ├── Kotoba │ ├── AddWord │ │ ├── AddWordView.swift │ │ ├── WordSuggestionsModel.swift │ │ └── WordSuggestionsView.swift │ ├── Alert.swift │ ├── AppDelegate.swift │ ├── BartyCrouch.swift │ ├── Base.lproj │ │ └── Main.storyboard │ ├── CHOCK.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ └── Main.strings │ ├── Chocktuba.swift │ ├── Colors.xcassets │ │ ├── Contents.json │ │ ├── appBackground.colorset │ │ │ └── Contents.json │ │ ├── appBarItemTint.colorset │ │ │ └── Contents.json │ │ ├── appBarText.colorset │ │ │ └── Contents.json │ │ ├── appBarTint.colorset │ │ │ └── Contents.json │ │ ├── appHeader.colorset │ │ │ └── Contents.json │ │ ├── appHeaderText.colorset │ │ │ └── Contents.json │ │ └── appTint.colorset │ │ │ └── Contents.json │ ├── Debug.swift │ ├── DictionaryViewController.swift │ ├── Images.xcassets │ │ ├── AppIcon-red.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-AppStore.png │ │ │ ├── Icon-iPad20.png │ │ │ ├── Icon-iPad20@2x.png │ │ │ ├── Icon-iPad29.png │ │ │ ├── Icon-iPad29@2x.png │ │ │ ├── Icon-iPad40.png │ │ │ ├── Icon-iPad40@2x.png │ │ │ ├── Icon-iPad76.png │ │ │ ├── Icon-iPad76@2x.png │ │ │ ├── Icon-iPad83@2x.png │ │ │ ├── Icon-iPhone20@2x.png │ │ │ ├── Icon-iPhone20@3x.png │ │ │ ├── Icon-iPhone29@2x.png │ │ │ ├── Icon-iPhone29@3x.png │ │ │ ├── Icon-iPhone40@2x.png │ │ │ ├── Icon-iPhone40@3x.png │ │ │ ├── Icon-iPhone60@2x.png │ │ │ └── Icon-iPhone60@3x.png │ │ ├── Book.imageset │ │ │ ├── Contents.json │ │ │ └── book-Book.pdf │ │ ├── CHOCKTUBA.imageset │ │ │ ├── CHOCKTUBA.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage-red.imageset │ │ │ ├── Contents.json │ │ │ └── Default.pdf │ ├── Info.plist │ ├── Kotoba.entitlements │ ├── KotobaNavigationController.swift │ ├── Launch.storyboard │ ├── NSDictionary+Workaround.swift │ ├── Pasteboard.swift │ ├── PasteboardWatcher.swift │ ├── PasteboardWordList.swift │ ├── Preferences.swift │ ├── RoundedView.swift │ ├── SceneDelegate.swift │ ├── SettingsViewController.swift │ ├── UIViewController+Dictionary.swift │ ├── Word.swift │ ├── WordListDataSource.swift │ ├── WordListStore.swift │ ├── WordListStrings.swift │ ├── WordListViewController.swift │ └── en.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ └── Main.strings ├── KotobaTests │ ├── Info.plist │ ├── WordListTests.swift │ └── WordSuggestionsModelTests.swift ├── KotobaUITests │ ├── Info.plist │ ├── KotobaAppStoreScreenshots.swift │ └── KotobaUITests.swift └── ShareExtension │ ├── Base.lproj │ └── ShareExtension.storyboard │ ├── CHOCK.lproj │ └── ShareExtension.strings │ ├── Info.plist │ ├── ShareExtension.entitlements │ ├── ShareViewController.swift │ └── en.lproj │ └── ShareExtension.strings ├── db ├── wn_pro.db ├── wordnet20_inserts.sql └── wordnet20_schema.sql ├── design ├── icon.sketch ├── icon │ └── red │ │ ├── Icon-24.png │ │ ├── Icon-24@2x.png │ │ ├── Icon-24@3x.png │ │ ├── Icon-27.5.png │ │ ├── Icon-27.5@2x.png │ │ ├── Icon-27.5@3x.png │ │ ├── Icon-29.png │ │ ├── Icon-29@2x.png │ │ ├── Icon-29@3x.png │ │ ├── Icon-40.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-40@3x.png │ │ ├── Icon-512.png │ │ ├── Icon-512@2x.png │ │ ├── Icon-57.png │ │ ├── Icon-57@2x.png │ │ ├── Icon-57@3x.png │ │ ├── Icon-60.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-76@3x.png │ │ ├── Icon-83.5.png │ │ ├── Icon-83.5@2x.png │ │ ├── Icon-83.5@3x.png │ │ ├── Icon-86.png │ │ ├── Icon-86@2x.png │ │ ├── Icon-86@3x.png │ │ ├── Icon-98.png │ │ ├── Icon-98@2x.png │ │ └── Icon-98@3x.png └── launch │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ └── Default-812h@3x.png └── website ├── iTunesArtwork.png └── iTunesArtwork@2x.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/README.md -------------------------------------------------------------------------------- /appstore/Kotoba App Store description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Kotoba App Store description.md -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_(7th_generation)-History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_(7th_generation)-History.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_(7th_generation)-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_(7th_generation)-Settings.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_(7th_generation)-Type_A_Word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_(7th_generation)-Type_A_Word.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_Air_(3rd_generation)-History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_Air_(3rd_generation)-History.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_Air_(3rd_generation)-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_Air_(3rd_generation)-Settings.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_Air_(3rd_generation)-Type_A_Word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_Air_(3rd_generation)-Type_A_Word.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_Pro_(11-inch)-History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_Pro_(11-inch)-History.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_Pro_(11-inch)-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_Pro_(11-inch)-Settings.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_Pro_(11-inch)-Type_A_Word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_Pro_(11-inch)-Type_A_Word.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_Pro_(12.9-inch)_(3rd_generation)-History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_Pro_(12.9-inch)_(3rd_generation)-History.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_Pro_(12.9-inch)_(3rd_generation)-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_Pro_(12.9-inch)_(3rd_generation)-Settings.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_Pro_(12.9-inch)_(3rd_generation)-Type_A_Word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_Pro_(12.9-inch)_(3rd_generation)-Type_A_Word.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_Pro_(9.7-inch)-History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_Pro_(9.7-inch)-History.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_Pro_(9.7-inch)-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_Pro_(9.7-inch)-Settings.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPad_Pro_(9.7-inch)-Type_A_Word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPad_Pro_(9.7-inch)-Type_A_Word.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_11-History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_11-History.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_11-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_11-Settings.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_11-Type_A_Word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_11-Type_A_Word.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_11_Pro-History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_11_Pro-History.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_11_Pro-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_11_Pro-Settings.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_11_Pro-Type_A_Word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_11_Pro-Type_A_Word.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_11_Pro_Max-History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_11_Pro_Max-History.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_11_Pro_Max-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_11_Pro_Max-Settings.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_11_Pro_Max-Type_A_Word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_11_Pro_Max-Type_A_Word.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_8-History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_8-History.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_8-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_8-Settings.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_8-Type_A_Word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_8-Type_A_Word.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_8_Plus-History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_8_Plus-History.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_8_Plus-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_8_Plus-Settings.png -------------------------------------------------------------------------------- /appstore/Screenshot-iPhone_8_Plus-Type_A_Word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/appstore/Screenshot-iPhone_8_Plus-Type_A_Word.png -------------------------------------------------------------------------------- /code/.bartycrouch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/.bartycrouch.toml -------------------------------------------------------------------------------- /code/Kotoba.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /code/Kotoba.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /code/Kotoba.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /code/Kotoba.xcodeproj/xcshareddata/xcschemes/Kotoba.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba.xcodeproj/xcshareddata/xcschemes/Kotoba.xcscheme -------------------------------------------------------------------------------- /code/Kotoba.xcodeproj/xcshareddata/xcschemes/ShareExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba.xcodeproj/xcshareddata/xcschemes/ShareExtension.xcscheme -------------------------------------------------------------------------------- /code/Kotoba/AddWord/AddWordView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/AddWord/AddWordView.swift -------------------------------------------------------------------------------- /code/Kotoba/AddWord/WordSuggestionsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/AddWord/WordSuggestionsModel.swift -------------------------------------------------------------------------------- /code/Kotoba/AddWord/WordSuggestionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/AddWord/WordSuggestionsView.swift -------------------------------------------------------------------------------- /code/Kotoba/Alert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Alert.swift -------------------------------------------------------------------------------- /code/Kotoba/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/AppDelegate.swift -------------------------------------------------------------------------------- /code/Kotoba/BartyCrouch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/BartyCrouch.swift -------------------------------------------------------------------------------- /code/Kotoba/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /code/Kotoba/CHOCK.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/CHOCK.lproj/Localizable.strings -------------------------------------------------------------------------------- /code/Kotoba/CHOCK.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/CHOCK.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /code/Kotoba/CHOCK.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/CHOCK.lproj/Main.strings -------------------------------------------------------------------------------- /code/Kotoba/Chocktuba.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Chocktuba.swift -------------------------------------------------------------------------------- /code/Kotoba/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /code/Kotoba/Colors.xcassets/appBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Colors.xcassets/appBackground.colorset/Contents.json -------------------------------------------------------------------------------- /code/Kotoba/Colors.xcassets/appBarItemTint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Colors.xcassets/appBarItemTint.colorset/Contents.json -------------------------------------------------------------------------------- /code/Kotoba/Colors.xcassets/appBarText.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Colors.xcassets/appBarText.colorset/Contents.json -------------------------------------------------------------------------------- /code/Kotoba/Colors.xcassets/appBarTint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Colors.xcassets/appBarTint.colorset/Contents.json -------------------------------------------------------------------------------- /code/Kotoba/Colors.xcassets/appHeader.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Colors.xcassets/appHeader.colorset/Contents.json -------------------------------------------------------------------------------- /code/Kotoba/Colors.xcassets/appHeaderText.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Colors.xcassets/appHeaderText.colorset/Contents.json -------------------------------------------------------------------------------- /code/Kotoba/Colors.xcassets/appTint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Colors.xcassets/appTint.colorset/Contents.json -------------------------------------------------------------------------------- /code/Kotoba/Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Debug.swift -------------------------------------------------------------------------------- /code/Kotoba/DictionaryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/DictionaryViewController.swift -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Contents.json -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-AppStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-AppStore.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad20.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad20@2x.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad29.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad29@2x.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad40.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad40@2x.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad76.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad76@2x.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad83@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPad83@2x.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone20@2x.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone20@3x.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone29@2x.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone29@3x.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone40@2x.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone40@3x.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone60@2x.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/AppIcon-red.appiconset/Icon-iPhone60@3x.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/Book.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/Book.imageset/Contents.json -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/Book.imageset/book-Book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/Book.imageset/book-Book.pdf -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/CHOCKTUBA.imageset/CHOCKTUBA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/CHOCKTUBA.imageset/CHOCKTUBA.png -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/CHOCKTUBA.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/CHOCKTUBA.imageset/Contents.json -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/LaunchImage-red.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/LaunchImage-red.imageset/Contents.json -------------------------------------------------------------------------------- /code/Kotoba/Images.xcassets/LaunchImage-red.imageset/Default.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Images.xcassets/LaunchImage-red.imageset/Default.pdf -------------------------------------------------------------------------------- /code/Kotoba/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Info.plist -------------------------------------------------------------------------------- /code/Kotoba/Kotoba.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Kotoba.entitlements -------------------------------------------------------------------------------- /code/Kotoba/KotobaNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/KotobaNavigationController.swift -------------------------------------------------------------------------------- /code/Kotoba/Launch.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Launch.storyboard -------------------------------------------------------------------------------- /code/Kotoba/NSDictionary+Workaround.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/NSDictionary+Workaround.swift -------------------------------------------------------------------------------- /code/Kotoba/Pasteboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Pasteboard.swift -------------------------------------------------------------------------------- /code/Kotoba/PasteboardWatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/PasteboardWatcher.swift -------------------------------------------------------------------------------- /code/Kotoba/PasteboardWordList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/PasteboardWordList.swift -------------------------------------------------------------------------------- /code/Kotoba/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Preferences.swift -------------------------------------------------------------------------------- /code/Kotoba/RoundedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/RoundedView.swift -------------------------------------------------------------------------------- /code/Kotoba/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/SceneDelegate.swift -------------------------------------------------------------------------------- /code/Kotoba/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/SettingsViewController.swift -------------------------------------------------------------------------------- /code/Kotoba/UIViewController+Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/UIViewController+Dictionary.swift -------------------------------------------------------------------------------- /code/Kotoba/Word.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/Word.swift -------------------------------------------------------------------------------- /code/Kotoba/WordListDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/WordListDataSource.swift -------------------------------------------------------------------------------- /code/Kotoba/WordListStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/WordListStore.swift -------------------------------------------------------------------------------- /code/Kotoba/WordListStrings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/WordListStrings.swift -------------------------------------------------------------------------------- /code/Kotoba/WordListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/WordListViewController.swift -------------------------------------------------------------------------------- /code/Kotoba/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /code/Kotoba/en.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/en.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /code/Kotoba/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/Kotoba/en.lproj/Main.strings -------------------------------------------------------------------------------- /code/KotobaTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/KotobaTests/Info.plist -------------------------------------------------------------------------------- /code/KotobaTests/WordListTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/KotobaTests/WordListTests.swift -------------------------------------------------------------------------------- /code/KotobaTests/WordSuggestionsModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/KotobaTests/WordSuggestionsModelTests.swift -------------------------------------------------------------------------------- /code/KotobaUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/KotobaUITests/Info.plist -------------------------------------------------------------------------------- /code/KotobaUITests/KotobaAppStoreScreenshots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/KotobaUITests/KotobaAppStoreScreenshots.swift -------------------------------------------------------------------------------- /code/KotobaUITests/KotobaUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/KotobaUITests/KotobaUITests.swift -------------------------------------------------------------------------------- /code/ShareExtension/Base.lproj/ShareExtension.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/ShareExtension/Base.lproj/ShareExtension.storyboard -------------------------------------------------------------------------------- /code/ShareExtension/CHOCK.lproj/ShareExtension.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/ShareExtension/CHOCK.lproj/ShareExtension.strings -------------------------------------------------------------------------------- /code/ShareExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/ShareExtension/Info.plist -------------------------------------------------------------------------------- /code/ShareExtension/ShareExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/ShareExtension/ShareExtension.entitlements -------------------------------------------------------------------------------- /code/ShareExtension/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/ShareExtension/ShareViewController.swift -------------------------------------------------------------------------------- /code/ShareExtension/en.lproj/ShareExtension.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/code/ShareExtension/en.lproj/ShareExtension.strings -------------------------------------------------------------------------------- /db/wn_pro.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/db/wn_pro.db -------------------------------------------------------------------------------- /db/wordnet20_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/db/wordnet20_inserts.sql -------------------------------------------------------------------------------- /db/wordnet20_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/db/wordnet20_schema.sql -------------------------------------------------------------------------------- /design/icon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon.sketch -------------------------------------------------------------------------------- /design/icon/red/Icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-24.png -------------------------------------------------------------------------------- /design/icon/red/Icon-24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-24@2x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-24@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-24@3x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-27.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-27.5.png -------------------------------------------------------------------------------- /design/icon/red/Icon-27.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-27.5@2x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-27.5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-27.5@3x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-29.png -------------------------------------------------------------------------------- /design/icon/red/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-29@2x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-29@3x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-40.png -------------------------------------------------------------------------------- /design/icon/red/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-40@2x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-40@3x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-512.png -------------------------------------------------------------------------------- /design/icon/red/Icon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-512@2x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-57.png -------------------------------------------------------------------------------- /design/icon/red/Icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-57@2x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-57@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-57@3x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-60.png -------------------------------------------------------------------------------- /design/icon/red/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-60@2x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-60@3x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-76.png -------------------------------------------------------------------------------- /design/icon/red/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-76@2x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-76@3x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-83.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-83.5.png -------------------------------------------------------------------------------- /design/icon/red/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-83.5@2x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-83.5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-83.5@3x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-86.png -------------------------------------------------------------------------------- /design/icon/red/Icon-86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-86@2x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-86@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-86@3x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-98.png -------------------------------------------------------------------------------- /design/icon/red/Icon-98@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-98@2x.png -------------------------------------------------------------------------------- /design/icon/red/Icon-98@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/icon/red/Icon-98@3x.png -------------------------------------------------------------------------------- /design/launch/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/launch/Default-568h@2x.png -------------------------------------------------------------------------------- /design/launch/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/launch/Default-667h@2x.png -------------------------------------------------------------------------------- /design/launch/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/launch/Default-736h@3x.png -------------------------------------------------------------------------------- /design/launch/Default-812h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/design/launch/Default-812h@3x.png -------------------------------------------------------------------------------- /website/iTunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/website/iTunesArtwork.png -------------------------------------------------------------------------------- /website/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhains/Kotoba/HEAD/website/iTunesArtwork@2x.png --------------------------------------------------------------------------------