mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-12-04 20:58:01 +08:00
417e5eeb7f
* v0.1.0 * refactor(unit-test): delete useless unit test file * fix(mock-edit): xml response body generate error * refactor(api-test-utils): merge two utils * refactor(api-form-table): merge query/rest/header to form * feat: *-member loading UI * fix: reset password bug * feat: delete useless code * fix(select-theme): extension theme title show error after refresh page * fix: wakeup login modal while get the unlogin status * feat: delete useless code * feat: store api * chore: add remark * feat: optimize init data * build: upgrade component reliable * fix: import xml auto add table row * fix: update group error * feat: update group drag * fix: import lost dataType * feat: add type when update group * refactor: get groupList logic * feat: group fake reload * perf: install web extension * fix(extension-detail): author title show error * feat: update * feat: ws data * build: update app package version * build: update web package version * fix: ws history view back * fix: UI * fix: table-pro-click error * fix: API view back * feat: update * feat: update * feat: update * feat: support sort group * fix: sort bug * feat: update * feat: update * fix: websocket translate * refactor(api-tab): add type tabViewComponent * feat: add waitNextTick func * feat: API update * refactor: project import * feat: update * fix(api-tab): lack of data after refresh page * refactor: related import/export * fix: simpleData groupId is hardcode * fix: query/rest read some bug * fix: api edit group err * fix: auto reload groupList when import finish * fix: ws bug * feat: add share nav * feat: export postcatVersion * feat: API update * feat: share module * feat: add pc console tool * feat: share http model * feat: API update * feat: update API * fix: model error * fix(api-edit-group): get pure group * fix: outside apiAttrInfo * feat: share * feat: login button/share * fix: support remote mock * feat: fix some env bug * chore: remove compatible code * style: theme variable table header color * fix: code editro blank error * refactor: get role request one time * feat: test publish * feat: test build & publish * feat: update API * feat: update API * feat: replace file name * feat: replace path * feat: update upload.js * feat: build * feat: update version * feat: update path * feat: update upload.js * feat: update * feat: upload.js * feat: update * feat: add linux * feat: update upload.js * feat: update * docs: update * docs: update * docs: update * docs: 1.0.8 * docs: update 0.1.9 * fix: init apiData field type error * feat: update * docs: 0.1.11 * docs: 0.1.12 * docs: 0.1.13 * feat: saving btn * refactor: sync push api * docs: update 0.1.14 * style: fix setting modal radius * chore: remove docker:build:web * chore: remove unuse code * feat: update * chore: remove unuse code * docs: 0.1.16 * docs: 0.1.17 * docs: update * fix: formdata body show * feat: download link * docs: update * fix: import tips error * docs: update * release: v0.1.0 --------- Co-authored-by: kungfuboy <17kungfuboy@gmail.com> Co-authored-by: buqiyuan <1743369777@qq.com>
62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"appId": ".postcat.io",
|
|
"productName": "Postcat",
|
|
"asar": true,
|
|
"directories": {
|
|
"output": "release/"
|
|
},
|
|
"files": ["out/**/*.js*", "out/environment.js", "src/workbench/browser/dist/**/*", "!**/*.ts"],
|
|
"publish": [
|
|
"github",
|
|
{
|
|
"provider": "generic",
|
|
"url": "https://data.postcat.com/download/"
|
|
}
|
|
],
|
|
"afterPack": "./scripts/afterPackHook.js",
|
|
"generateUpdatesFilesForAllChannels": true,
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowElevation": true,
|
|
"allowToChangeInstallationDirectory": true,
|
|
// for win - 将协议写入主机的脚本
|
|
"include": "scripts/urlProtoco.nsh"
|
|
},
|
|
"protocols": [
|
|
// for macOS - 用于在主机注册指定协议
|
|
{
|
|
"name": "eoapi",
|
|
"schemes": ["eoapi"]
|
|
}
|
|
],
|
|
"win": {
|
|
"icon": "src/app/common/images/logo.ico",
|
|
"target": [
|
|
{
|
|
"target": "nsis"
|
|
},
|
|
"portable"
|
|
]
|
|
},
|
|
"portable": {
|
|
"splashImage": "src/app/common/images/postcat.bmp"
|
|
},
|
|
"mac": {
|
|
"icon": "src/app/common/images/512x512.png",
|
|
"hardenedRuntime": true,
|
|
"category": "public.app-category.productivity",
|
|
"gatekeeperAssess": false,
|
|
"entitlements": "scripts/entitlements.mac.plist",
|
|
"entitlementsInherit": "scripts/entitlements.mac.plist",
|
|
"target": ["dmg", "zip"]
|
|
},
|
|
"dmg": {
|
|
"sign": false
|
|
},
|
|
"afterSign": "scripts/notarize.js",
|
|
"linux": {
|
|
"icon": "src/app/common/images/",
|
|
"target": ["AppImage"]
|
|
}
|
|
}
|