Compare commits

..

3 Commits

Author SHA1 Message Date
semantic-release 6589f5d251 chore(release): 0.2.4 [skip ci] 2025-02-14 02:48:31 +00:00
phernandez 9a4070eccf Merge branch 'main' of github.com:basicmachines-co/basic-memory 2025-02-13 20:40:38 -06:00
phernandez 41d4d81c1a fix: workaround unsigned app 2025-02-13 20:40:33 -06:00
4 changed files with 29 additions and 6 deletions
+4 -5
View File
@@ -64,11 +64,8 @@ jobs:
- name: Install uv
run: |
pip install uv
- name: Create virtual env
run: |
uv venv
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Install librsvg
run: brew install librsvg
@@ -84,6 +81,8 @@ jobs:
uv pip install -e ".[dev]"
cd installer
uv run python setup.py bdist_mac
# Remove quarantine attribute
xattr -dr com.apple.quarantine "dist/Basic Memory Installer.app"
- name: Zip macOS installer
run: |
+8
View File
@@ -1,8 +1,16 @@
# CHANGELOG
## v0.2.4 (2025-02-14)
## v0.2.3 (2025-02-14)
### Bug Fixes
- Workaround unsigned app
([`41d4d81`](https://github.com/basicmachines-co/basic-memory/commit/41d4d81c1ad1dc2923ba0e903a57454a0c8b6b5c))
## v0.2.2 (2025-02-14)
+16
View File
@@ -0,0 +1,16 @@
# Basic Memory Installer
This installer configures Basic Memory to work with Claude Desktop.
## Installation
1. Download the latest installer from the [releases page](https://github.com/basicmachines-co/basic-memory/releases)
2. Unzip the downloaded file
3. Since the app is currently unsigned, you'll need to:
- Right-click (or Control-click) the app
- Select "Open" from the context menu
- Click "Open" in the warning dialog
4. Follow the installation instructions
5. Restart Claude Desktop
The warning only appears the first time you open the app. Future updates will include proper code signing.
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "basic-memory"
version = "0.2.3"
version = "0.2.4"
description = "Local-first knowledge management combining Zettelkasten with knowledge graphs"
readme = "README.md"
requires-python = ">=3.12.1"