Skip to content

Commit

Permalink
Merge pull request #20 from PedalPi/version-0.3.1
Browse files Browse the repository at this point in the history
Version 0.3.1
  • Loading branch information
SrMouraSilva committed May 12, 2017
2 parents bd5b1a0 + 816469a commit fb3d4cf
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ language: python
python:
- "3.4"
- "3.5"
- "3.6-dev"
- "3.6"
- "3.7-dev"
- "nightly"

sudo: required
Expand Down
6 changes: 5 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
Version 0.3.0 -- released 05//17
Version 0.3.1 -- released 05/10/17
==================================
- Add class method `Lv2EffectBuilder.plugins_json_file`

Version 0.3.0 -- released 05/08/17
================================
- Add lilvlib support:
- Add object Lv2EffectBuilder method - `lv2_plugins_data`: Scan and generate the lv2 plugins metadata
Expand Down
7 changes: 6 additions & 1 deletion pluginsmanager/model/lv2/lv2_effect_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,16 @@ class Lv2EffectBuilder(object):
in *plugins.json*.
"""

plugins_json_file = os.path.dirname(os.path.abspath(__file__)) + '/plugins.json'
"""
Informs the path of the `plugins.json` file. This file contains the lv2 plugins metadata info
"""

def __init__(self, plugins_json=None):
self._plugins = {}

if plugins_json is None:
plugins_json = os.path.dirname(os.path.abspath(__file__)) + '/plugins.json'
plugins_json = Lv2EffectBuilder.plugins_json_file

with open(plugins_json) as data_file:
data = json.load(data_file)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def readme():

setup(
name='PedalPi-PluginsManager',
version='0.3.0',
version='0.3.1',

description='Pythonic management of LV2 audio plugins with mod-host.',
long_description=readme(),
Expand Down

0 comments on commit fb3d4cf

Please sign in to comment.