├── README.md ├── _config.yml ├── vanced.json ├── manager.json ├── microg.json └── changelog ├── 13_49_52 ├── 14_10_53 ├── 14_21_54 └── 15_05_54.json /README.md: -------------------------------------------------------------------------------- 1 | # Vanced Installer 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /vanced.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "15.05.54", 3 | "versionCode": "1505541000" 4 | } -------------------------------------------------------------------------------- /manager.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0 beta", 3 | "versionCode": "8", 4 | "url": "https://github.com/YTVanced/VancedManager/releases/latest/download/manager.apk", 5 | "changelog": "Initial Release" 6 | } -------------------------------------------------------------------------------- /microg.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.6.17455-dirty", 3 | "versionCode": "17455013", 4 | "changelog": "Changes:\n - Added casting support\n - Fixed notifications\n\nMicroG now requires Vanced 14.21.54 and up", 5 | "url": "https://vanced.app/api/v1/microg/0.2.6.apk" 6 | } -------------------------------------------------------------------------------- /changelog/13_49_52: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Vanced 13.49.52", 3 | "message": "https://vanced.app is the ONLY OFFICIAL SITE\n\nChangelog:\n - Search ads are still there (haven't found a way to remove them)\n\nhttps://vanced.app is the ONLY OFFICIAL SITE", 4 | "buttonpositive": "Dismiss", 5 | "buttonnegative": "Later" 6 | } 7 | -------------------------------------------------------------------------------- /changelog/14_10_53: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Vanced 14.10.53", 3 | "message": "https://vanced.app is the ONLY OFFICIAL SITE\n\nChangelog:\n - Search ads are still there (haven't found a way to remove them)\n\nhttps://vanced.app is the ONLY OFFICIAL SITE", 4 | "buttonpositive": "Dismiss", 5 | "buttonnegative": "Later" 6 | } 7 | -------------------------------------------------------------------------------- /changelog/14_21_54: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Vanced 14.21.54", 3 | "message": "https://vanced.app is the ONLY OFFICIAL SITE\n\nMicroG - 0.2.6.17455 or higher required for login\nChangelog:\n - Search ads are still there (haven't found a way to remove them)\n\nhttps://vanced.app is the ONLY OFFICIAL SITE", 4 | "buttonpositive": "Dismiss", 5 | "buttonnegative": "Later" 6 | } 7 | -------------------------------------------------------------------------------- /changelog/15_05_54.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Vanced 15.05.54", 3 | "message": "https://vanced.app is the ONLY OFFICIAL SITE\n\nMicroG - 0.2.6.17455 or higher required for login\nChangelog:\n - Search ads are still there (haven't found a way to remove them)\n\nhttps://vanced.app is the ONLY OFFICIAL SITE", 4 | "buttonpositive": "Dismiss", 5 | "buttonnegative": "Later" 6 | } 7 | --------------------------------------------------------------------------------