Skip to content

Releases: LeslieLeung/glean

⚠️ v0.2.3-alpha.1 (Alpha)

19 Dec 06:59
920784a

Choose a tag to compare

Pre-release

⚠️ This is a Alpha

Warning: This is a pre-release version intended for testing purposes only.
Do not use in production environments.

Docker Images

This pre-release includes the following Docker images:

# Pull images
docker pull ghcr.io/LeslieLeung/glean-backend:v0.2.3-alpha.1
docker pull ghcr.io/LeslieLeung/glean-web:v0.2.3-alpha.1
docker pull ghcr.io/LeslieLeung/glean-admin:v0.2.3-alpha.1

Testing with Docker Compose

Create a docker-compose.override.yml file:

version: '3.8'

services:
  backend:
    image: ghcr.io/LeslieLeung/glean-backend:v0.2.3-alpha.1
  
  web:
    image: ghcr.io/LeslieLeung/glean-web:v0.2.3-alpha.1
  
  admin:
    image: ghcr.io/LeslieLeung/glean-admin:v0.2.3-alpha.1

Then run:

docker compose up -d

Desktop Apps

Download the desktop application for your platform from the assets below.

Note: Desktop apps for pre-release versions will NOT auto-update.

Feedback

Found an issue? Please report it at:
https://github.com/LeslieLeung/glean/issues


Changelog

What's Changed

  • chore(deps): update actions/checkout action to v6 by @renovate[bot] in #50
  • chore(deps): update actions/setup-node action to v6 by @renovate[bot] in #51
  • chore(deps): update dependency pnpm to v10 by @renovate[bot] in #54
  • chore(deps): update softprops/action-gh-release action to v2 by @renovate[bot] in #62
  • chore(deps): update dependency node to v24 by @renovate[bot] in #53
  • chore(deps): update pnpm/action-setup action to v4 by @renovate[bot] in #55
  • chore(deps): update actions/cache action to v5 by @renovate[bot] in #49
  • fix(deps): update dependency i18next-browser-languagedetector to v8 by @renovate[bot] in #65
  • fix: milvus connection; collection not found due to race conditions by @LeslieLeung in #67
  • fix(deps): update dependency date-fns to v4 by @renovate[bot] in #63
  • fix(deps): update dependency i18next to v25 by @renovate[bot] in #64
  • fix(deps): update dependency react-i18next to v16 by @renovate[bot] in #66
  • chore(deps): update dependency zod to v4.2.1 by @renovate[bot] in #69
  • feat: add pre release workflow by @LeslieLeung in #70

Full Changelog: v0.2.2...v0.2.3-alpha.1

0.2.2

17 Dec 14:45
c42a2e7

Choose a tag to compare

Docker Images

This release includes the following Docker images:

  • ghcr.io/LeslieLeung/glean-backend:v0.2.2
  • ghcr.io/LeslieLeung/glean-web:v0.2.2
  • ghcr.io/LeslieLeung/glean-admin:v0.2.2

Desktop Apps

Download the desktop application for your platform from the assets below.

Quick Start

# Download docker-compose.yml
curl -fsSL https://raw.githubusercontent.com/LeslieLeung/glean/main/docker-compose.yml -o docker-compose.yml

# Start Glean
docker compose up -d

# Access at http://localhost

See README for full documentation.

What's Changed

Full Changelog: v0.2.0...v0.2.2

0.2.1

16 Dec 08:13
9dd8beb

Choose a tag to compare

Changelog

Fix deployment issues.

Important

If you're upgrading from a previous version, you'll need to purge the old data due to incompatibility with docker compose down -v. Note that this command will DELETE ALL DATA permanently.
Glean is still in active development, and I sincerely apologize for this inconvenience.

Docker Images

This release includes the following Docker images:

  • ghcr.io/LeslieLeung/glean-backend:v0.2.1
  • ghcr.io/LeslieLeung/glean-web:v0.2.1
  • ghcr.io/LeslieLeung/glean-admin:v0.2.1

Desktop Apps

Download the desktop application for your platform from the assets below.

Quick Start

