final tweaks for 1.2.

This commit is contained in:
Bryce Covert
2016-07-21 19:13:23 -07:00
parent 885e37390b
commit d0fb4736aa
5 changed files with 19 additions and 6 deletions

View File

@@ -8,9 +8,9 @@ cd target
mv osx "Tick's Tales - OS X"
mv linux "Tick's Tales - Linux"
mv windows "Tick's Tales - Windows"
zip -r linux-1.1.`cat ../last-release`.zip "Tick's Tales - Linux"
zip -r osx-1.1.`cat ../last-release`.zip "Tick's Tales - OS X"
zip -r windows-1.1.`cat ../last-release`.zip "Tick's Tales - Windows"
zip -r linux-1.2.`cat ../last-release`.zip "Tick's Tales - Linux"
zip -r osx-1.2.`cat ../last-release`.zip "Tick's Tales - OS X"
zip -r windows-1.2.`cat ../last-release`.zip "Tick's Tales - Windows"
popd
rm ~/Dropbox/TicksTalesBuilds/*.zip
cp target/*.zip ~/Dropbox/TicksTalesBuilds/

View File

@@ -1 +1 @@
8
2

View File

@@ -1,4 +1,4 @@
(def version (str "1.1." (clojure.string/trim-newline (slurp "last-release"))))
(def version (str "1.2." (clojure.string/trim-newline (slurp "last-release"))))
(defproject advent version
:description "FIXME: write description"

13
desktop/release-notes.md Normal file
View File

@@ -0,0 +1,13 @@
1.1.6
* Fixed issue with mints eaten count being reset
* Added a music staff to correspond with the safe
* Added an inventory item after spying on Gandarf twice
* Improved the sheep's hitbox and rotated the carrot cursor
* Made the bull and flies more interchangeable.
* Added a warning about missing the cream if you try to add the slobber
* Added a message about missing cream when looking at mushrooms in flask
* Added a couple of cat hints
* Tweaked dialogue when spying on Gandarf through window
* Fixed "sheey's milk" typo
* Won't face grandma on ladder
* Drinking strength potion outside jail won't send you to jail

View File

@@ -1,6 +1,6 @@
#!/bin/bash
gawk -i inplace ' { print $1+1; } ' last-release
git tag -a v1.1.`cat last-release` -m "tagging version 1.1.`cat last-release`"
git tag -a v1.2.`cat last-release` -m "tagging version 1.2.`cat last-release`"
lein with-profile steam do clean, compile, uberjar
java -jar packr.jar build-windows.json
java -jar packr.jar build-osx.json