diff --git a/android/app/build.gradle b/android/app/build.gradle index 96f7149e8..a9c48bfc6 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -15,8 +15,8 @@ android { } minSdkVersion 21 targetSdkVersion 26 - versionCode 227 - versionName "0.6.8" + versionCode 228 + versionName "0.6.8.1" externalNativeBuild { cmake { arguments "-DANDROID_APP_PLATFORM=android-21", "-DANDROID_STL=c++_static", "-DWARNINGS_ARE_ERRORS=ON", "-DWITH_LOCALE=ON", "-DUSE_MOMO=ON" diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 428f55847..5a43bab7a 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,8 +1,8 @@ diff --git a/papers/clipboard-format.md b/papers/clipboard-format.md index 70a908199..67f58b9b4 100644 --- a/papers/clipboard-format.md +++ b/papers/clipboard-format.md @@ -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 format version. for example, 0.6.8 is `227`. +this top line of text is always the same except for the number in parentheses, which is the internal format version. for example, 0.6.8.1 is `228`. the second line is a number between 0 and 18 (decimal) which indicates which column the clip starts from. - `0`: note. diff --git a/papers/format.md b/papers/format.md index e4eaf7cdb..d0135ff6b 100644 --- a/papers/format.md +++ b/papers/format.md @@ -32,6 +32,7 @@ these fields are 0 in format versions prior to 100 (0.6pre1). the format versions are: +- 228: Furnace 0.6.8.1 - 227: Furnace 0.6.8 - 226: Furnace 0.6.8pre2 - 225: Furnace 0.6.8pre1 diff --git a/res/Info.plist b/res/Info.plist index 3cb57209a..26a804cf8 100644 --- a/res/Info.plist +++ b/res/Info.plist @@ -15,17 +15,17 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleLongVersionString - 0.6.8 + 0.6.8.1 CFBundleName Furnace CFBundlePackageType APPL CFBundleShortVersionString - 0.6.8 + 0.6.8.1 CFBundleSignature ???? CFBundleVersion - 0.6.8 + 0.6.8.1 NSHumanReadableCopyright NSHighResolutionCapable diff --git a/res/furnace.rc b/res/furnace.rc index 717c31797..e5a98fbdb 100644 --- a/res/furnace.rc +++ b/res/furnace.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO - FILEVERSION 0,6,8,0 - PRODUCTVERSION 0,6,8,0 + FILEVERSION 0,6,8,1 + PRODUCTVERSION 0,6,8,1 { BLOCK "VarFileInfo" { @@ -33,10 +33,10 @@ "Furnace" VALUE "ProductVersion", - "0.6.8" + "0.6.8.1" VALUE "FileVersion", - "0.6.8" + "0.6.8.1" VALUE "CompanyName", "tildearrow" diff --git a/scripts/update-po.sh b/scripts/update-po.sh index 5cdbf56ca..90f4358a8 100755 --- a/scripts/update-po.sh +++ b/scripts/update-po.sh @@ -1,6 +1,6 @@ #!/bin/bash -FUR_VERSION="0.6.8" +FUR_VERSION="0.6.8.1" EXPORT_LANGS=("de" "es" "fr" "fi" "hy" "id" "ja" "ko" "nl" "pl" "pt_BR" "ru" "sk" "sv" "th" "tr" "uk" "zh" "zh_HK")