# Download docker-compose.yml
curl -fsSL https://raw.githubusercontent.com/LeslieLeung/glean/main/docker-compose.yml -o docker-compose.yml

# Start Glean
docker compose up -d

# Access at http://localhost

See README for full documentation.

Full Changelog: v0.2.0...v0.2.1

0.2.0

15 Dec 20:38
716e0c7

Choose a tag to compare

🎉 Glean v0.2.0 发布!

✨ 核心更新:
• 🧠 智能偏好系统 - 基于向量学习你的阅读喜好
• 📊 智能推荐视图 - 自动分层展示(推荐/普通/可能不感兴趣)
• 👍👎 喜欢/不喜欢 - 一键反馈偏好,持续优化推荐
• 🔍 向量检索 - Milvus 驱动的语义相似度计算
• 🌐 国际化支持 - 中英文双语界面

🛠️ 系统增强:
• 统一日志系统 - 结构化日志,便于调试
• 管理后台升级 - 系统配置、注册开关
• UI 组件库更新 - 基于 COSS UI 的现代化界面

🎉 Glean v0.2.0 Released!

✨ Core Updates:
• 🧠 Preference System - Vector-based learning of your reading preferences
• 📊 Smart View - Automatic tiered display (Recommended/Normal/Likely Not Interested)
• 👍👎 Like/Dislike - One-click preference feedback for continuous recommendation optimization
• 🔍 Vector Search - Milvus-powered semantic similarity computation
• 🌐 Internationalization Support - Bilingual interface in Chinese and English

🛠️ System Enhancements:
• Unified Logging System - Structured logs for easier debugging
• Admin Dashboard Upgrade - System configuration and registration toggle
• UI Component Library Update - Modern interface based on COSS UI

What's Changed

  • Add Claude Code GitHub Workflow by @LeslieLeung in #4
  • fix(backend): fix CI errors with linting and testing by @frostming in #3
  • Package frontend with Electron by @LeslieLeung in #6
  • Persist user login state in Electron app by @LeslieLeung in #8
  • Fix development setup script and default configuration by @eic0 in #11
  • chore: Configure Renovate by @renovate[bot] in #13
  • fix(deps): update all non-major dependencies by @renovate[bot] in #14
  • chore(deps): update actions/checkout action to v6 by @renovate[bot] in #15
  • chore(deps): update astral-sh/setup-uv action to v7 by @renovate[bot] in #18
  • chore(deps): update actions/setup-node action to v6 by @renovate[bot] in #17
  • chore(deps): update postgres docker tag to v18 by @renovate[bot] in #29
  • chore(deps): update redis docker tag to v8 by @renovate[bot] in #30
  • chore(deps): update codecov/codecov-action action to v5 by @renovate[bot] in #19
  • chore(deps): update softprops/action-gh-release action to v2 by @renovate[bot] in #31
  • chore(deps): update docker/build-push-action action to v6 by @renovate[bot] in #25
  • Fix frontend lint issues by @LeslieLeung in #40
  • Fix TypeScript error in client electronAPI property by @LeslieLeung in #41
  • chore(deps): update dependency electron-builder to v26 by @renovate[bot] in #21
  • chore(deps): update dependency @vitejs/plugin-react-swc to v4 by @renovate[bot] in #20
  • chore(deps): update node.js to v24 by @renovate[bot] in #26
  • fix(deps): update dependency @hookform/resolvers to v5 by @renovate[bot] in #33
  • chore(deps): update pnpm/action-setup action to v4 by @renovate[bot] in #28
  • fix(deps): update dependency react-router-dom to v7 by @renovate[bot] in #35
  • fix(deps): update dependency zod to v4 by @renovate[bot] in #37
  • chore(deps): update dependency vite to v7 by @renovate[bot] in #24
  • fix(deps): update dependency date-fns to v4 by @renovate[bot] in #34
  • fix(deps): update dependency tailwind-merge to v3 by @renovate[bot] in #36
  • fix(deps): update dependency zustand to v5 by @renovate[bot] in #38
  • chore(deps): update pnpm to v10 by @renovate[bot] in #27
  • fix(deps): update dependency lucide-react to ^0.561.0 by @renovate[bot] in #42
  • chore(deps): update dependency eslint-config-prettier to v10 by @renovate[bot] in #23
  • chore(deps): update typescript-eslint monorepo to v8 (major) by @renovate[bot] in #32
  • chore(deps): update dependency eslint to v9 by @renovate[bot] in #22
  • chore(deps): update dependency globals to v16 by @renovate[bot] in #43
  • feat: Add system settings and registration control by @eic0 in #12
  • chore(deps): update all non-major dependencies by @renovate[bot] in #44
  • chore(deps): update all non-major dependencies by @renovate[bot] in #47
  • Milestone 3: Preference System by @LeslieLeung in #45

