Skip to content

Commit

Permalink
Merge pull request #14 from vicanso/main
Browse files Browse the repository at this point in the history
version 0.1.6
  • Loading branch information
vicanso authored May 9, 2023
2 parents c76eebb + 1ca5d1e commit 636aca2
Show file tree
Hide file tree
Showing 17 changed files with 1,845 additions and 1,130 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@

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

## [0.1.6] - 2023-05-09

### Bug Fixes

- Fix value of cookie includes "="
- Fix get set cookie value of response header

### Features

- Support url keyword filter
- Show user agent of cyberapi

### Miscellaneous Tasks

- Update dependencies
- Update dependencies
- Update modules

### Refactor

- Add space before header value
- Adjust http timeout option
- Update modules

## [0.1.5] - 2023-01-13

### Bug Fixes
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ build:
cargo tauri build
clean:
cd src-tauri && cargo clean
install-cli:
cargo install tauri-cli --version 1.3.0
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.5 --prepend CHANGELOG.md
git cliff --unreleased --tag 0.1.6 --prepend CHANGELOG.md
2 changes: 1 addition & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ CyberAPI暂时仅是开发版本,业余时间的个人项目,如果有BUG或
yarn
```

安装tauri-clie:
安装tauri-cli:

```shell
cargo install tauri-cli
Expand Down
45 changes: 23 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cyberapi",
"private": true,
"version": "0.1.4",
"version": "0.1.6",
"scripts": {
"format": "prettier --write src/*.ts src/*.tsx src/**/*.ts src/**/*.tsx src/**/**/*.tsx",
"lint": "eslint . --ext .js,.tsx,.ts --fix && vue-tsc --noEmit",
Expand All @@ -17,45 +17,46 @@
"@codemirror/theme-one-dark": "^6.1.0",
"@codemirror/view": "^6.3.0",
"@linaria/core": "3.0.0-beta.22",
"@tauri-apps/api": "^1.2.0",
"@tauri-apps/cli": "^1.3.0",
"@tauri-apps/api": "^1.3.0",
"@vicons/ionicons5": "^0.12.0",
"bluebird": "^3.7.2",
"codemirror": "^6.0.1",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.6",
"dayjs": "^1.11.7",
"debug": "^4.3.4",
"form-data-encoder": "^2.1.3",
"js-base64": "^3.7.2",
"js-base64": "^3.7.5",
"localforage": "^1.10.0",
"lodash-es": "^4.17.21",
"mitt": "^3.0.0",
"naive-ui": "^2.33.5",
"pinia": "^2.0.23",
"pretty-bytes": "^6.0.0",
"naive-ui": "^2.34.3",
"pinia": "^2.0.35",
"pretty-bytes": "^6.1.0",
"ulid": "^2.3.0",
"vue": "^3.2.41",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@types/bluebird": "^3.5.37",
"@types/bluebird": "^3.5.38",
"@types/crypto-js": "^4.1.1",
"@types/debug": "^4.1.7",
"@types/shortid": "^0.0.29",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.0",
"@vue/compiler-sfc": "^3.2.41",
"eslint": "^8.26.0",
"eslint-plugin-vue": "^9.6.0",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vitejs/plugin-vue": "^4.2.1",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/compiler-sfc": "^3.2.47",
"eslint": "^8.40.0",
"eslint-plugin-vue": "^9.11.1",
"glob-parent": ">=6.0.2",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.8.3",
"typescript": "^4.8.4",
"vite": "^3.2.0",
"prettier": "^2.8.8",
"rollup-plugin-visualizer": "^5.9.0",
"typescript": "^5.0.4",
"vite": "^4.3.5",
"vite-plugin-linaria": "^1.0.0",
"vue-tsc": "^1.0.9"
"vue-tsc": "^1.6.4"
}
}
Loading

0 comments on commit 636aca2

Please sign in to comment.