From 02e061ba5fe7d0867e88e7563cb3d126560fa8e7 Mon Sep 17 00:00:00 2001 From: shun_iwasawa Date: Wed, 8 May 2019 18:27:55 +0900 Subject: [PATCH] 1.0.1 --- .travis.yml | 3 ++- sources/main.cpp | 2 +- windows/setup.iss | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 80cc5f5..b6537b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,8 @@ install: - mkdir build && cd build script: - - cmake ../sources/ -DQTDIR=/usr/local/Cellar/qt/5.12.2/ + - QTVERSION=`ls /usr/local/Cellar/qt` + - cmake ../sources/ -DQTDIR=/usr/local/Cellar/qt/$QTVERSION/ - make -j 2 matrix: diff --git a/sources/main.cpp b/sources/main.cpp index a5961fd..686837e 100644 --- a/sources/main.cpp +++ b/sources/main.cpp @@ -17,7 +17,7 @@ using namespace PathUtils; int main(int argc, char *argv[]) { QApplication a(argc, argv); a.setApplicationName("KumoWorks"); - a.setApplicationVersion("1.0"); + a.setApplicationVersion("1.0.1"); std::cout << "path = " << QDir::currentPath().toStdString() << std::endl; diff --git a/windows/setup.iss b/windows/setup.iss index aa12b68..54aac02 100644 --- a/windows/setup.iss +++ b/windows/setup.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "KumoWorks" -#define MyAppVersion "1.0" +#define MyAppVersion "1.0.1" #define MyAppPublisher "DWANGO Co., Ltd." #define MyAppURL "https://opentoonz.github.io/" #define MyAppExeName "KumoWorks.exe"