New Contributors

Full Changelog: v0.1.4...v0.2.0

v0.1.4

02 Dec 02:15
eb5f120

Choose a tag to compare

Docker Images

This release includes the following Docker images:

  • ghcr.io/LeslieLeung/glean-backend:v0.1.4
  • ghcr.io/LeslieLeung/glean-web:v0.1.4
  • ghcr.io/LeslieLeung/glean-admin:v0.1.4

Quick Start

# Download docker-compose.yml
curl -fsSL https://raw.githubusercontent.com/LeslieLeung/glean/main/docker-compose.yml -o docker-compose.yml

# Start Glean
docker compose up -d

# Access at http://localhost

See README for full documentation.

Full Changelog: v0.1.3...v0.1.4

v0.1.3

01 Dec 20:01
72dea23

Choose a tag to compare

Docker Images

This release includes the following Docker images:

  • ghcr.io/LeslieLeung/glean-backend:v0.1.3
  • ghcr.io/LeslieLeung/glean-web:v0.1.3
  • ghcr.io/LeslieLeung/glean-admin:v0.1.3

Quick Start

# Download docker-compose.yml
curl -fsSL https://raw.githubusercontent.com/LeslieLeung/glean/main/docker-compose.yml -o docker-compose.yml

# Start Glean
docker compose up -d

# Access at http://localhost

See README for full documentation.

Full Changelog: v0.1.2...v0.1.3

v0.1.2

30 Nov 20:47
a3e4d89

Choose a tag to compare

Docker Images

This release includes the following Docker images:

  • ghcr.io/LeslieLeung/glean-backend:v0.1.2
  • ghcr.io/LeslieLeung/glean-web:v0.1.2
  • ghcr.io/LeslieLeung/glean-admin:v0.1.2

Quick Start

# Download docker-compose.yml
curl -fsSL https://raw.githubusercontent.com/LeslieLeung/glean/main/docker-compose.yml -o docker-compose.yml

# Start Glean
docker compose up -d

# Access at http://localhost

See README for full documentation.

Full Changelog: v0.1.1...v0.1.2

v0.1.1

30 Nov 20:18
eacbdb4

Choose a tag to compare

Docker Images

This release includes the following Docker images:

  • ghcr.io/LeslieLeung/glean-backend:v0.1.1
  • ghcr.io/LeslieLeung/glean-web:v0.1.1
  • ghcr.io/LeslieLeung/glean-admin:v0.1.1

Quick Start

# Download docker-compose.yml
curl -fsSL https://raw.githubusercontent.com/LeslieLeung/glean/main/docker-compose.yml -o docker-compose.yml

# Start Glean
docker compose up -d

# Access at http://localhost

See README for full documentation.

Full Changelog: v0.1.0...v0.1.1

v0.1.0

30 Nov 20:07
57c3c15

Choose a tag to compare

Docker Images

This release includes the following Docker images:

  • ghcr.io/LeslieLeung/glean-backend:v0.1.0
  • ghcr.io/LeslieLeung/glean-web:v0.1.0
  • ghcr.io/LeslieLeung/glean-admin:v0.1.0

Quick Start

# Download docker-compose.yml
curl -fsSL https://raw.githubusercontent.com/LeslieLeung/glean/main/docker-compose.yml -o docker-compose.yml

# Start Glean
docker compose up -d

# Access at http://localhost

See README for full documentation.

Full Changelog: https://github.com/LeslieLeung/glean/commits/v0.1.0