mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-01 10:32:40 +00:00
release v0.6pre10 - THE F R E E Z E
from now on it's just bug fixes. once a pre-release survives a week without issues, 0.6 comes out.
This commit is contained in:
parent
43a1156349
commit
6dafc48e06
8 changed files with 18 additions and 11 deletions
|
@ -15,8 +15,8 @@ android {
|
|||
}
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 26
|
||||
versionCode 169
|
||||
versionName "0.6pre9"
|
||||
versionCode 171
|
||||
versionName "0.6pre10"
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
arguments "-DANDROID_APP_PLATFORM=android-21", "-DANDROID_STL=c++_static", "-DWARNINGS_ARE_ERRORS=ON"
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.tildearrow.furnace"
|
||||
android:versionCode="169"
|
||||
android:versionName="0.6pre9"
|
||||
android:versionCode="171"
|
||||
android:versionName="0.6pre10"
|
||||
android:installLocation="auto">
|
||||
|
||||
<!-- OpenGL ES 2.0 -->
|
||||
|
|
|
@ -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)
|
||||
```
|
||||
|
||||
this top line of text is always the same except for the number in parentheses, which is the internal build number. for example, 0.6pre9 is `169`.
|
||||
this top line of text is always the same except for the number in parentheses, which is the internal build number. for example, 0.6pre10 is `171`.
|
||||
|
||||
the second line is a number between 0 and 18 (decimal) which indicates which column the clip starts from.
|
||||
- `0`: note.
|
||||
|
|
|
@ -32,6 +32,7 @@ these fields are 0 in format versions prior to 100 (0.6pre1).
|
|||
|
||||
the format versions are:
|
||||
|
||||
- 171: Furnace 0.6pre10
|
||||
- 169: Furnace 0.6pre9
|
||||
- 166: Furnace 0.6pre8
|
||||
- 162: Furnace 0.6pre7
|
||||
|
|
|
@ -15,17 +15,17 @@
|
|||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleLongVersionString</key>
|
||||
<string>0.6pre9</string>
|
||||
<string>0.6pre10</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Furnace</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.6pre9</string>
|
||||
<string>0.6pre10</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>0.6pre9</string>
|
||||
<string>0.6pre10</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string></string>
|
||||
<key>NSHighResolutionCapable</key>
|
||||
|
|
|
@ -58,8 +58,8 @@ class DivWorkPool;
|
|||
|
||||
#define DIV_UNSTABLE
|
||||
|
||||
#define DIV_VERSION "dev170"
|
||||
#define DIV_ENGINE_VERSION 170
|
||||
#define DIV_VERSION "0.6pre10"
|
||||
#define DIV_ENGINE_VERSION 171
|
||||
// for imports
|
||||
#define DIV_VERSION_MOD 0xff01
|
||||
#define DIV_VERSION_FC 0xff02
|
||||
|
|
|
@ -30,6 +30,9 @@ const char* aboutLine[]={
|
|||
"the biggest multi-system chiptune tracker!",
|
||||
"featuring DefleMask song compatibility.",
|
||||
"",
|
||||
"this is a version released during The Freeze.",
|
||||
"please report any issues you find!",
|
||||
"",
|
||||
"> CREDITS <",
|
||||
"",
|
||||
"-- program --",
|
||||
|
|
|
@ -80,6 +80,7 @@ void FurnaceGUIFileDialog::convertFilterList(std::vector<String>& filter) {
|
|||
memset(noSysFilter,0,4096);
|
||||
|
||||
String result;
|
||||
char sprintfBuf[4096];
|
||||
|
||||
for (size_t i=0; (i+1)<filter.size(); i+=2) {
|
||||
String label=filter[i];
|
||||
|
@ -101,7 +102,9 @@ void FurnaceGUIFileDialog::convertFilterList(std::vector<String>& filter) {
|
|||
}
|
||||
|
||||
if (!result.empty()) result+=',';
|
||||
result+=fmt::sprintf("%s{%s}",label,ext);
|
||||
// what the heck? fmt::sprintf not working?!
|
||||
snprintf(sprintfBuf,4095,"%s{%s}",label.c_str(),ext.c_str());
|
||||
result+=sprintfBuf;
|
||||
}
|
||||
|
||||
strncpy(noSysFilter,result.c_str(),4095);
|
||||
|
|
Loading…
Reference in a new issue