release v0.6

finally!

thanks to:
- everyone who has helped with testing and bug reporting
- all contributors
- all demo song artists
- every user

thank you
I really mean it
This commit is contained in:
tildearrow 2023-10-01 23:08:46 -05:00
parent 1712c7d07c
commit fbc34fae02
9 changed files with 15 additions and 14 deletions

View file

@ -307,7 +307,7 @@ jobs:
cp -v -r ../instruments new/instruments cp -v -r ../instruments new/instruments
cp -v -r ../wavetables new/wavetables cp -v -r ../wavetables new/wavetables
cd new cd new
wget https://tildearrow.org/furproto/manual.pdf wget https://tildearrow.org/furnace/doc/latest/manual.pdf
cd .. cd ..
hdiutil create -srcfolder new -volname Furnace -format UDZO furnace.dmg hdiutil create -srcfolder new -volname Furnace -format UDZO furnace.dmg

View file

@ -17,7 +17,7 @@ for other operating systems, you may [build the source](#developer-info).
## features ## features
- over 50 sound chips - and counting: - a large selection of sound chips:
- Yamaha FM chips: - Yamaha FM chips:
- YM2151 (OPM) - YM2151 (OPM)
- YM2203 (OPN) - YM2203 (OPN)

View file

@ -15,8 +15,8 @@ android {
} }
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 26 targetSdkVersion 26
versionCode 180 versionCode 181
versionName "0.6pre18" versionName "0.6"
externalNativeBuild { externalNativeBuild {
cmake { cmake {
arguments "-DANDROID_APP_PLATFORM=android-21", "-DANDROID_STL=c++_static", "-DWARNINGS_ARE_ERRORS=ON" arguments "-DANDROID_APP_PLATFORM=android-21", "-DANDROID_STL=c++_static", "-DWARNINGS_ARE_ERRORS=ON"

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.tildearrow.furnace" package="org.tildearrow.furnace"
android:versionCode="180" android:versionCode="181"
android:versionName="0.6pre18" android:versionName="0.6"
android:installLocation="auto"> android:installLocation="auto">
<!-- OpenGL ES 2.0 --> <!-- OpenGL ES 2.0 -->

View file

@ -6,7 +6,7 @@ when copying pattern data from Furnace, it's stored in the clipboard as plain te
org.tildearrow.furnace - Pattern Data (144) org.tildearrow.furnace - Pattern Data (144)
``` ```
this top line of text is always the same except for the number in parentheses, which is the internal build number. for example, 0.6pre18 is `180`. this top line of text is always the same except for the number in parentheses, which is the internal build number. for example, 0.6 is `181`.
the second line is a number between 0 and 18 (decimal) which indicates which column the clip starts from. the second line is a number between 0 and 18 (decimal) which indicates which column the clip starts from.
- `0`: note. - `0`: note.

View file

@ -32,6 +32,7 @@ these fields are 0 in format versions prior to 100 (0.6pre1).
the format versions are: the format versions are:
- 181: Furnace 0.6
- 180: Furnace 0.6pre18 - 180: Furnace 0.6pre18
- 179: Furnace 0.6pre17 - 179: Furnace 0.6pre17
- 178: Furnace 0.6pre16 - 178: Furnace 0.6pre16

View file

@ -15,17 +15,17 @@
<key>CFBundleInfoDictionaryVersion</key> <key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string> <string>6.0</string>
<key>CFBundleLongVersionString</key> <key>CFBundleLongVersionString</key>
<string>0.6pre18</string> <string>0.6</string>
<key>CFBundleName</key> <key>CFBundleName</key>
<string>Furnace</string> <string>Furnace</string>
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.6pre18</string> <string>0.6</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.6pre18</string> <string>0.6</string>
<key>NSHumanReadableCopyright</key> <key>NSHumanReadableCopyright</key>
<string></string> <string></string>
<key>NSHighResolutionCapable</key> <key>NSHighResolutionCapable</key>

View file

@ -52,7 +52,7 @@ cd ..
cp ../../../LICENSE . || exit 1 cp ../../../LICENSE . || exit 1
cp ../../../res/releaseReadme/stable-linux.txt README.md || exit 1 cp ../../../res/releaseReadme/stable-linux.txt README.md || exit 1
cp -r ../../../papers papers || exit 1 cp -r ../../../papers papers || exit 1
curl "https://tildearrow.org/furproto/manual.pdf" > manual.pdf curl "https://tildearrow.org/furnace/doc/latest/manual.pdf" > manual.pdf
rmdir usr || exit 1 rmdir usr || exit 1
strip -s furnace strip -s furnace

View file

@ -52,10 +52,10 @@ class DivWorkPool;
#define EXTERN_BUSY_BEGIN_SOFT e->softLocked=true; e->isBusy.lock(); #define EXTERN_BUSY_BEGIN_SOFT e->softLocked=true; e->isBusy.lock();
#define EXTERN_BUSY_END e->isBusy.unlock(); e->softLocked=false; #define EXTERN_BUSY_END e->isBusy.unlock(); e->softLocked=false;
#define DIV_UNSTABLE //#define DIV_UNSTABLE
#define DIV_VERSION "0.6pre18" #define DIV_VERSION "0.6"
#define DIV_ENGINE_VERSION 180 #define DIV_ENGINE_VERSION 181
// for imports // for imports
#define DIV_VERSION_MOD 0xff01 #define DIV_VERSION_MOD 0xff01
#define DIV_VERSION_FC 0xff02 #define DIV_VERSION_FC 0xff02