Skip to content

Commit 382ad2e

Browse files
committed
Meeblip Controller version 1.0.2
2 parents 10069ee + bba71ab commit 382ad2e

5 files changed

Lines changed: 22 additions & 10 deletions

File tree

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ deploy:
2222
auth_token:
2323
secure: +MJsWuNJzKj+2s702OurcBXR0INATgPi411DKBGFNhQNiq41KCceKio+oo0b32g0
2424
release: 'Meeblip Controller $(appveyor_repo_tag_name)'
25-
description: ''
25+
description: 'Changelog'
2626
artifact: 'installer'
2727
draft: true
2828
prerelease: false

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ deploy:
4848
api_key:
4949
secure: 'kfjk90D/6pw+ZpXXHlnGhbYcjMR5iDLUECCEvUCLW9A7aTIkHC16IuaLIurZbRMZr7TnnVjocNJMlIAr71Am+XC1INEUdC9SGOwCMx/Wa5pAhspNgF/PpzDMuNc56xfeQff870ju9i7deUlYFSqthX79BeLpnArNVybEDh61Q0RQNRTtTG4EdbIWsYBybylAaAnoN49ZXJq9d59z9D4YPCM+CEIQXCVclxh4cdk8GOPcaOQb0fvGeVCjOgA5uFaCFZfb6adoVKZ2G9iQIgqgFXsZa1mhvAEIDBIfQjh+UutL5itMipwZOB4NQUUsezPFVL94z9v86X5NLwOgHinZ3SzEz4zUksg4HrimrNvjWMbH9Y177gh1aWtoClYmPEq0bqc+tqMgCT75i5DBGP7bNHgqz98GhQ9VWef8d79Jm3H1OAzaCLidwrIj0W34jN7MFwCCryFqqocAtbdcE1ffW5RwCHwWh/PafQE6scP87hm9vbldz7vX0ddPGGz8fwHMpPE9z1+CjpEUe1FRd3GvmLRgqmTrlLkvAIE6ZSr4vxUN4Iujerbn/oGmknwvN+FarQPe/l7TiUdPQRp3NVna5Kw1dP3rJZ+wHVK0qbpselKSXw0tDcTSlv5wyR7ypWXo7YyBcGkXMLKsRazuH9WWW/7olCSC3Ka/G8WGQ+32mX8='
5050
name: 'Meeblip Controller ${TRAVIS_TAG}'
51-
body: ''
51+
body: 'Changelog'
5252
file_glob: true
5353
file: 'build/installer/output/*.zip'
5454
skip_cleanup: true

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.0.2] - 2018-11-30
10+
### Changed
11+
- Update README.md with Linux support
12+
13+
### Fixed
14+
- Travis-CI and AppVeyor deploy config with non-empty description
15+
916
## [1.0.1] - 2018-11-30
1017
### Added
1118
- Linux support for standalone app and VST plug-in ([#1](https://github.com/rclement/meeblip-controller/issues/1))
@@ -24,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2431
- Plug-in formats: VST2, VST3, AudioUnit
2532
- Standalone application
2633

27-
[Unreleased]: https://github.com/rclement/meeblip-controller/compare/1.0.1...HEAD
28-
[1.0.1]: https://github.com/rclement/meeblip-controller/compare/v1.0.0...v1.0.1
34+
[Unreleased]: https://github.com/rclement/meeblip-controller/compare/1.0.2...HEAD
35+
[1.0.2]: https://github.com/rclement/meeblip-controller/compare/1.0.1...1.0.2
36+
[1.0.1]: https://github.com/rclement/meeblip-controller/compare/1.0.0...1.0.1
2937

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ available on MacOS and Windows as an audio plug-in (VST, VST3, AU) and a standal
1919

2020
Currently supported features:
2121

22-
- Platforms: MacOS, Windows
23-
- Plug-in formats: VST2, VST3, AudioUnit
22+
- Platforms: MacOS, Windows, Linux
23+
- Plug-in formats:
24+
- VST2 (MacOS, Windows, Linux)
25+
- VST3 (MacOS, Windows)
26+
- AudioUnit (MacOS)
2427
- Standalone application
2528
- Real-time parameters interaction
2629
- Access to "hidden" (MIDI only) parameters of the synthesizer
@@ -77,14 +80,15 @@ git python3 cmake clang freeglut3-dev libasound2-dev libcurl4-openssl-dev libfre
7780
```
7881
mkdir -p build
7982
cd build
80-
cmake .. -G ["XCode" | "Visual Studio 15 2017"] -A ["Win32" | "x64"]
83+
cmake .. -G ["XCode" | "Visual Studio 15 2017" | "Unix Makefiles"] -A ["Win32" | "x64"] -DCMAKE_BUILD_TYPE=["Debug" | "Release"]
8184
cmake --build . --clean-first --config ["Debug" | "Release"]
8285
```
8386

8487
4. Build the installer
8588

86-
- MacOS: `packagesbuild -v installer/meeblip-controller.pkgproj`
87-
- Windows: `iscc "installer\meeblip-controller.iss"`
89+
- MacOS: `packagesbuild -v build/installer/meeblip-controller.pkgproj`
90+
- Windows: `iscc "build\installer\meeblip-controller.iss"`
91+
- Linux: `sh "build/installer/meeblip-controller.sh"`
8892

8993

9094
# Acknowledgments

metadata.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
APP_NAME=Meeblip Controller
22
APP_DESCRIPTION=MIDI controller for the Meeblip Anode synthesizer
3-
APP_VERSION=1.0.1
3+
APP_VERSION=1.0.2
44
APP_MANUFACTURER_NAME=Romain Clement
55
APP_MANUFACTURER_URL=https://github.com/rclement/meeblip-controller
66
APP_MANUFACTURER_EMAIL=contact@romain-clement.net

0 commit comments

Comments
 (0)