| @@ -1,12 +1,15 @@ | |||||
| { | { | ||||
| "name": "Count Modula", | |||||
| "author": "Adam Verspaget", | |||||
| "license": "BSD-3-Clause", | |||||
| "authorUrl": "https://github.com/countmodula", | |||||
| "authorEmail": "CountModula@gmail.com", | |||||
| "manualUrl": "https://github.com/countmodula/VCVRackPlugins/blob/master/MANUAL.md", | |||||
| "sourceUrl": "https://github.com/countmodula/VCVRackPlugins.git", | |||||
| "pluginUrl": "https://github.com/countmodula/VCVRackPlugins/blob/master/README.md", | |||||
| "donateUrl": "https://paypal.me/countmodula?locale.x=en_AU", | |||||
| "repoVersion": "0.6.0" | |||||
| "name": "Count Modula", | |||||
| "author": "Adam Verspaget", | |||||
| "license": "BSD-3-Clause", | |||||
| "authorUrl": "https://github.com/countmodula", | |||||
| "authorEmail": "CountModula@gmail.com", | |||||
| "manualUrl": "https://github.com/countmodula/VCVRackPlugins/blob/master/MANUAL.md", | |||||
| "sourceUrl": "https://github.com/countmodula/VCVRackPlugins.git", | |||||
| "pluginUrl": "https://github.com/countmodula/VCVRackPlugins/blob/master/README.md", | |||||
| "donateUrl": "https://paypal.me/countmodula?locale.x=en_AU", | |||||
| "repoVersion": "0.6.0", | |||||
| "latestVersion": "0.6.0", | |||||
| "buildTimestamp": 1559541827, | |||||
| "status": "available" | |||||
| } | } | ||||
| @@ -5,9 +5,9 @@ | |||||
| "license": "MIT", | "license": "MIT", | ||||
| "manualUrl": "https://github.com/squinkylabs/SquinkyVCV/blob/master/docs/booty-shifter.md", | "manualUrl": "https://github.com/squinkylabs/SquinkyVCV/blob/master/docs/booty-shifter.md", | ||||
| "sourceUrl": "https://github.com/squinkylabs/SquinkyVCV", | "sourceUrl": "https://github.com/squinkylabs/SquinkyVCV", | ||||
| "latestVersion": "0.6.14", | |||||
| "latestVersion": "0.6.15", | |||||
| "repoVersion": "0.6.15", | "repoVersion": "0.6.15", | ||||
| "buildTimestamp": 1546736668, | |||||
| "buildTimestamp": 1559540392, | |||||
| "status": "available", | "status": "available", | ||||
| "pluginUrl": "https://github.com/squinkylabs/SquinkyVCV/blob/master/docs/booty-shifter.md" | "pluginUrl": "https://github.com/squinkylabs/SquinkyVCV/blob/master/docs/booty-shifter.md" | ||||
| } | |||||
| } | |||||
| @@ -20,8 +20,12 @@ built_slugs = [] | |||||
| for plugin_dir in plugin_dirs: | for plugin_dir in plugin_dirs: | ||||
| slug = os.path.basename(plugin_dir) | slug = os.path.basename(plugin_dir) | ||||
| manifest_filename = f"manifests/{slug}.json" | manifest_filename = f"manifests/{slug}.json" | ||||
| with open(manifest_filename, "r") as f: | |||||
| manifest = json.load(f) | |||||
| try: | |||||
| with open(manifest_filename, "r") as f: | |||||
| manifest = json.load(f) | |||||
| except Exception as e: | |||||
| print(e) | |||||
| input() | |||||
| # We need a repoVersion to build | # We need a repoVersion to build | ||||
| if 'repoVersion' not in manifest: | if 'repoVersion' not in manifest: | ||||