Skip to content

Commit

Permalink
Merge pull request #24 from OpenShot/release
Browse files Browse the repository at this point in the history
Releasing version to 0.1.7 (SO: 6)
  • Loading branch information
jonoomph committed Sep 19, 2018
2 parents 52536e4 + feafc5d commit 21e092d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion include/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 21e092d

Please sign in to comment.