This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"categories": [ | |
{ | |
"name": "Movies", | |
"hls-old": "https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/hls/", | |
"dash-old": "https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/dash/", | |
"mp4": "", | |
"images": "https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/images/", | |
"tracks": "https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/tracks/", | |
"videos": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# A simple script that generates html documentation with the help of 'jazzy' (https://github.com/realm/jazzy) and opens it in browser. | |
########################################### | |
# Best way to use it: | |
# 1. Inside your project folder, create folder called 'Scripts' | |
# 2. Put this file 'JazzyDocsGen.sh' inside it. | |
# 3. In XCode, go to your project settings where targets are listed, and tap the '+' button to add new target. | |
# 4. Select the template Cross-platform > Other > Aggregate. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// SKMultilineLabel.swift | |
// | |
// Created by Craig on 10/04/2015. | |
// Copyright (c) 2015 Interactive Coconut. | |
// MIT License, http://www.opensource.org/licenses/mit-license.php | |
// | |
/* USE: | |
(most component parameters have defaults) | |
let multiLabel = SKMultilineLabel(text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", labelWidth: 250, pos: CGPoint(x: size.width / 2, y: size.height / 2)) |