Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version 0.1.15 #29

Merged
merged 5 commits into from
Aug 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file.

## [0.1.15] - 2023-08-12

### Bug Fixes

- Fix dashboard scroll
- Fix content type of multipart form

### Miscellaneous Tasks

- Update dependencies
- Update dependencies

## [0.1.14] - 2023-07-10

### Bug Fixes
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ clean:
cd src-tauri && cargo clean
install-cli:
cargo install tauri-cli --version 1.4.0
install-orm-cli:
cargo install sea-orm-cli
orm:
cd src-tauri && sea-orm-cli generate entity --with-serde=both \
-u "sqlite:///~/Library/Application Support/com.bigtree.cyberapi/my_db.db" \
-o src/entities
version:
git cliff --unreleased --tag 0.1.14 --prepend CHANGELOG.md
git cliff --unreleased --tag 0.1.15 --prepend CHANGELOG.md
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ English|[简体中文](./README_zh.md)|[Українська](./README_uk.md)
- Thousands of interfaces for a single project are opened in seconds, with low memory usage
- Support dark/light theme and chinese/english/ukrainian
- Operation and configuration is simple
- Support importing configuration from postman or insonmia
- Support importing configuration from postman, insonmia or swagger.
- The configuration can be exported by interface, function and project, which is convenient for sharing
- Support many custom functions

Expand Down
2 changes: 1 addition & 1 deletion README_uk.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
- Тисячі інтерфейсів для одного проекту відкриваються за лічені секунди, з низьким споживанням пам'яті
- Підтримка темної / світлої теми та китайської / англійської / української мови
- Проста експлуатація та конфігурація
- Підтримка імпорту конфігурації з postman або insonmia
- Підтримка імпорту конфігурації з postman, insonmia або swagger.
- Конфігурацію можна експортувати за інтерфейсом, функцією та проектом, що зручно для спільного використання
- Підтримка багатьох користувацьких функцій

Expand Down
2 changes: 1 addition & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
- 单个项目上千个接口秒级打开,内存占用较低
- 支持Dark/Light主题以及中英语言
- 简单易用的操作及配置方式
- 可快速导入postman与insomnia的配置
- 可快速导入postman,insomnia或者swagger的配置
- 关键字筛选支持中文拼音或者首字母
- 可按接口、按功能、按项目导出配置,方便团队内共用
- 各类自定义的函数,方便各请求间关联数据
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"js-base64": "^3.7.5",
"localforage": "^1.10.0",
"lodash-es": "^4.17.21",
"mime": "^3.0.0",
"mitt": "^3.0.0",
"monaco-editor": "^0.39.0",
"naive-ui": "^2.34.4",
Expand All @@ -38,6 +39,7 @@
"@types/bluebird": "^3.5.38",
"@types/crypto-js": "^4.1.1",
"@types/debug": "^4.1.8",
"@types/mime": "^3.0.1",
"@types/shortid": "^0.0.29",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.11",
Expand Down
Loading
Loading