Skip to content

Commit e5893db

Browse files
committed
v1.6.0
1 parent 8ccb1eb commit e5893db

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

BAngr.ttl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
rdfs:comment "A multi-dimensional dynamicly distorted staggered multi-bandpass LV2 plugin, for extreme soundmangling. Based on Airwindows XRegion." ;
5252
doap:maintainer <http://www.jahnichen.de/sjaehn#me> ;
5353
doap:license <http://usefulinc.com/doap/licenses/gpl> ;
54-
lv2:microVersion 2 ;
55-
lv2:minorVersion 5 ;
54+
lv2:microVersion 0 ;
55+
lv2:minorVersion 6 ;
5656
lv2:extensionData state:interface ;
5757
lv2:optionalFeature lv2:hardRTCapable , state:loadDefaultState , state:threadSafeRestore ;
5858
lv2:binary <BAngr.so> ;

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,15 @@ a) Install the bangr package for your system
1717
* [Arch](https://aur.archlinux.org/packages/bangr.lv2-git) by SpotlightKid
1818
* [FreeBSD](https://www.freshports.org/audio/bangr-lv2) by yurivict
1919

20-
b) Build your own binaries in the following three steps.
20+
Note: This will NOT necessarily install the latest version of B.Angr. The version provided depends on the packagers.
21+
22+
b) Use the latest provided binaries
23+
24+
Unpack the provided bangr-\*.zip or bangr-\*.tar.xz from the latest release and
25+
copy the BAngr.lv2 folder to your lv2 directory (depending on your system settings,
26+
~/.lv2/, /usr/lib/lv2/, /usr/local/lib/lv2/, or ...).
27+
28+
c) Build your own binaries in the following three steps.
2129

2230
Step 1: [Download the latest published version](https://github.com/sjaehn/BAngr/releases) of B.Angr.
2331
Or clone or [download the master](https://github.com/sjaehn/BAngr/archive/master.zip) of this repository.
@@ -98,8 +106,14 @@ and edit the parameters.
98106
## What's new
99107

100108
* Faster
109+
* Optimized DSP code
110+
* Compiler optimizations (`-O3 -ffast-math`)
101111
* Support lv2:Parameters, lv2:State
102112
* Cursor XY can now externally be controlled
113+
* Binary compatibility improved
114+
* Static libs
115+
* Strip symbols by default
116+
* Binary packages provided
103117

104118

105119
## Acknowledgments

doc/screenshot.png

-460 Bytes
Loading

inc/surface.png

242 Bytes
Loading

inc/surface.svg

Lines changed: 1 addition & 1 deletion
Loading

src/BAngrGUI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ void BAngrGUI::cursorDraggedCallback (BEvents::Event* event)
467467
void BAngrGUI::cursorReleasedCallback (BEvents::Event* event)
468468
{
469469
if (!event) return;
470-
BEvents::PointerEvent* pev = (BEvents::PointerEvent*)event;
470+
//BEvents::PointerEvent* pev = (BEvents::PointerEvent*)event;
471471
Dot* widget = (Dot*) event->getWidget ();
472472
if (!widget) return;
473473
BAngrGUI* ui = (BAngrGUI*) widget->getMainWindow();

0 commit comments

Comments
 (0)