Skip to content

Commit

Permalink
bump version to 2.14.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cfillion committed Aug 14, 2024
1 parent 5d3511f commit d4b5f99
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 6 deletions.
17 changes: 14 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ for:
- cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=$TOOLCHAIN
- cmake --build .
- cpack
deploy_script: |-
before_deploy: |-
if [ "$APPVEYOR_REPO_TAG" = "true" ] && [ -n "$DEPLOY_KEY" ]; then
echo "$DEPLOY_KEY" | base64 -d > deploy_key && chmod 600 deploy_key &&
scp -i deploy_key -o StrictHostKeyChecking=NO -q sws*.tar.xz \
Expand Down Expand Up @@ -90,7 +90,7 @@ for:
-DCMAKE_OSX_ARCHITECTURES=$ARCH -DCMAKE_OSX_DEPLOYMENT_TARGET=$DEPLOY_TARGET
- cmake --build .
- cpack
deploy_script: |-
before_deploy: |-
if [ "$APPVEYOR_REPO_TAG" = "true" ] && [ -n "$DEPLOY_KEY" ]; then
echo "$DEPLOY_KEY" | base64 -D > deploy_key && chmod 600 deploy_key &&
scp -i deploy_key -o StrictHostKeyChecking=NO -q sws*.dmg \
Expand Down Expand Up @@ -118,7 +118,7 @@ for:
- cmake .. -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo
- cmake --build . --target all langpack whatsnew
- '"C:\Program Files\CMake\bin\cpack"'
deploy_script:
before_deploy:
- ps: |-
if($env:APPVEYOR_REPO_TAG -eq "true" -And $env:DEPLOY_KEY -ne $null) {
$bytes = [System.Convert]::FromBase64String($env:DEPLOY_KEY)
Expand Down Expand Up @@ -188,3 +188,14 @@ notifications:
{{/artifacts}}
</details>
{{/jobs}}{{/passed}}
deploy:
provider: GitHub
draft: true
description: ''
force_update: true
auth_token:
secure: dKuYK8SyWSI/e/akb6EXvhMgumwjN2696hvjJbIZlXeSJjlWmOy9wUDRKwjWLVA06RBfguJppOBN9zjNB1Ur3h8rMYFAQnJnV2r7UW3/M1sEEl75E1+bmMT1HWAuTwkh
artifact: /.*\.(dll|dylib|so)|sws_python(32|64)\.py|SWS_Template\.ReaperLangPack/
on:
APPVEYOR_REPO_TAG: true
3 changes: 2 additions & 1 deletion license.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#pragma once

#define LICENSE_AUTHORS \
"Copyrights:"\
"Copyrights:\r\n"\
"(c) 2024 Christian Fillion (cfillion)\r\n" \
"(c) 2019 Tim Payne (SWS)\r\n" \
"(c) 2016 Jeffos (S&M)\r\n" \
"(c) 2015 Dominik Martin Drzic (BR), wol\r\n" \
Expand Down
4 changes: 2 additions & 2 deletions version.h.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define SWS_VERSION 2,14,0,1
#define SWS_VERSION_STR "2, 14, 0, 1\0"
#define SWS_VERSION 2,14,0,2
#define SWS_VERSION_STR "2, 14, 0, 2\0"
#define SWS_VERSION_TYPE SWS_VERSION_UNSTABLE
#define SWS_VERSION_STABLE "Featured"
#define SWS_VERSION_UNSTABLE "Pre-release"
Expand Down
28 changes: 28 additions & 0 deletions whatsnew.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
!v2.14.0.2 pre-release build (August 14, 2024)

This version of SWS may be installed using either the traditional installers (.exe, .dmg, .tar.xz) or https://reapack.com/|ReaPack| (v1.2.4.4 or newer) via the default ReaTeam Extensions repository.

Actions:
+Fix running cycle actions (and some other SWS actions) from the alt-recording and alt-{1..16} sections in REAPER 7.03+ (issue 1803)
+Fix various FNG MIDI actions crashing when the active per-project MIDI editor is empty (issue 1869)
+Fix video processor code lines containing unbalanced quotes being discarded when copying FX chains (issue 1857)
+Ignore tracks set to a record output mode when checking for duplicate recording inputs (thread https://forum.cockos.com/showthread.php?t=261948|261948|)

Auto color/icon/layout:
+Optimize for situations with hundreds of rules and tracks (thread https://forum.cockos.com/showthread.php?t=278856|278856|)

Contextual toolbars:
+Fix localization of default toolbar names

REAPER v7 track spacers:
+Fix excessive CPU usage when tracks with a visual spacer and storage-heavy effects in non-collapsed fixed lanes mode are present (v7.12+) (thread https://forum.cockos.com/showthread.php?t=288774|288774|)

ReaScript API:
+Fix CF_NormalizeUTF8 returning extraneous null bytes on Windows and make no-op on XP to restore compatibility
+Fix CF_Preview dropping samples near the end of the source when pitch shifting (issue 1854)
+Fix CF_Preview updating peaks after the read cursor has wrapped around when looping is disabled
+Fix NF_SetSWSTrackNotes crashing when given a null track (issue 1881)

Snapshots:
+Fix missing recall actions when loading re-ordered snapshots beyond the configured action amount (issue 1871)

!v2.14.0.1 pre-release build (February 14, 2024)

This version of SWS may be installed using either the traditional installers (.exe, .dmg, .tar.xz) or https://reapack.com/|ReaPack| (v1.2.4.4 or newer) via the default ReaTeam Extensions repository.
Expand Down

0 comments on commit d4b5f99

Please sign in to comment.