Version 1.7.0
This commit is contained in:
parent
1a2c77ac5b
commit
5169e3e46e
|
@ -1,11 +1,13 @@
|
||||||
# Version history
|
# Version history
|
||||||
|
|
||||||
## Unreleased
|
## Version 1.7.0
|
||||||
|
|
||||||
|
* Integration with Spine animation software
|
||||||
* Full Unicode support. File names, dialog files, strings in exported files etc. should now be fully Unicode-compatible.
|
* Full Unicode support. File names, dialog files, strings in exported files etc. should now be fully Unicode-compatible.
|
||||||
* Added `--machineReadable` command-line option to allow for better integration with other applications.
|
* Added `--machineReadable` command-line option to allow for better integration with other applications.
|
||||||
* Added `--consoleLevel` command-line option to control how much detail to log to the console (`stderr`).
|
* Added `--consoleLevel` command-line option to control how much detail to log to the console (`stderr`).
|
||||||
* Unless specified using `--consoleLevel`, only errors and fatal errors are printed to the console. Previously, warnings were also printed.
|
* Unless specified using `--consoleLevel`, only errors and fatal errors are printed to the console. Previously, warnings were also printed.
|
||||||
|
* Fixed [issue #25](https://github.com/DanielSWolf/rhubarb-lip-sync/issues/25): Segfault with WAVE file containing some initial music before spoken words
|
||||||
|
|
||||||
## Version 1.6.0
|
## Version 1.6.0
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.2)
|
||||||
|
|
||||||
set(appName "Rhubarb Lip Sync")
|
set(appName "Rhubarb Lip Sync")
|
||||||
set(appVersionMajor 1)
|
set(appVersionMajor 1)
|
||||||
set(appVersionMinor 6)
|
set(appVersionMinor 7)
|
||||||
set(appVersionPatch 0)
|
set(appVersionPatch 0)
|
||||||
set(appVersionSuffix "")
|
set(appVersionSuffix "")
|
||||||
set(appVersion "${appVersionMajor}.${appVersionMinor}.${appVersionPatch}${appVersionSuffix}")
|
set(appVersion "${appVersionMajor}.${appVersionMinor}.${appVersionPatch}${appVersionSuffix}")
|
||||||
|
|
Loading…
Reference in New Issue