Changeset b22a23babe2588932cbe21cc2932456820a10345
- Timestamp:
- 06/11/09 02:41:46 (3 years ago)
- Author:
- Nedko Arnaudov <nedko@…>
- Children:
- 7086e48b56604167163fd82f097312b03f07e5d6
- Parents:
- f165fcc2e4bddb47f3119c8b820ab245f84f8a35
- git-committer:
- Nedko Arnaudov <nedko@arnaudov.name> / 2009-06-11T02:41:46Z+0300
- Message:
-
Bump major version (in the uris and in the tarball)
FIL-plugins-0.3.0 are incompatible with FIL-plugins-0.1.0 because same parameters are causing different EQ curve
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r6138b26
|
rb22a23b
|
|
| 8 | 8 | @prefix uiext: <http://lv2plug.in/ns/extensions/ui#> . |
| 9 | 9 | |
| 10 | | <http://nedko.aranaudov.org/soft/filter/1/gui> |
| | 10 | <http://nedko.aranaudov.org/soft/filter/2/gui> |
| 11 | 11 | a uiext:external; |
| 12 | 12 | uiext:binary <filter.so>. |
| 13 | 13 | |
| 14 | | <http://nedko.aranaudov.org/soft/filter/1/mono> |
| | 14 | <http://nedko.aranaudov.org/soft/filter/2/mono> |
| 15 | 15 | a lv2:Plugin; |
| 16 | 16 | a lv2:FilterPlugin; |
| … |
… |
|
| 23 | 23 | doap:license <http://usefulinc.com/doap/licenses/gpl>; |
| 24 | 24 | |
| 25 | | uiext:ui <http://nedko.aranaudov.org/soft/filter/1/gui>; |
| | 25 | uiext:ui <http://nedko.aranaudov.org/soft/filter/2/gui>; |
| 26 | 26 | |
| 27 | 27 | lv2:port [ |
| … |
… |
|
| 274 | 274 | ]. |
| 275 | 275 | |
| 276 | | <http://nedko.aranaudov.org/soft/filter/1/stereo> |
| | 276 | <http://nedko.aranaudov.org/soft/filter/2/stereo> |
| 277 | 277 | a lv2:Plugin; |
| 278 | 278 | a lv2:FilterPlugin; |
| … |
… |
|
| 285 | 285 | doap:license <http://usefulinc.com/doap/licenses/gpl>; |
| 286 | 286 | |
| 287 | | uiext:ui <http://nedko.aranaudov.org/soft/filter/1/gui>; |
| | 287 | uiext:ui <http://nedko.aranaudov.org/soft/filter/2/gui>; |
| 288 | 288 | |
| 289 | 289 | lv2:port [ |
-
|
rf165fcc
|
rb22a23b
|
|
| 24 | 24 | |
| 25 | 25 | #define UI_EXECUTABLE "ui" |
| 26 | | #define UI_URI "http://nedko.aranaudov.org/soft/filter/1/gui" |
| | 26 | #define UI_URI "http://nedko.aranaudov.org/soft/filter/2/gui" |
| 27 | 27 | |
| 28 | 28 | #include <stdbool.h> |
-
|
r6138b26
|
rb22a23b
|
|
| 22 | 22 | #define LV2FILTER_H__6EC1E456_7DD7_4536_B8D3_F23BE4583A23__INCLUDED |
| 23 | 23 | |
| 24 | | #define LV2FILTER_MONO_URI "http://nedko.aranaudov.org/soft/filter/1/mono" |
| 25 | | #define LV2FILTER_STEREO_URI "http://nedko.aranaudov.org/soft/filter/1/stereo" |
| | 24 | #define LV2FILTER_MONO_URI "http://nedko.aranaudov.org/soft/filter/2/mono" |
| | 25 | #define LV2FILTER_STEREO_URI "http://nedko.aranaudov.org/soft/filter/2/stereo" |
| 26 | 26 | |
| 27 | 27 | LV2_Handle |
-
|
r6138b26
|
rb22a23b
|
|
| 2 | 2 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>. |
| 3 | 3 | |
| 4 | | <http://nedko.aranaudov.org/soft/filter/1/mono> |
| | 4 | <http://nedko.aranaudov.org/soft/filter/2/mono> |
| 5 | 5 | a lv2:Plugin; |
| 6 | 6 | a lv2:FilterPlugin; |
| … |
… |
|
| 8 | 8 | rdfs:seeAlso <filter.ttl>. |
| 9 | 9 | |
| 10 | | <http://nedko.aranaudov.org/soft/filter/1/stereo> |
| | 10 | <http://nedko.aranaudov.org/soft/filter/2/stereo> |
| 11 | 11 | a lv2:Plugin; |
| 12 | 12 | a lv2:FilterPlugin; |
-
|
rf165fcc
|
rb22a23b
|
|
| 954 | 954 | dssi_ui.__init__(self, argv) |
| 955 | 955 | |
| 956 | | if self.plugin_uri == "http://nedko.aranaudov.org/soft/filter/1/mono": |
| | 956 | if self.plugin_uri == "http://nedko.aranaudov.org/soft/filter/2/mono": |
| 957 | 957 | self.port_base = 2 |
| 958 | | elif self.plugin_uri == "http://nedko.aranaudov.org/soft/filter/1/stereo": |
| | 958 | elif self.plugin_uri == "http://nedko.aranaudov.org/soft/filter/2/stereo": |
| 959 | 959 | self.port_base = 4 |
| 960 | 960 | elif self.plugin_uri == "fake": |
-
|
r3010d4f
|
rb22a23b
|
|
| 7 | 7 | |
| 8 | 8 | # the following two variables are used by the target "waf dist" |
| 9 | | VERSION='1.1' |
| | 9 | VERSION='2.0' |
| 10 | 10 | APPNAME='lv2fil' |
| 11 | 11 | |