diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..349555a2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +language: cpp +dist: trusty + +before_install: + - sudo add-apt-repository ppa:openshot.developers/libopenshot-daily -y + - sudo apt-get update -qq + - sudo apt-get install gcc-4.8 cmake libopenshot-audio-dev libunittest++-dev swig libasound2-dev libfreetype6-dev libxcursor-dev libxinerama-dev libxrandr-dev -y + - sudo apt autoremove -y + - pwd + +script: + - mkdir -p build; cd build; + - cmake -D"CMAKE_BUILD_TYPE:STRING=Debug" ../ + - make VERBOSE=1 + +notifications: + email: true + +env: + global: + - TRAVIS_LIBOPENSHOT=TEST + - LANG="en_US.UTF-8" \ No newline at end of file diff --git a/include/Version.h b/include/Version.h index 3af3d9be..545b3900 100644 --- a/include/Version.h +++ b/include/Version.h @@ -36,7 +36,7 @@ #define OPENSHOT_AUDIO_VERSION_MAJOR 0; /// Major version number is incremented when huge features are added or improved. #define OPENSHOT_AUDIO_VERSION_MINOR 1; /// Minor version is incremented when smaller (but still very important) improvements are added. -#define OPENSHOT_AUDIO_VERSION_BUILD 6; /// Build number is incremented when minor bug fixes and less important improvements are added. +#define OPENSHOT_AUDIO_VERSION_BUILD 7; /// Build number is incremented when minor bug fixes and less important improvements are added. #define OPENSHOT_AUDIO_VERSION_SO 6; /// Shared object version number. This increments any time the API and ABI changes (so old apps will no longer link) #define OPENSHOT_AUDIO_VERSION_MAJOR_MINOR STRINGIZE(OPENSHOT_AUDIO_VERSION_MAJOR) "." STRINGIZE(OPENSHOT_AUDIO_VERSION_MINOR); /// A string of the "Major.Minor" version #define OPENSHOT_AUDIO_VERSION_ALL STRINGIZE(OPENSHOT_AUDIO_VERSION_MAJOR) "." STRINGIZE(OPENSHOT_AUDIO_VERSION_MINOR) "." STRINGIZE(OPENSHOT_AUDIO_VERSION_BUILD); /// A string of the entire version "Major.Minor.Build"