Skip to content

Releases: dingdangdog/cashbook

🎉Release v4.0.3

06 Feb 10:01
Compare
Choose a tag to compare

本次版本仍然是一些BUG修复:

  1. 饼图切换收入时取数错误;
  2. 后台新增用户时,未填写保存邮箱会报错;
  3. 流水筛选“备注”条件未生效;
  4. 系统图标错误;
  5. 导入json遗漏了小票;

还有部分新优化:

  1. 流水管理列表增加“净收入”字段展示;
  2. 两个饼图没有排序;
  3. 一些其他细节优化。

最新版已部署到演示站:https://cashbook.oldmoon.top ,请各位体验后决定是否升级!

🎉Release v4.0.2

02 Feb 11:59
Compare
Choose a tag to compare

该版本为 v4.0.1 的增加版,主要修复了一些 v4.0.1 中的Bug,和一点点优化,详见 #57

🧨Important🧨Release: V4.0.1

20 Jan 10:17
Compare
Choose a tag to compare

重要提示:升级到4.0+前,请备份好原有数据!!!

4.0+部署教程可参考:【Cashbook 4.0+ 部署教程

使用nuxt3+postgresql重构的第一个版本。

The first version refactored using Nuxt3+Postgresql.

功能基本保持不变,只是修改了底层代码实现方案。

Most of the features remain the same, only the underlying code implementation has been modified.

自此版本以后,仅推荐 Docker(WEB) 部署方案,其他方案请自行研究!

From this version onwards, only the Docker(WEB) deployment solution is recommended. Please research other solutions on your own!

先行发布版本,相关文档后续将尽快更新。

The first version is released, and the relevant documents will be updated as soon as possible.

Docker hub: dingdangdog/cashbook

推荐 docker-compose.yaml:

services:
  main:
    container_name: cashbook4
    depends_on: 
      - "db"
    image: dingdangdog/cashbook:4.0.1 # dingdangdog/cashbook:latest
    restart: always
    # network_mode: "host"
    volumes:
      - ./data:/app/data # 数据挂载到本地,不建议修改
    environment:
      DATABASE_URL: "postgresql://postgres:postgres@cashbook_db:5432/cashbook?schema=public" # 数据库链接,【账号密码请自行修改,与你的数据库一致!】
      NUXT_DATA_PATH: "/app/data" # 数据存储未知,现在只有小票图片了,不建议修改
      NUXT_APP_URL: "https://cashbook.oldmoon.top" # 服务根路径,如果有端口号,需要加上端口号
      NUXT_AUTH_ORIGIN: "https://cashbook.oldmoon.top/api/auth" # 登录权限地址 【请自行修改域名/IP,最后要以 /api/auth 结尾!】
      NUXT_AUTH_SECRET: "auth_secret" # 前台登录加密使用的密钥 【自行修改!】
      NUXT_ADMIN_USERNAME: "admin" # 后台登录用户名
      # 后他登录密码,密码是加密后的,加密方法见 server/utils 中的 test.js 或 common.ts
      NUXT_ADMIN_PASSWORD: "fb35e9343a1c095ce1c1d1eb6973dc570953159441c3ee315ecfefb6ed05f4cc"
    ports:
      - 9090:9090 # 账本开放端口 【自行修改!】
  db:
    container_name: cashbook_db
    image: postgres
    restart: always
    #network_mode: "host"
    # set shared memory limit when using docker-compose
    shm_size: 128mb
    # or set shared memory limit when deploy via swarm stack
    volumes:
      - ./db:/var/lib/postgresql/data # 数据库容器数据挂载到本地,不建议修改
    environment:
      #POSTGRES_USER: postgres # 数据库用户名,不填默认为postgres
      POSTGRES_PASSWORD: postgres # 数据库密码 【自行修改!】
    #ports:
    #  - 5432:5432 # 数据库端口,想要远程连接请放开注释,并建议自行修改端口

感谢使用!

Thanks for using!

🎉Release 3.0.7

06 Jan 12:50
Compare
Choose a tag to compare

Just docker updated.

🎉Release 3.0.6

14 Dec 11:28
Compare
Choose a tag to compare

功能优化

  1. 确定并继续后,清空价格和名称
  2. 日期框尽量不要再点一次确定

BUG

  1. 桌面端类型管理没有查出来数据类型;
  2. 桌面端系统管理中,打开文件夹没有反应;
  3. 桌面端点击【当月分析】提示没有数据;

🎉Release 3.0.5

30 Nov 10:51
Compare
Choose a tag to compare
release: v3.0.5

🎉Release 3.0.4

15 Nov 09:16
Compare
Choose a tag to compare

该版本桌面端打包出现问题,因此没有相应安装包,请选择其他版本。

🎉Release 3.0.3

30 Oct 12:08
Compare
Choose a tag to compare
release: v3.0.3

🎉Release 3.0.2

19 Oct 12:36
Compare
Choose a tag to compare

详细更新内容可见:#50

🎉Release 3.0.1

08 Oct 14:44
Compare
Choose a tag to compare
up web version