Skip to content

Commit 749e821

Browse files
authored
Merge pull request #29 from vicanso/main
version 0.1.15
2 parents 05ff318 + cdbe9fb commit 749e821

File tree

19 files changed

+776
-480
lines changed

19 files changed

+776
-480
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

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

5+
## [0.1.15] - 2023-08-12
6+
7+
### Bug Fixes
8+
9+
- Fix dashboard scroll
10+
- Fix content type of multipart form
11+
12+
### Miscellaneous Tasks
13+
14+
- Update dependencies
15+
- Update dependencies
16+
517
## [0.1.14] - 2023-07-10
618

719
### Bug Fixes

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ clean:
1414
cd src-tauri && cargo clean
1515
install-cli:
1616
cargo install tauri-cli --version 1.4.0
17+
install-orm-cli:
18+
cargo install sea-orm-cli
1719
orm:
1820
cd src-tauri && sea-orm-cli generate entity --with-serde=both \
1921
-u "sqlite:///~/Library/Application Support/com.bigtree.cyberapi/my_db.db" \
2022
-o src/entities
2123
version:
22-
git cliff --unreleased --tag 0.1.14 --prepend CHANGELOG.md
24+
git cliff --unreleased --tag 0.1.15 --prepend CHANGELOG.md

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ English|[简体中文](./README_zh.md)|[Українська](./README_uk.md)
2121
- Thousands of interfaces for a single project are opened in seconds, with low memory usage
2222
- Support dark/light theme and chinese/english/ukrainian
2323
- Operation and configuration is simple
24-
- Support importing configuration from postman or insonmia
24+
- Support importing configuration from postman, insonmia or swagger.
2525
- The configuration can be exported by interface, function and project, which is convenient for sharing
2626
- Support many custom functions
2727

README_uk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
- Тисячі інтерфейсів для одного проекту відкриваються за лічені секунди, з низьким споживанням пам'яті
2222
- Підтримка темної / світлої теми та китайської / англійської / української мови
2323
- Проста експлуатація та конфігурація
24-
- Підтримка імпорту конфігурації з postman або insonmia
24+
- Підтримка імпорту конфігурації з postman, insonmia або swagger.
2525
- Конфігурацію можна експортувати за інтерфейсом, функцією та проектом, що зручно для спільного використання
2626
- Підтримка багатьох користувацьких функцій
2727

README_zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
- 单个项目上千个接口秒级打开,内存占用较低
2121
- 支持Dark/Light主题以及中英语言
2222
- 简单易用的操作及配置方式
23-
- 可快速导入postman与insomnia的配置
23+
- 可快速导入postman,insomnia或者swagger的配置
2424
- 关键字筛选支持中文拼音或者首字母
2525
- 可按接口、按功能、按项目导出配置,方便团队内共用
2626
- 各类自定义的函数,方便各请求间关联数据

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"js-base64": "^3.7.5",
2424
"localforage": "^1.10.0",
2525
"lodash-es": "^4.17.21",
26+
"mime": "^3.0.0",
2627
"mitt": "^3.0.0",
2728
"monaco-editor": "^0.39.0",
2829
"naive-ui": "^2.34.4",
@@ -38,6 +39,7 @@
3839
"@types/bluebird": "^3.5.38",
3940
"@types/crypto-js": "^4.1.1",
4041
"@types/debug": "^4.1.8",
42+
"@types/mime": "^3.0.1",
4143
"@types/shortid": "^0.0.29",
4244
"@types/uuid": "^9.0.2",
4345
"@typescript-eslint/eslint-plugin": "^5.59.11",

0 commit comments

Comments
 (0)