release v0.6.1

This commit is contained in:
tildearrow 2024-02-03 00:58:43 -05:00
parent 09228cfd74
commit 2957645d9d
12 changed files with 20 additions and 17 deletions

View file

@ -16,7 +16,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_PROJECT_VERSION_MAJOR 0) set(CMAKE_PROJECT_VERSION_MAJOR 0)
set(CMAKE_PROJECT_VERSION_MINOR 6) set(CMAKE_PROJECT_VERSION_MINOR 6)
set(CMAKE_PROJECT_VERSION_PATCH 0) set(CMAKE_PROJECT_VERSION_PATCH 1)
set(BUILD_GUI_DEFAULT ON) set(BUILD_GUI_DEFAULT ON)
set(USE_SDL2_DEFAULT ON) set(USE_SDL2_DEFAULT ON)

View file

@ -31,6 +31,7 @@ for other operating systems, you may [build the source](#developer-info).
- YM3812 (OPL2) - YM3812 (OPL2)
- YMF262 (OPL3) with full 4-op support! - YMF262 (OPL3) with full 4-op support!
- Y8950 (OPL with ADPCM) - Y8950 (OPL with ADPCM)
- ESS ESFM (like OPL3 but with more features)
- square wave chips: - square wave chips:
- AY-3-8910/YM2149(F) used in several computers and game consoles - AY-3-8910/YM2149(F) used in several computers and game consoles
- Commodore VIC used in the VIC-20 - Commodore VIC used in the VIC-20
@ -86,6 +87,7 @@ for other operating systems, you may [build the source](#developer-info).
- modern/fantasy: - modern/fantasy:
- Commander X16 VERA - Commander X16 VERA
- tildearrow Sound Unit - tildearrow Sound Unit
- PowerNoise
- Generic PCM DAC - Generic PCM DAC
- mix and match sound chips! - mix and match sound chips!
- over 200 ready to use presets from computers, game consoles and arcade boards... - over 200 ready to use presets from computers, game consoles and arcade boards...

View file

@ -15,8 +15,8 @@ android {
} }
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 26 targetSdkVersion 26
versionCode 181 versionCode 192
versionName "0.6" versionName "0.6.1"
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="181" android:versionCode="192"
android:versionName="0.6" android:versionName="0.6.1"
android:installLocation="auto"> android:installLocation="auto">
<!-- OpenGL ES 2.0 --> <!-- OpenGL ES 2.0 -->

Binary file not shown.

BIN
demos/specs2/spa.fur Normal file

Binary file not shown.

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.6 is `181`. 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.1 is `192`.
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:
- 192: Furnace 0.6.1
- 181: Furnace 0.6 - 181: Furnace 0.6
- 180: Furnace 0.6pre18 - 180: Furnace 0.6pre18
- 179: Furnace 0.6pre17 - 179: Furnace 0.6pre17

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.6</string> <string>0.6.1</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.6</string> <string>0.6.1</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.6</string> <string>0.6.1</string>
<key>NSHumanReadableCopyright</key> <key>NSHumanReadableCopyright</key>
<string></string> <string></string>
<key>NSHighResolutionCapable</key> <key>NSHighResolutionCapable</key>

View file

@ -8,11 +8,11 @@ fi
cd /tmp/furnace cd /tmp/furnace
if [ ! -e linuxbuild ]; then if [ ! -e aibuild ]; then
mkdir linuxbuild || exit 1 mkdir aibuild || exit 1
fi fi
cd linuxbuild cd aibuild
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_FLAGS="-O2" -DCMAKE_CXX_FLAGS="-O2 -Wall -Wextra -Wno-unused-parameter -Werror" -DWITH_DEMOS=OFF -DWITH_INSTRUMENTS=OFF -DWITH_WAVETABLES=OFF .. || exit 1 cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_FLAGS="-O2" -DCMAKE_CXX_FLAGS="-O2 -Wall -Wextra -Wno-unused-parameter -Werror" -DWITH_DEMOS=OFF -DWITH_INSTRUMENTS=OFF -DWITH_WAVETABLES=OFF .. || exit 1
make -j4 || exit 1 make -j4 || exit 1
@ -20,7 +20,7 @@ make -j4 || exit 1
cd .. cd ..
mkdir -p release/linux/furnace.AppDir || exit 1 mkdir -p release/linux/furnace.AppDir || exit 1
cd linuxbuild cd aibuild
make DESTDIR=/tmp/furnace/release/linux/furnace.AppDir install || exit 1 make DESTDIR=/tmp/furnace/release/linux/furnace.AppDir install || exit 1

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 "dev191" #define DIV_VERSION "0.6.1"
#define DIV_ENGINE_VERSION 191 #define DIV_ENGINE_VERSION 192
// for imports // for imports
#define DIV_VERSION_MOD 0xff01 #define DIV_VERSION_MOD 0xff01
#define DIV_VERSION_FC 0xff02 #define DIV_VERSION_FC 0xff02

View file

@ -44,7 +44,7 @@
#endif #endif
#ifdef HAVE_FREETYPE #ifdef HAVE_FREETYPE
#define FONT_BACKEND_DEFAULT 1 #define FONT_BACKEND_DEFAULT 0
#else #else
#define FONT_BACKEND_DEFAULT 0 #define FONT_BACKEND_DEFAULT 0
#endif #endif