diff --git a/.github/workflows/calm.yml b/.github/workflows/calm.yml index 5b4a533..7121d6f 100644 --- a/.github/workflows/calm.yml +++ b/.github/workflows/calm.yml @@ -256,7 +256,7 @@ jobs: ls -lah calm rm *.dmg export PATH=$PATH:$(pwd)/calm/ - export APP_VERSION=1.3.1 + export APP_VERSION=1.3.2 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 @@ -421,7 +421,7 @@ jobs: ls -lah calm rm *.dmg export PATH=$PATH:$(pwd)/calm/ - export APP_VERSION=1.3.1 + export APP_VERSION=1.3.2 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 @@ -585,7 +585,7 @@ jobs: ls -lah calm rm *.dmg export PATH=$PATH:$(pwd)/calm/ - export APP_VERSION=1.3.1 + export APP_VERSION=1.3.2 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 @@ -769,7 +769,7 @@ jobs: ls -lah calm rm *.dmg export PATH=$PATH:$(pwd)/calm/ - export APP_VERSION=1.3.1 + export APP_VERSION=1.3.2 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 3daad59..578a67b 100644 --- a/README.md +++ b/README.md @@ -31,12 +31,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.3.1). +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.3.2). For more applications made with CALM, please check [Made with CALM](https://github.com/VitoVan/made-with-calm). diff --git a/README_JA.md b/README_JA.md index 794a767..706109b 100644 --- a/README_JA.md +++ b/README_JA.md @@ -31,12 +31,12 @@ calm ## 例

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

-上記の例のソースファイルとバイナリは[こちら](https://github.com/VitoVan/calm/tree/main/docs/examples)と[こちら](https://github.com/VitoVan/calm/releases/tag/1.3.1)です。 +上記の例のソースファイルとバイナリは[こちら](https://github.com/VitoVan/calm/tree/main/docs/examples)と[こちら](https://github.com/VitoVan/calm/releases/tag/1.3.2)です。 CALM で作られた他のアプリケーションについては、[Made with CALM](https://github.com/VitoVan/made-with-calm) をご覧ください。 diff --git a/calm.asd b/calm.asd index 77bd0cf..e9145d5 100644 --- a/calm.asd +++ b/calm.asd @@ -1,6 +1,6 @@ (asdf:defsystem #:calm :description "CALM - Canvas Aided Lisp Magic" - :version "1.3.1" + :version "1.3.2" :author "Vito Van" :license "GNU General Public License, version 2" :depends-on ( diff --git a/docs/changelog.org b/docs/changelog.org index 76a2828..cab6842 100644 --- a/docs/changelog.org +++ b/docs/changelog.org @@ -1,4 +1,25 @@ * CALM +** 1.3.2 +- better code signing for CALM made applications + + Before this change: + + 1. CALM itself will be shown as a damaged application, + the user has to de-quarantine it with command line: + + xattr -d com.apple.quarantine /Applications/Calm.app + + 2. CALM made applications, will also be shown as damaged, + the user also has to de-quarantine them. + + After this change: + + 1. CALM itself still be shown as a damaged application. + + 2. CALM made applications, will shown as: + "cannot be opened because the developer cannot be verified." + which is better, since the user could open it with right click. + ** 1.3.1 - fix macos-14 (arm64) codesign problem https://apple.stackexchange.com/questions/258623/how-to-fix-killed-9-error-in-mac-os/470957#470957 diff --git a/s/usr/all/panic.lisp b/s/usr/all/panic.lisp index e75612b..8493ab9 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.3.1") +(let ((required-version "1.3.2") (calm-version (slot-value (asdf:find-system 'calm) 'asdf:version))) (when (uiop:version< calm-version required-version) (format t