Skip to content

Commit

Permalink
bump version to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
VitoVan committed Jun 26, 2023
1 parent 8651ef4 commit 28512cd
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/calm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ jobs:
ls -lah calm
rm *.dmg
export PATH=$PATH:$(pwd)/calm/
export APP_VERSION=1.1.0
export APP_VERSION=1.1.1
export APP_ID=com.vitovan.circles
export APP_NAME=Circles
# switch dir, this is unnecessary if you are already at the same dir with canvas.lisp
Expand Down Expand Up @@ -398,7 +398,7 @@ jobs:
ls -lah calm
rm *.dmg
export PATH=$PATH:$(pwd)/calm/
export APP_VERSION=1.1.0
export APP_VERSION=1.1.1
export APP_ID=com.vitovan.fan
export APP_NAME=Fan
# switch dir, this is unnecessary if you are already at the same dir with canvas.lisp
Expand Down Expand Up @@ -557,7 +557,7 @@ jobs:
ls -lah calm
rm *.dmg
export PATH=$PATH:$(pwd)/calm/
export APP_VERSION=1.1.0
export APP_VERSION=1.1.1
export APP_ID=com.vitovan.mondrian
export APP_NAME=Mondrian
# switch dir, this is unnecessary if you are already at the same dir with canvas.lisp
Expand Down Expand Up @@ -719,7 +719,7 @@ jobs:
ls -lah calm
rm *.dmg
export PATH=$PATH:$(pwd)/calm/
export APP_VERSION=1.1.0
export APP_VERSION=1.1.1
export APP_ID=com.vitovan.meditator
export APP_NAME=Meditator
# switch dir, this is unnecessary if you are already at the same dir with canvas.lisp
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ calm
## Examples

<p align="center">
<a href="https://vitovan.com/calm/1.1.0/fan/calm.html"><img width="250" alt="Fan" src="./docs/examples/fan/canvas.png"></a>
<a href="https://vitovan.com/calm/1.1.0/mondrian/calm.html"><img width="250" alt="Mondrian" src="./docs/examples/mondrian/canvas.png"></a>
<a href="https://vitovan.com/calm/1.1.0/meditator/calm.html"><img width="250" alt="Meditator" src="./docs/examples/meditator/canvas.png"></a>
<a href="https://vitovan.com/calm/1.1.1/fan/calm.html"><img width="250" alt="Fan" src="./docs/examples/fan/canvas.png"></a>
<a href="https://vitovan.com/calm/1.1.1/mondrian/calm.html"><img width="250" alt="Mondrian" src="./docs/examples/mondrian/canvas.png"></a>
<a href="https://vitovan.com/calm/1.1.1/meditator/calm.html"><img width="250" alt="Meditator" src="./docs/examples/meditator/canvas.png"></a>
</p>

Source files and binaries for the above examples are [here](https://github.com/VitoVan/calm/tree/main/docs/examples) and [here](https://github.com/VitoVan/calm/releases/tag/1.1.0).
Source files and binaries for the above examples are [here](https://github.com/VitoVan/calm/tree/main/docs/examples) and [here](https://github.com/VitoVan/calm/releases/tag/1.1.1).

For more applications made with CALM, please check [Made with CALM](https://github.com/VitoVan/made-with-calm).

Expand Down
2 changes: 1 addition & 1 deletion calm.asd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(asdf:defsystem #:calm
:description "CALM - Canvas Aided Lisp Magic"
:version "1.1.0"
:version "1.1.1"
:author "Vito Van"
:license "GNU General Public License, version 2"
:depends-on (
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.org
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
* CALM
** 1.1.1
- add document for `c:select-font-family`
- reduce CALM first startup time
- fix first startup message (zenity) on Linux
- fix CL systems re-loading problem on recent Linux (tested on Fedora 36)
** 1.1.0
- expose `*calm-window*` variable
for SDL2 Window related control
Expand Down
2 changes: 1 addition & 1 deletion s/usr/all/panic.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;; version check won't work on JSCL, since the lack of ASDF
;;
#-jscl
(let ((required-version "1.1.0")
(let ((required-version "1.1.1")
(calm-version (slot-value (asdf:find-system 'calm) 'asdf:version)))
(when (uiop:version< calm-version required-version)
(format t
Expand Down

0 comments on commit 28512cd

Please sign in to comment.