Browse Source

Update builds

master
Andrew Belt 6 years ago
parent
commit
ab2ff045bb
3 changed files with 22 additions and 15 deletions
  1. +13
    -10
      manifests/CountModula.json
  2. +3
    -3
      manifests/squinkylabs-plug1.json
  3. +6
    -2
      scripts/build_updates.py

+ 13
- 10
manifests/CountModula.json View File

@@ -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"
}

+ 3
- 3
manifests/squinkylabs-plug1.json View File

@@ -5,9 +5,9 @@
"license": "MIT",
"manualUrl": "https://github.com/squinkylabs/SquinkyVCV/blob/master/docs/booty-shifter.md",
"sourceUrl": "https://github.com/squinkylabs/SquinkyVCV",
"latestVersion": "0.6.14",
"latestVersion": "0.6.15",
"repoVersion": "0.6.15",
"buildTimestamp": 1546736668,
"buildTimestamp": 1559540392,
"status": "available",
"pluginUrl": "https://github.com/squinkylabs/SquinkyVCV/blob/master/docs/booty-shifter.md"
}
}

+ 6
- 2
scripts/build_updates.py View File

@@ -20,8 +20,12 @@ built_slugs = []
for plugin_dir in plugin_dirs:
slug = os.path.basename(plugin_dir)
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
if 'repoVersion' not in manifest:


Loading…
Cancel
Save