Skip to content

Commit

Permalink
Fix engine/sforzando plugins not being detected
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejGolian committed Mar 15, 2024
1 parent 9f1ac1a commit 986a9bf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
### Fixed/Changed

- Add version information to the executables built by Ahk2Exe
- Fixed Engine and sforzando plug-ins no longer being detected
- Added custom version information to the built executables
- Updated readme

## [0.4.0] - 2023-12-31

Expand Down
4 changes: 2 additions & 2 deletions Includes/Overlays/GenericPlugin.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ Class GenericPlugin {

Static DetectPlugin() {
Critical
If FindImage("Images/Engine/Engine.png", GetPluginXCoordinate(), GetPluginYCoordinate()) Is Array {
If FindImage("Images/Engine/Engine.png", GetPluginXCoordinate(), GetPluginYCoordinate()) Is Object {
If ReaHotkey.FoundPlugin Is Plugin And ReaHotkey.FoundPlugin.Name != "Engine"
ReaHotkey.FoundPlugin := GenericPlugin.Load(ReaHotkey.FoundPlugin.InstanceNumber, "Engine", ReaHotkey.FoundPlugin.ControlClass)
}
Else If FindImage("Images/Sforzando/Sforzando.png", GetPluginXCoordinate(), GetPluginYCoordinate()) Is Array {
Else If FindImage("Images/Sforzando/Sforzando.png", GetPluginXCoordinate(), GetPluginYCoordinate()) Is Object {
If ReaHotkey.FoundPlugin Is Plugin And ReaHotkey.FoundPlugin.Name != "sforzando"
ReaHotkey.FoundPlugin := GenericPlugin.Load(ReaHotkey.FoundPlugin.InstanceNumber, "sforzando", ReaHotkey.FoundPlugin.ControlClass)
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Our changelog can be found [in our dedicated changelog file](https://github.com/
* Makes it possible to interact with Kontakt menus.
- Works both inside REAPER and in the standalone version of Kontakt, Full and Player. Note that Kontakt version 7.7.0 or higher is required. Windows 10 or newer with OCR installed is recommended, although not mandatory.
* Provides support for the 'Browse' button in the Kontakt Content Missing dialog.
- Works both inside REAPER and in the standalone version of Kontakt - this feature is not Accessible from within Komplete Kontrol.
- Works both inside REAPER and in the standalone version of Kontakt. This feature should also work with Komplete Kontrol, but it hasn't been tested extensively.
* Makes it possible to switch Between various mixes in Audio Imperia's Areia, Cerberus, Chorus, Jaeger, Nucleus, Solo and Talos libraries.
- Only works inside REAPER.
* Makes it possible to load instruments, set polyphony and pitchbend range in Plogue sforzando.
Expand Down

0 comments on commit 986a9bf

Please sign in to comment.