Skip to content

v1.1.0

Choose a tag to compare

@github-actions github-actions released this 22 Jun 16:02
· 3 commits to main since this release

Downloads

Platform File
🪟 Windows (x64) TheNotebook-windows-x64.zip
🍎 macOS (Apple Silicon — M1/M2/M3) TheNotebook-macos-arm64.zip
🐧 Linux (x86_64) TheNotebook-linux-x86_64.tar.gz

Intel Mac users: there is no native Intel build in this
release. You have two options:

  1. Run the ARM build via Rosetta 2 (recommended). macOS
    handles this transparently — just double-click the app as
    usual. Install Rosetta first if you haven't:
    softwareupdate --install-rosetta
  2. Build from source on your Intel Mac:
    git clone https://github.com/Bloody-Crow/TheNotebook.git
    cd TheNotebook
    pip install -r requirements.txt pyinstaller
    pyinstaller --onedir --windowed --name TheNotebook \
      --collect-all PyQt6 --collect-all matplotlib \
      --collect-all holidays main.py

Install

Windows

  1. Download TheNotebook-windows-x64.zip and unzip it.
  2. Run TheNotebook.exe.
  3. SmartScreen warning: since the app isn't code-signed,
    Windows may show "Windows protected your PC". Click
    More info → Run anyway.

macOS

  1. Download TheNotebook-macos-arm64.zip and unzip it.
  2. Move TheNotebook.app to your Applications folder.
  3. Gatekeeper warning: since the app isn't notarized, the
    first launch will be blocked. Right-click the app →
    Open → confirm, or run in Terminal:
    xattr -dr com.apple.quarantine /Applications/TheNotebook.app
  4. Intel Mac only: install Rosetta 2 first
    (softwareupdate --install-rosetta) — see note above.

Linux

  1. Download TheNotebook-linux-x86_64.tar.gz and extract it.
  2. chmod +x TheNotebook && ./TheNotebook
  3. Requires glibc ≥ 2.31 and X11 or Wayland.

Notes

  • The app stores all data under ~/MyJournalApp/ (or
    %USERPROFILE%\MyJournalApp\ on Windows).
  • See SECURITY.md
    for the encryption model.
  • To build from source instead, see the README.

Full Changelog: v1.0.0...v1.1.0