-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e9aa4b3
commit e3d0640
Showing
9 changed files
with
76 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version: 1.4.3{build} | ||
version: 1.4.4{build} | ||
pull_requests: | ||
do_not_increment_build_number: true | ||
skip_tags: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
export TAHOMA2DVERSION=1.4.3 | ||
export TAHOMA2DVERSION=1.4.4 | ||
|
||
if [ -d /usr/local/Cellar/qt@5 ] | ||
then | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
set(VERSION 1.4.3) | ||
set(VERSION 1.4.4) | ||
|
||
set(MOC_HEADERS | ||
aboutpopup.h | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
#!/bin/bash | ||
|
||
OLDVERSION=$1 | ||
NEWVERSION=$2 | ||
RELEASEDATE=$3 | ||
|
||
# .github/ISSUE_TEMPLATE/bug_report.yml | ||
dos2unix .github/ISSUE_TEMPLATE/bug_report.yml | ||
sed -e"s/ - $OLDVERSION/ - $NEWVERSION/" -e "s/ - Nightly.*$/&\n - $OLDVERSION/" .github/ISSUE_TEMPLATE/bug_report.yml >| tmp.txt | ||
unix2dos tmp.txt | ||
mv tmp.txt .github/ISSUE_TEMPLATE/bug_report.yml | ||
|
||
# appveyor.yml | ||
dos2unix appveyor.yml | ||
sed -e"s/$OLDVERSION/$NEWVERSION/" appveyor.yml >| tmp.txt | ||
unix2dos tmp.txt | ||
mv tmp.txt appveyor.yml | ||
|
||
# ci-scripts/osx/tahoma-buildpkg.sh | ||
dos2unix ci-scripts/osx/tahoma-buildpkg.sh | ||
sed -e"s/$OLDVERSION/$NEWVERSION/" ci-scripts/osx/tahoma-buildpkg.sh >| tmp.txt | ||
unix2dos tmp.txt | ||
mv tmp.txt ci-scripts/osx/tahoma-buildpkg.sh | ||
|
||
# toonz/cmake/BundleInfo.plist.in | ||
dos2unix toonz/cmake/BundleInfo.plist.in | ||
sed -e"s/$OLDVERSION/$NEWVERSION/" toonz/cmake/BundleInfo.plist.in >| tmp.txt | ||
unix2dos tmp.txt | ||
mv tmp.txt toonz/cmake/BundleInfo.plist.in | ||
|
||
# toonz/installer/windows/setup.iss | ||
dos2unix toonz/installer/windows/setup.iss | ||
sed -e"s/$OLDVERSION/$NEWVERSION/" toonz/installer/windows/setup.iss >| tmp.txt | ||
unix2dos tmp.txt | ||
mv tmp.txt toonz/installer/windows/setup.iss | ||
|
||
# toonz/sources/include/tversion.h | ||
OLDMINOR=`echo $OLDVERSION | cut -c 3` | ||
NEWMINOR=`echo $NEWVERSION | cut -c 3` | ||
OLDFIX=`echo $OLDVERSION | cut -c 5` | ||
if [ "$OLDFIX" = "" ] | ||
then | ||
OLDFIX="0" | ||
fi | ||
NEWFIX=`echo $NEWVERSION | cut -c 5` | ||
if [ "$NEWFIX" = "" ] | ||
then | ||
NEWFIX="0" | ||
fi | ||
dos2unix toonz/sources/include/tversion.h | ||
sed -e"s/applicationVersion = 1.$OLDMINOR/applicationVersion = 1.$NEWMINOR/" -e"s/applicationRevision = $OLDFIX/applicationRevision = $NEWFIX/" toonz/sources/include/tversion.h >| tmp.txt | ||
unix2dos tmp.txt | ||
mv tmp.txt toonz/sources/include/tversion.h | ||
|
||
# toonz/sources/toonz/CMakeLists.txt | ||
dos2unix toonz/sources/toonz/CMakeLists.txt | ||
sed -e"s/$OLDVERSION/$NEWVERSION/" toonz/sources/toonz/CMakeLists.txt >| tmp.txt | ||
unix2dos tmp.txt | ||
mv tmp.txt toonz/sources/toonz/CMakeLists.txt | ||
|
||
# toonz/sources/xdg-data/org.tahoma2d.Tahoma2D.metainfo.xml | ||
dos2unix toonz/sources/xdg-data/org.tahoma2d.Tahoma2D.metainfo.xml | ||
sed -e "s/ <release version=\"$OLDVERSION\"/ <release version=\"$NEWVERSION\" date=\"$RELEASEDATE\"\/>\n&/" toonz/sources/xdg-data/org.tahoma2d.Tahoma2D.metainfo.xml >| tmp.txt | ||
unix2dos tmp.txt | ||
mv tmp.txt toonz/sources/xdg-data/org.tahoma2d.Tahoma2D.metainfo.xml |