Skip to content

Commit

Permalink
release v0.6pre17
Browse files Browse the repository at this point in the history
hopefully this is the final one before 0.6
  • Loading branch information
tildearrow committed Sep 25, 2023
1 parent d4657f4 commit de2beb7
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {
}
minSdkVersion 21
targetSdkVersion 26
versionCode 178
versionName "0.6pre16"
versionCode 179
versionName "0.6pre17"
externalNativeBuild {
cmake {
arguments "-DANDROID_APP_PLATFORM=android-21", "-DANDROID_STL=c++_static", "-DWARNINGS_ARE_ERRORS=ON"
Expand Down
4 changes: 2 additions & 2 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -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="178"
android:versionName="0.6pre16"
android:versionCode="179"
android:versionName="0.6pre17"
android:installLocation="auto">

<!-- OpenGL ES 2.0 -->
Expand Down
2 changes: 1 addition & 1 deletion papers/clipboard-format.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6pre16 is `178`.
this top line of text is always the same except for the number in parentheses, which is the internal build number. for example, 0.6pre17 is `179`.

the second line is a number between 0 and 18 (decimal) which indicates which column the clip starts from.
- `0`: note.
Expand Down
1 change: 1 addition & 0 deletions papers/format.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ these fields are 0 in format versions prior to 100 (0.6pre1).

the format versions are:

- 179: Furnace 0.6pre17
- 178: Furnace 0.6pre16
- 177: Furnace 0.6pre15
- 175: Furnace 0.6pre14
Expand Down
6 changes: 3 additions & 3 deletions res/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleLongVersionString</key>
<string>0.6pre16</string>
<string>0.6pre17</string>
<key>CFBundleName</key>
<string>Furnace</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.6pre16</string>
<string>0.6pre17</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.6pre16</string>
<string>0.6pre17</string>
<key>NSHumanReadableCopyright</key>
<string></string>
<key>NSHighResolutionCapable</key>
Expand Down
4 changes: 2 additions & 2 deletions src/engine/engine.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ class DivWorkPool;

#define DIV_UNSTABLE

#define DIV_VERSION "0.6pre16"
#define DIV_ENGINE_VERSION 178
#define DIV_VERSION "0.6pre17"
#define DIV_ENGINE_VERSION 179
// for imports
#define DIV_VERSION_MOD 0xff01
#define DIV_VERSION_FC 0xff02
Expand Down

0 comments on commit de2beb7

Please sign in to comment.