Skip to content

Commit 28512cd

Browse files
committed
bump version to 1.1.1
1 parent 8651ef4 commit 28512cd

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

.github/workflows/calm.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ jobs:
238238
ls -lah calm
239239
rm *.dmg
240240
export PATH=$PATH:$(pwd)/calm/
241-
export APP_VERSION=1.1.0
241+
export APP_VERSION=1.1.1
242242
export APP_ID=com.vitovan.circles
243243
export APP_NAME=Circles
244244
# switch dir, this is unnecessary if you are already at the same dir with canvas.lisp
@@ -398,7 +398,7 @@ jobs:
398398
ls -lah calm
399399
rm *.dmg
400400
export PATH=$PATH:$(pwd)/calm/
401-
export APP_VERSION=1.1.0
401+
export APP_VERSION=1.1.1
402402
export APP_ID=com.vitovan.fan
403403
export APP_NAME=Fan
404404
# switch dir, this is unnecessary if you are already at the same dir with canvas.lisp
@@ -557,7 +557,7 @@ jobs:
557557
ls -lah calm
558558
rm *.dmg
559559
export PATH=$PATH:$(pwd)/calm/
560-
export APP_VERSION=1.1.0
560+
export APP_VERSION=1.1.1
561561
export APP_ID=com.vitovan.mondrian
562562
export APP_NAME=Mondrian
563563
# switch dir, this is unnecessary if you are already at the same dir with canvas.lisp
@@ -719,7 +719,7 @@ jobs:
719719
ls -lah calm
720720
rm *.dmg
721721
export PATH=$PATH:$(pwd)/calm/
722-
export APP_VERSION=1.1.0
722+
export APP_VERSION=1.1.1
723723
export APP_ID=com.vitovan.meditator
724724
export APP_NAME=Meditator
725725
# switch dir, this is unnecessary if you are already at the same dir with canvas.lisp

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ calm
2929
## Examples
3030

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

37-
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).
37+
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).
3838

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

calm.asd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(asdf:defsystem #:calm
22
:description "CALM - Canvas Aided Lisp Magic"
3-
:version "1.1.0"
3+
:version "1.1.1"
44
:author "Vito Van"
55
:license "GNU General Public License, version 2"
66
:depends-on (

docs/changelog.org

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
* CALM
2+
** 1.1.1
3+
- add document for `c:select-font-family`
4+
- reduce CALM first startup time
5+
- fix first startup message (zenity) on Linux
6+
- fix CL systems re-loading problem on recent Linux (tested on Fedora 36)
27
** 1.1.0
38
- expose `*calm-window*` variable
49
for SDL2 Window related control

s/usr/all/panic.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;; version check won't work on JSCL, since the lack of ASDF
66
;;
77
#-jscl
8-
(let ((required-version "1.1.0")
8+
(let ((required-version "1.1.1")
99
(calm-version (slot-value (asdf:find-system 'calm) 'asdf:version)))
1010
(when (uiop:version< calm-version required-version)
1111
(format t

0 commit comments

Comments
 (0)