Version 1.0.0
This commit is contained in:
parent
056da65d03
commit
4403835268
|
@ -4,8 +4,8 @@ cmake_minimum_required(VERSION 3.3)
|
|||
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.7" CACHE STRING "Minimum OS X deployment version")
|
||||
|
||||
set(appName "Rhubarb Lip Sync")
|
||||
set(appVersionMajor 0)
|
||||
set(appVersionMinor 2)
|
||||
set(appVersionMajor 1)
|
||||
set(appVersionMinor 0)
|
||||
set(appVersionPatch 0)
|
||||
set(appVersionSuffix "")
|
||||
set(appVersion "${appVersionMajor}.${appVersionMinor}.${appVersionPatch}${appVersionSuffix}")
|
||||
|
|
15
VERSION.md
15
VERSION.md
|
@ -1,12 +1,23 @@
|
|||
# Version history
|
||||
|
||||
## Version 0.2
|
||||
## Version 1.0.0
|
||||
|
||||
* More realistic animation using new, predictive algorithm
|
||||
* Smoother animation due to tweening
|
||||
* Support for non-dialog noises (breathing, smacking, etc.)
|
||||
* Substantial speed improvement through multithreading
|
||||
* More reliable voice recognition
|
||||
* Support for long recordings (I've tested a 30-minute file)
|
||||
* Recording may deviate from specified dialog text
|
||||
* Specified dialog text may contain unknown words as well as numbers, abbreviations, etc.
|
||||
|
||||
## Version 0.2.0
|
||||
|
||||
* Multiple output formats: TSV, XML, JSON
|
||||
* Experimental option to supply dialog text
|
||||
* Improved error handling and error messages
|
||||
|
||||
## Version 0.1
|
||||
## Version 0.1.0
|
||||
|
||||
* Two-pass phone detection using [CMU PocketSphinx](http://cmusphinx.sourceforge.net/)
|
||||
* Fixed set of eight mouth shapes, based on the Hanna-Barbera shapes
|
||||
|
|
Loading…
Reference in New Issue