Browse Source

Update Hora

v1
Andrew Belt 5 years ago
parent
commit
cfaea6ab71
13 changed files with 41 additions and 12 deletions
  1. +1
    -0
      .gitignore
  2. +1
    -1
      manifests/Hora-Mixers.json
  3. +1
    -1
      manifests/Hora-Modulation.json
  4. +1
    -1
      manifests/Hora-ModulationFree.json
  5. +1
    -1
      manifests/Hora-PCMDrum.json
  6. +1
    -1
      manifests/Hora-PCMDrumFree.json
  7. +19
    -1
      manifests/Hora-Processors.json
  8. +10
    -1
      manifests/Hora-ProcessorsFree.json
  9. +1
    -1
      manifests/Hora-Sequencers.json
  10. +1
    -1
      manifests/Hora-VCO_VCF_VCA.json
  11. +1
    -1
      manifests/Hora-VCO_VCF_VCA_Free.json
  12. +1
    -1
      manifests/Hora-treasureFree.json
  13. +2
    -1
      scripts/update.py

+ 1
- 0
.gitignore View File

@@ -0,0 +1 @@
__pycache__

+ 1
- 1
manifests/Hora-Mixers.json View File

@@ -1,7 +1,7 @@
{
"slug": "Hora-Mixers",
"name": "Mixers",
"version": "1.0.1",
"version": "1.0.2",
"license": "proprietary",
"brand": "Hora",
"author": "Hora",


+ 1
- 1
manifests/Hora-Modulation.json View File

@@ -1,7 +1,7 @@
{
"slug": "Hora-Modulation",
"name": "Modulations",
"version": "1.0.1",
"version": "1.0.2",
"license": "proprietary",
"brand": "Hora",
"author": "Hora",


+ 1
- 1
manifests/Hora-ModulationFree.json View File

@@ -1,7 +1,7 @@
{
"slug": "Hora-ModulationFree",
"name": "Modulations Free",
"version": "1.0.1",
"version": "1.0.2",
"license": "proprietary",
"author": "Hora",
"brand": "Hora",


+ 1
- 1
manifests/Hora-PCMDrum.json View File

@@ -1,7 +1,7 @@
{
"slug": "Hora-PCMDrum",
"name": "PCM Drum",
"version": "1.0.1",
"version": "1.0.2",
"license": "proprietary",
"author": "Hora",
"brand": "Hora",


+ 1
- 1
manifests/Hora-PCMDrumFree.json View File

@@ -1,7 +1,7 @@
{
"slug": "Hora-PCMDrumFree",
"name": "PCM Drums free",
"version": "1.0.1",
"version": "1.0.2",
"license": "proprietary",
"brand": "Hora",
"author": "Hora",


+ 19
- 1
manifests/Hora-Processors.json View File

@@ -1,7 +1,7 @@
{
"slug": "Hora-Processors",
"name": "Processors",
"version": "1.0.1",
"version": "1.0.2",
"license": "proprietary",
"brand": "Hora",
"author": "Hora",
@@ -44,6 +44,24 @@
"Effect",
"Distortion"
]
},
{
"slug": "Scheme",
"name": "Scheme",
"description": "Tube Drive",
"tags": [
"Effect",
"Overdrive"
]
},
{
"slug": "Brigade",
"name": "Brigade",
"description": "Bucket Brigade Delay",
"tags": [
"Effect",
"Delay"
]
}
]
}

+ 10
- 1
manifests/Hora-ProcessorsFree.json View File

@@ -1,7 +1,7 @@
{
"slug": "Hora-ProcessorsFree",
"name": "Processors Free",
"version": "1.0.1",
"version": "1.0.2",
"license": "proprietary",
"author": "Hora",
"brand": "Hora",
@@ -36,6 +36,15 @@
"Effect",
"Distortion"
]
},
{
"slug": "Brigade",
"name": "Brigade",
"description": "Bucket Brigade Delay",
"tags": [
"Effect",
"Delay"
]
}
]
}

+ 1
- 1
manifests/Hora-Sequencers.json View File

@@ -1,7 +1,7 @@
{
"slug": "Hora-Sequencers",
"name": "Sequencers",
"version": "1.0.1",
"version": "1.0.2",
"license": "proprietary",
"author": "Hora",
"brand": "Hora",


+ 1
- 1
manifests/Hora-VCO_VCF_VCA.json View File

@@ -1,7 +1,7 @@
{
"slug": "Hora-VCO_VCF_VCA",
"name": "VCO VCF VCA",
"version": "1.0.1",
"version": "1.0.2",
"license": "proprietary",
"author": "Hora",
"brand": "Hora",


+ 1
- 1
manifests/Hora-VCO_VCF_VCA_Free.json View File

@@ -1,7 +1,7 @@
{
"slug": "Hora-VCO_VCF_VCA_Free",
"name": "VCO-VCF-VCA Free",
"version": "1.0.1",
"version": "1.0.2",
"license": "proprietary",
"author": "Hora",
"brand": "Hora",


+ 1
- 1
manifests/Hora-treasureFree.json View File

@@ -1,7 +1,7 @@
{
"slug": "Hora-treasureFree",
"name": "Treasure Free",
"version": "1.0.1",
"version": "1.0.2",
"license": "proprietary",
"author": "Hora",
"brand": "Hora",


+ 2
- 1
scripts/update.py View File

@@ -49,6 +49,7 @@ for plugin_filename in plugin_filenames:

# Get library manifest
slug = manifest['slug']
version = manifest['version']
library_manifest_filename = os.path.join(MANIFESTS_DIR, f"{slug}.json")

if os.path.isdir(plugin_filename):
@@ -56,7 +57,7 @@ for plugin_filename in plugin_filenames:
try:
with open(library_manifest_filename, "r") as f:
library_manifest = json.load(f)
if library_manifest and manifest['version'] == library_manifest['version']:
if library_manifest and version == library_manifest['version']:
continue
except IOError:
pass


Loading…
Cancel
Save