Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Commit

Permalink
Merge pull request #4 from AgoraIO-Community/dev/build
Browse files Browse the repository at this point in the history
Dev/build
  • Loading branch information
zhangtao1104 authored Jul 11, 2022
2 parents 9425e4a + 967978e commit 0a0fbf3
Show file tree
Hide file tree
Showing 4 changed files with 2,152 additions and 92 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea/
*.log
sdk
tmp
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 4.0.0-beta.1 (2022-07-11)


### Bug Fixes

* **fix localaccesspointconfiguration:** fix LocalAccessPointConfiguration ([bf9814f](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/bf9814f0316bde140a7338ecd553da50e9738208))


### Features

* **add ci for changelog:** use husky conventional-changelog-cli @commitlint/config-conventional ([e1facd9](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/e1facd9244b6eb18e503493f9cc14af99f09938b))

## 3.8.201-alpha.706 (2022-07-05)


Expand Down
40 changes: 33 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "electron-agora-rtc-ng",
"version": "3.8.201-alpha.706",
"version": "4.0.0-beta.1",
"description": "electron-agora-rtc-ng",
"main": "js/AgoraSdk.js",
"types": "types/AgoraSdk.d.ts",
Expand All @@ -24,11 +24,11 @@
"build_linux_debug": "cmake-js rebuild --arch=x64 --CDCMAKE_BUILD_TYPE=Debug --CDCMAKE_CXX_FLAGS=-g -G \"Unix Makefiles\"",
"build_linux_release": "cmake-js rebuild --arch=x64 --CDCMAKE_BUILD_TYPE=Release -G \"Unix Makefiles\"",
"changelog": "conventional-changelog -p angular -u -i CHANGELOG.md -s -r 10",
"prepare": "husky install"
"release": "release-it"
},
"agora_electron": {
"iris_sdk_win": "http://192.168.99.149:8086/CSDC_repo/iris_3.8.201_DCG_Windows_Video_20220705_0618.zip",
"iris_sdk_mac": "http://192.168.99.149:8086/CSDC_repo/iris_3.8.201_DCG_Mac_Video_20220705_0617.zip",
"iris_sdk_win": "https://download.agora.io/sdk/release/iris_3.8.201_DCG_Windows_Video_20220704_1236.zip",
"iris_sdk_mac": "https://download.agora.io/sdk/release/iris_3.8.201_DCG_Mac_Video_20220704_1235.zip",
"no_symbol": true,
"prebuilt": true
},
Expand Down Expand Up @@ -62,15 +62,41 @@
],
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/config-conventional": "^11.0.0",
"@release-it/conventional-changelog": "^2.0.0",
"cmake-js": "6.3.2",
"commitlint": "^11.0.0",
"conventional-changelog-cli": "^2.2.2",
"husky": "^8.0.1",
"prettier": "^2.7.1"
"husky": "^4.2.5",
"prettier": "^2.7.1",
"release-it": "^14.2.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
}
}
Loading

0 comments on commit 0a0fbf3

Please sign in to comment.