DeskHive 是一个基于 Vue 3 和 Tauri 构建的现代化桌面待办事项管理工具。它专注于提供简洁、高效的任务管理体验,所有数据本地存储,无需云端服务,保护您的隐私。
- ✅ 快速创建、编辑、删除任务
- ✅ 双击快速删除,右键菜单丰富操作
- ✅ 任务完成状态切换,带动画效果
- ✅ 支持任务拖拽排序(分组内/跨分组)
- ✅ 已完成任务独立分组管理
- 📂 快速创建分组:输入
/分组名即可 - 📂 对话框创建:右键"+"按钮选择新建分组
- 📂 分组重命名、删除、折叠/展开
- 📂 分组顺序调整(上移/下移)
- 📂 跨分组拖拽任务
- 🕐 设置任务截止时间
- 🕐 实时倒计时显示
- 🕐 智能时间指示器:
- 🟢 绿色:距离截止时间充足
- 🔴 红色:已超过截止时间
- 🟡 黄色:任务创建天数提醒
- 🕐 悬停显示详细时间信息
- 🌈 现代化、简洁的 UI 设计
- 🌈 响应式布局,自适应窗口大小
- 🌈 日间/夜间主题切换
- 🌈 窗口透明度自定义
- 🌈 流畅的动画效果
- 💻 系统托盘集成
- 💻 开机自启动选项
- 💻 全局快捷键支持
- 💻 窗口位置记忆
- 💻 禁用拖动窗口选项
- 前往 Releases 页面
- 下载最新版本的安装包(
.msi文件) - 双击安装包,按照提示完成安装
- 启动 DeskHive,开始管理您的任务!
- 操作系统: Windows 10/11 (64位)
- 内存: 最低 8MB
- 磁盘空间: 约 50MB
| 操作 | 方法 |
|---|---|
| 创建任务 | 底部输入框输入内容,按回车或点击"+" |
| 快速创建分组 | 输入 /分组名 按回车 |
| 完成任务 | 悬停任务,点击"✓"按钮 |
| 取消完成 | 在已完成分组中点击"↶"按钮 |
| 删除任务 | 双击任务项 |
| 编辑任务 | 右键任务 → "✏️ 编辑任务" |
| 拖动排序 | 点住"☰"按钮拖动 |
| 操作 | 方法 |
|---|---|
| 快速创建 | 输入 /分组名 按回车 |
| 对话框创建 | 右键"+"按钮 → "📁 新建分组" |
| 重命名 | 右键分组标题 → "✏️ 重命名分组" |
| 删除 | 右键分组标题 → "🗑️ 删除分组" |
| 折叠/展开 | 点击分组标题左侧"▼"图标 |
| 调整顺序 | 悬停分组标题,点击"▲▼"按钮 |
| 操作 | 方法 |
|---|---|
| 设置截止时间 | 右键任务 → "📅 设置截止时间" |
| 移除截止时间 | 右键任务 → "🗑️ 移除截止时间" |
| 查看时间详情 | 悬停时间指示器 |
- 分组内拖动: 点住"☰"按钮,在同一分组内上下拖动
- 跨分组拖动:
- 拖到目标分组任务列表 → 插入指定位置
- 拖到目标分组标题 → 添加到末尾
- 拖动提示: 目标区域显示蓝色高亮
- 左键点击: 显示/隐藏主窗口
- 右键菜单:
- 显示/隐藏
- 设置
- 退出
- 前端框架: Vue 3.5 + TypeScript
- 构建工具: Vite 6.4
- 桌面框架: Tauri 2.0
- 后端语言: Rust
- UI 设计: 自定义 CSS(响应式)
- 数据存储: 本地 JSON 文件
- Node.js >= 20.19.0 或 >= 22.12.0
- Rust 工具链(rustup, cargo)
- npm 或 pnpm
# 克隆仓库
git clone https://github.com/yourusername/DeskHive.git
cd DeskHive
# 安装依赖
npm install
# 启动开发服务器
npm run dev
# 构建生产版本
npm run tauri buildDeskHive/
├── src/ # Vue 前端源码
│ ├── components/ # Vue 组件
│ ├── App.vue # 主应用组件
│ ├── Settings.vue # 设置页面组件
│ ├── types.ts # TypeScript 类型定义
│ └── main.ts # 前端入口
├── src-tauri/ # Tauri 后端源码
│ ├── src/ # Rust 源码
│ │ ├── data/ # 数据管理模块
│ │ ├── window/ # 窗口管理模块
│ │ ├── system/ # 系统集成模块
│ │ └── lib.rs # 主入口
│ ├── Cargo.toml # Rust 依赖配置
│ └── tauri.conf.json # Tauri 配置
├── public/ # 静态资源
└── package.json # Node.js 依赖配置
✨ 新增功能
- 快速创建分组:输入
/分组名直接创建 - 优化时间指示器位置:移到任务条最右侧
- 截止时间弹窗缩小:更符合整体风格
- 改进"全部完成"页面显示逻辑
🐛 问题修复
- 修复输入
/分组名还会弹窗的问题 - 修复任务列表显示过宽的问题
- 改进应用退出逻辑,减少安装时卡住的可能性
- 修复空分组提示框占据空间的问题
📝 文档更新
- 更新设置页面的使用说明
- 完善 README 文档
✨ 新增功能
- 任务拖动排序:支持分组内和跨分组拖动
- 分组排序:可通过上下箭头调整分组顺序
- 时间提示:悬停时间指示器显示详细信息
- 完成动画:优化任务完成时的视觉效果
🎨 界面优化
- 重新设计时间指示器样式和颜色
- 优化已完成分组的高度和间距
- 改进任务完成状态的视觉反馈
- 添加自定义 Tooltip 组件
🐛 问题修复
- 修复跨组拖动任务的问题
- 修复提示框被分组遮挡的问题
- 移除按截止时间自动排序的逻辑
欢迎提交 Issue 和 Pull Request!
- Fork 本仓库
- 创建您的特性分支 (
git checkout -b feature/AmazingFeature) - 提交您的更改 (
git commit -m 'Add some AmazingFeature') - 推送到分支 (
git push origin feature/AmazingFeature) - 开启一个 Pull Request
- 作者: iamlzy
- 博客: https://www.feijimiao.cn
- 微信公众号: 扫描下方二维码关注
本项目采用 MIT 许可证 - 查看 LICENSE 文件了解详情
DeskHive is a modern desktop to-do management tool built with Vue 3 and Tauri. It focuses on providing a clean and efficient task management experience with all data stored locally, no cloud services required, protecting your privacy.
- ✅ Quick create, edit, and delete tasks
- ✅ Double-click for quick deletion, rich context menu
- ✅ Task completion status toggle with animations
- ✅ Drag and drop task reordering (within/across groups)
- ✅ Completed tasks in separate group
- 📂 Quick create: Type
/group-nameand press Enter - 📂 Dialog create: Right-click "+" button
- 📂 Rename, delete, collapse/expand groups
- 📂 Adjust group order (move up/down)
- 📂 Drag tasks between groups
- 🕐 Set task deadlines
- 🕐 Real-time countdown display
- 🕐 Smart time indicators:
- 🟢 Green: Sufficient time until deadline
- 🔴 Red: Past deadline
- 🟡 Yellow: Days since task creation
- 🕐 Hover for detailed time information
- 🌈 Modern, clean UI design
- 🌈 Responsive layout, adaptive window size
- 🌈 Day/Night theme switching
- 🌈 Customizable window transparency
- 🌈 Smooth animations
- 💻 System tray integration
- 💻 Auto-start on boot option
- 💻 Global hotkey support
- 💻 Window position memory
- 💻 Disable window dragging option
- Go to Releases page
- Download the latest version installer (
.msifile) - Double-click the installer and follow the prompts
- Launch DeskHive and start managing your tasks!
- OS: Windows 10/11 (64-bit)
- RAM: Minimum 10MB
- Disk Space: ~50MB
| Action | Method |
|---|---|
| Create Task | Enter content in bottom input, press Enter or click "+" |
| Quick Create Group | Type /group-name and press Enter |
| Complete Task | Hover over task, click "✓" button |
| Uncomplete Task | Click "↶" button in completed group |
| Delete Task | Double-click task item |
| Edit Task | Right-click task → "✏️ Edit Task" |
| Drag to Reorder | Hold "☰" button and drag |
| Action | Method |
|---|---|
| Quick Create | Type /group-name and press Enter |
| Dialog Create | Right-click "+" button → "📁 New Group" |
| Rename | Right-click group header → "✏️ Rename Group" |
| Delete | Right-click group header → "🗑️ Delete Group" |
| Collapse/Expand | Click "▼" icon on left of group header |
| Adjust Order | Hover group header, click "▲▼" buttons |
| Action | Method |
|---|---|
| Set Deadline | Right-click task → "📅 Set Deadline" |
| Remove Deadline | Right-click task → "🗑️ Remove Deadline" |
| View Details | Hover over time indicator |
- Within Group: Hold "☰" button, drag up/down within same group
- Between Groups:
- Drag to target group's task list → Insert at position
- Drag to target group's header → Add to end
- Visual Feedback: Target area shows blue highlight
- Left Click: Show/Hide main window
- Right Click Menu:
- Show/Hide
- Settings
- Quit
- Frontend: Vue 3.5 + TypeScript
- Build Tool: Vite 6.4
- Desktop Framework: Tauri 2.0
- Backend: Rust
- UI Design: Custom CSS (Responsive)
- Data Storage: Local JSON files
- Node.js >= 20.19.0 or >= 22.12.0
- Rust toolchain (rustup, cargo)
- npm or pnpm
# Clone repository
git clone https://github.com/yourusername/DeskHive.git
cd DeskHive
# Install dependencies
npm install
# Start development server
npm run dev
# Build for production
npm run tauri buildDeskHive/
├── src/ # Vue frontend source
│ ├── components/ # Vue components
│ ├── App.vue # Main app component
│ ├── Settings.vue # Settings page component
│ ├── types.ts # TypeScript type definitions
│ └── main.ts # Frontend entry
├── src-tauri/ # Tauri backend source
│ ├── src/ # Rust source
│ │ ├── data/ # Data management module
│ │ ├── window/ # Window management module
│ │ ├── system/ # System integration module
│ │ └── lib.rs # Main entry
│ ├── Cargo.toml # Rust dependencies
│ └── tauri.conf.json # Tauri configuration
├── public/ # Static assets
└── package.json # Node.js dependencies
✨ New Features
- Quick group creation: Type
/group-nameto create directly - Optimized time indicator position: Moved to rightmost of task bar
- Smaller deadline dialog: Better matches overall style
- Improved "All Completed" page display logic
🐛 Bug Fixes
- Fixed issue where typing
/group-namestill showed dialog - Fixed task list display too wide issue
- Improved app exit logic to reduce installation hang
- Fixed empty group hint taking up space
📝 Documentation
- Updated settings page usage instructions
- Enhanced README documentation
✨ New Features
- Task drag and drop: Support within and across groups
- Group sorting: Adjust order with up/down arrows
- Time tooltips: Hover time indicator for details
- Completion animation: Optimized visual feedback
🎨 UI Improvements
- Redesigned time indicator style and colors
- Optimized completed group height and spacing
- Improved task completion status visual feedback
- Added custom Tooltip component
🐛 Bug Fixes
- Fixed cross-group task dragging issues
- Fixed tooltip being covered by groups
- Removed auto-sort by deadline logic
Issues and Pull Requests are welcome!
- Fork this repository
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
- Author: iamlzy
- Blog: https://www.feijimiao.cn
- WeChat Official Account: Scan QR code below
This project is licensed under the MIT License - see the LICENSE file for details
- Tauri - Powerful desktop application framework
- Vue.js - Progressive JavaScript framework
- Vite - Next generation frontend tooling

