Skip to content

Commit

Permalink
update version and NEWS file
Browse files Browse the repository at this point in the history
  • Loading branch information
iurienistor committed Sep 22, 2023
1 parent e9119fc commit e8bc9a7
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.7)

project(geonkick VERSION 2.10.0)
project(geonkick VERSION 2.10.1)

set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/modules/")
include(GNUInstallDirs)
Expand Down
13 changes: 13 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
### Version 2.10.1

#### Fixes

- Use OpenSSL for base64 encoding/decoding and eliminated third-party code related to base64.
- Generate PNG resources during the build process and removed the generated C files from the repository.
- Sanitized all SVG images by removing sensitive data.
- Relocated the 'redkite,' 'dsp,' 'plugin,' and 'standalone' folders to the 'src' directory.
- Eliminated the '3rdparty' folder and excluded 'vst3sdk' from the repository.
- Introduced a CMake option to specify the path to the VST3 SDK.
- Additional clean-up to remove sensitive data and unnecessary files.
- Added licensing (CC0) information for all images, documentation, and other non-code materials.

### Version 2.10.0

#### Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The term "Geon" in the name "Geonkick" refers to a hypothetical particle called

**License:** GPLv3

**Version:** 2.10.0
**Version:** 2.10.1

If you have an idea about a feature or found an issue, please, submit it:

Expand Down
4 changes: 2 additions & 2 deletions src/dsp/src/geonkick.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ typedef float gkick_real;

#define GEONKICK_UNUSED(expr) (void)expr

#define GEONKICK_VERSION 0x021000
#define GEONKICK_VERSION 0x021001
#define GEONKICK_NAME "Geonkick"
#define GEONKICK_APP_NAME "geonkick"
#define GEOKICK_VERSION_STRING "2.10.0"
#define GEOKICK_VERSION_STRING "2.10.1"

#ifdef GEONKICK_AUDIO_JACK
#define GKICK_IS_STANDALONE (1)
Expand Down

0 comments on commit e8bc9a7

Please sign in to comment.