diff --git a/.github/workflows/calm.yml b/.github/workflows/calm.yml index bb91e55..7943e1f 100644 --- a/.github/workflows/calm.yml +++ b/.github/workflows/calm.yml @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/README.md b/README.md index 3f98459..9e0f528 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,12 @@ calm ## Examples

- Fan - Mondrian - Meditator + Fan + Mondrian + Meditator

-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). diff --git a/calm.asd b/calm.asd index c69a2fb..aea6583 100644 --- a/calm.asd +++ b/calm.asd @@ -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 ( diff --git a/docs/changelog.org b/docs/changelog.org index 6fd647c..6fd76d2 100644 --- a/docs/changelog.org +++ b/docs/changelog.org @@ -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 diff --git a/s/usr/all/panic.lisp b/s/usr/all/panic.lisp index 86a2bc0..328d8f4 100644 --- a/s/usr/all/panic.lisp +++ b/s/usr/all/panic.lisp @@ -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