Skip to content

Commit 204989e

Browse files
release: v0.2.4
Dashboard redesign, Explore page, import/export settings. See CHANGELOG.md for full details.
1 parent 7beded7 commit 204989e

3 files changed

Lines changed: 22 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.4] — 2026-04-13
11+
12+
### Added
13+
14+
- **Explore page** — new page replacing the graph view as the primary way to browse connections. Topic search with dossier summaries, typed relationship lists, and an entity browser with connection-weighted chips.
15+
- **Project hub home page** — home page now shows a grid of project cards with document counts and last activity dates, plus a recent activity table below.
16+
- **Project detail view** — clicking a project card shows recent activity filtered to that project (`/project/<name>`).
17+
- **Import/export in settings** — Obsidian vault import and markdown export controls added to the settings page.
18+
1019
### Changed
1120

12-
- **License changed from BSL 1.1 to MIT** — the project is now released under the MIT License. All BSL 1.1 terms (Additional Use Grant, Change Date, Change License) no longer apply.
21+
- **License changed from BSL 1.1 to MIT** — the project is now released under the MIT License.
22+
- **Project filter is now a dropdown** — documents and graph pages use a dropdown populated from existing projects instead of a free-text input.
23+
- **Entities merged into Explore** — the standalone entities page is now part of the Explore page as a browsable entity grid.
24+
- **Graph page marked as under development** — with a link directing users to the Explore page.
25+
- **Template cleanup** — inline styles replaced with CSS utility classes across all templates.
26+
27+
### Fixed
28+
29+
- **Project cards showing empty** — projects are now derived from document `project` fields instead of entity records, which vault imports don't create.
1330

1431
## [0.2.3] — 2026-04-12
1532

@@ -549,7 +566,8 @@ If you're upgrading from a pre-2026-04-07 install:
549566
> (MCP, dashboard, REST API) plus the CLI now route through the
550567
> canonical MCP HTTP server.
551568
552-
[Unreleased]: https://github.com/abbacusgroup/Cortex/compare/v0.2.3...HEAD
569+
[Unreleased]: https://github.com/abbacusgroup/Cortex/compare/v0.2.4...HEAD
570+
[0.2.4]: https://github.com/abbacusgroup/Cortex/compare/v0.2.3...v0.2.4
553571
[0.2.3]: https://github.com/abbacusgroup/Cortex/compare/v0.2.2...v0.2.3
554572
[0.2.2]: https://github.com/abbacusgroup/Cortex/compare/v0.2.0...v0.2.2
555573
[0.2.0]: https://github.com/abbacusgroup/Cortex/releases/tag/v0.2.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "abbacus-cortex"
3-
version = "0.2.3"
3+
version = "0.2.4"
44
description = "Cognitive knowledge system with formal ontology, reasoning, and intelligence serving"
55
readme = "README.md"
66
authors = [

src/cortex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Cortex — Cognitive knowledge system."""
22

3-
__version__ = "0.2.3"
3+
__version__ = "0.2.4"

0 commit comments

Comments
 (0)