├── .gitignore ├── Example.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── Example.xcscheme ├── Example ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── LICENSE.txt ├── README.md ├── src ├── SNNet.swift └── String+localized.swift └── test └── SNNet ├── SNNet.xcodeproj └── project.pbxproj ├── SNNet ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.swift └── swipe.png ├── SNNetTV ├── Assets.xcassets │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - Large.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── App Icon - Small.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ └── Contents.json │ ├── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── Base.lproj │ └── Main.storyboard └── Info.plist └── server └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/.gitignore -------------------------------------------------------------------------------- /Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/Example/ViewController.swift -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/README.md -------------------------------------------------------------------------------- /src/SNNet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/src/SNNet.swift -------------------------------------------------------------------------------- /src/String+localized.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/src/String+localized.swift -------------------------------------------------------------------------------- /test/SNNet/SNNet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNet.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/SNNet/SNNet/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNet/AppDelegate.swift -------------------------------------------------------------------------------- /test/SNNet/SNNet/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNet/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNet/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNet/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /test/SNNet/SNNet/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNet/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /test/SNNet/SNNet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNet/Info.plist -------------------------------------------------------------------------------- /test/SNNet/SNNet/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNet/ViewController.swift -------------------------------------------------------------------------------- /test/SNNet/SNNet/swipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNet/swipe.png -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /test/SNNet/SNNetTV/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/SNNetTV/Info.plist -------------------------------------------------------------------------------- /test/SNNet/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakajima/SNNet/HEAD/test/SNNet/server/index.js --------------------------------------------------------------------------------