Skip to content

20231120

Compare
Choose a tag to compare
@ku1ik ku1ik released this 16 Dec 22:24
· 382 commits to develop since this release

Notable changes:

  • upgraded asciinema player to 3.6.3
  • added Dracula to theme selector
  • used term "secret" for non-public recordings instead of previous "private" ("private" in the future will be used to refer to recordings accessible to the authenticated author only)
  • new download dropdown option - .txt - pure text version of the recording
  • added .gif generation instructions to the download dropdown
  • added icons for Share and Download buttons
  • fixed Date header in login emails
  • the cache directory inside the container changed - see below

Upgrading

Bump the container image version number in docker-compose.yml:

 services:
   asciinema:
-    image: ghcr.io/asciinema/asciinema-server:20230826
+    image: ghcr.io/asciinema/asciinema-server:20231120
     # ...

Next, update the cache volume mapping:

 services:
   asciinema:
     volumes:
-      - ./path/to/asciinema/cache:/opt/app/cache
+      - ./path/to/asciinema/cache:/var/cache/asciinema
     # ...

Finally, execute docker compose up -d.