Skip to content

Commit

Permalink
chore: update 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
soulteary committed May 7, 2023
1 parent 37195f2 commit ee17851
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

## 目录

* [0.4.1](#041---2023-05-07)
* [0.4.0](#040---2022-09-17)
* [0.3.3](#033---2022-03-10)
* [0.3.2](#032---2022-02-23)
Expand All @@ -20,6 +21,9 @@
* [0.2.0](#020---2022-01-30)
* [0.1.0](#010---2022-01-27)

# 0.4.1 - 2023-05-07

- [修正] 感谢 @LightAPIs,修正了 Windows 环境下的 ICON 生成展示问题,及三处界面细节问题。https://github.com/soulteary/flare/releases/tag/0.4.1 https://github.com/soulteary/docker-flare/issues/70 (感谢 @liushuaiiu 的反馈)

# 0.4.0 - 2022-09-17

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,11 @@ cd docker-flare

```bash
# 可以使用最新镜像
docker pull soulteary/flare
docker run --rm -it -p 5005:5005 -v `pwd`/app:/app soulteary/flare
# 也可以追求明确,使用固定版本
docker run --rm -it -p 5005:5005 -v `pwd`/app:/app soulteary/flare:0.3.1
docker pull soulteary/flare:0.4.1
docker run --rm -it -p 5005:5005 -v `pwd`/app:/app soulteary/flare:0.4.1
```

如果你习惯使用 docker-compose,只需要执行:
Expand Down
4 changes: 2 additions & 2 deletions docs/advanced-startup.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
## 命令行参数

```
docker run --rm -it -p 5005:5005 soulteary/flare:0.4.0 flare -h
docker run --rm -it -p 5005:5005 soulteary/flare:0.4.1 flare -h
找不到配置文件config,创建默认配置。
Flare v0.4.0-9D209E38A3BC7637E14E0762EFC7E4BC8F39D03E linux/amd64 BuildDate=2022-09-17T12:42:33Z
Flare v0.4.1-332C2E0E24789AA4D7F578AA14E7BA6F62970ADA linux/amd64 BuildDate=2023-05-07T03:06:36Z
支持命令:
-p, --port int 指定监听端口 (default 5005)
Expand Down
18 changes: 9 additions & 9 deletions docs/application-account.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ services:
当你使用 `docker-compose up -d` 启动应用之后,接着使用 `docker-compose ps`,就可以看到包含密码的日志输出啦:

```bash
time="2022-09-17T20:54:22+08:00" level=info msg="Flare v0.4.0-9D209E38A3BC7637E14E0762EFC7E4BC8F39D03E linux/amd64 BuildDate=2022-09-17T12:42:33Z\n"
time="2022-09-17T20:54:22+08:00" level=info
time="2022-09-17T20:54:22+08:00" level=info msg="程序服务端口 5005"
time="2022-09-17T20:54:22+08:00" level=info msg="页面请求合并 false"
time="2022-09-17T20:54:22+08:00" level=info msg="启用离线模式 false"
time="2022-09-17T20:54:22+08:00" level=info msg="已禁用登陆模式,用户可直接调整应用设置。"
time="2022-09-17T20:54:22+08:00" level=info msg="在线编辑模块启用,可以访问 /editor 来进行数据编辑。"
time="2022-09-17T20:54:22+08:00" level=info msg="向导模块启用,可以访问 /guide 来获取程序使用帮助。"
time="2022-09-17T20:54:22+08:00" level=info msg="程序已启动完毕 🚀"
INFO[2023-05-07T11:13:13+08:00] Flare v0.4.1-332C2E0E24789AA4D7F578AA14E7BA6F62970ADA linux/amd64 BuildDate=2023-05-07T03:06:36Z
INFO[2023-05-07T11:13:13+08:00]
INFO[2023-05-07T11:13:13+08:00] 程序服务端口 5005
INFO[2023-05-07T11:13:13+08:00] 页面请求合并 false
INFO[2023-05-07T11:13:13+08:00] 启用离线模式 false
INFO[2023-05-07T11:13:13+08:00] 已禁用登陆模式,用户可直接调整应用设置。
INFO[2023-05-07T11:13:13+08:00] 在线编辑模块启用,可以访问 /editor 来进行数据编辑。
INFO[2023-05-07T11:13:13+08:00] 向导模块启用,可以访问 /guide 来获取程序使用帮助。
INFO[2023-05-07T11:13:13+08:00] 程序已启动完毕 🚀
```

0 comments on commit ee17851

Please sign in to comment.