-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: release 1.6.0 plugin market (#65)
Signed-off-by: yutao04 <[email protected]>
- Loading branch information
Showing
10 changed files
with
100 additions
and
210 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,65 @@ | ||
[//]: TODO | ||
# 代码贡献 | ||
|
||
如果你: | ||
|
||
- 有新的想法 | ||
- 提交Feature | ||
- Bug report/fix | ||
- 贡献文档 | ||
- Help wanted | ||
|
||
建议先提[Issues](https://github.com/hango-io/hango-gateway/issues),描述你的目的或者问题。 | ||
|
||
## 代码/文档贡献流程 | ||
|
||
Hango 项目分多个模块仓库,下面以 Hango-portal 为例,介绍代码如何提交至我们的开源仓库! | ||
|
||
### 1. fork代码 | ||
|
||
访问 [https://github.com/hango-io/portal](https://github.com/hango-io/portal),选择指定仓库,点击右上角的 Fork ,将 Hango-portal 仓库代码 fork 到自己的 github 仓库中。 | ||
|
||
### 2. 创建本地工程 | ||
|
||
本地 clone 远端的 github 仓库,添加、修改制定内容,如何进行本地调试可以参考本地调试章节;代码开发请遵守 [Hango 代码开发规范](https://hango-io.github.io/developer-guide/development/),否则在代码 review 阶段会被驳回 | ||
|
||
### 3. 将变更推送到远端 | ||
|
||
本地完成代码构建后,我们需要将代码内容进行 commit, commit 按如下格式进行信息提交 | ||
|
||
commit message格式 | ||
``` | ||
<type>(<scope>): <subject> | ||
``` | ||
- type: 用于说明git commit的类别,只允许使用下面的标识。 | ||
- feat: 新功能(feature)。 | ||
- fix/to: 修复bug | ||
- docs: 文档(documentation)。 | ||
- style: 格式(不影响代码运行的变动)。 | ||
- refactor: 重构(即不是新增功能,也不是修改bug的代码变动)。 | ||
- perf: 优化相关,比如提升性能、体验。 | ||
- test: 增加测试。 | ||
- chore: 构建过程或辅助工具的变动。 | ||
- revert: 回滚到上一个版本。 | ||
- merge: 代码合并。 | ||
- sync: 同步主线或分支的Bug。 | ||
- scope(可选): scope用于说明 commit 影响的范围,比如数据层、控制层、视图层等等,视项目不同而不同。 | ||
- subject(必须): subject是commit目的的简短描述,不超过50个字符。 | ||
> 结尾不加其他标点符号 | ||
commit 要求功能聚合,因此在推送前请进行适当的代码 rebase 操作 | ||
|
||
### 4. 提交Pull Request | ||
|
||
待代码提交到个人的 fork 仓库后,我们可以向 Hango-portal 主仓库进行 PR 提交, PR 提交信息如下 | ||
|
||
- 关联 issue | ||
- 提交人(关联人) | ||
Signed-off-by: \[姓名\] <邮箱> | ||
- PR 简要描述 | ||
- 对模块或 Hango 项目的影响点 | ||
|
||
### 5. 其他 | ||
|
||
提交 PR 后,可以通过我们的官方微信平台或邮箱方式([email protected])通知我们检视合入 | ||
|
||
![wechat](./images/hango-wechat.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -117,7 +117,7 @@ Hango Gateway is an open-source project, and welcomes any and all contributors. | |
|
||
* Mail List: Mail to [email protected], follow the reply to subscribe to the mailing list. | ||
* QQ Group 914823850 | ||
* WeChat Group:Scan QR <img src="./images/hango-wechat.png" width="180px"> | ||
* (Suggest) WeChat Group:Scan QR <img src="./images/hango-wechat.png" width="180px"> | ||
* Check out the Hango documentation | ||
* Read the [CONTRIBUTING.md](CONTRIBUTING.md) and [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) files. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,7 +111,7 @@ Hango UI提供了用户使用指南,通过使用指南用户可以方面上手 | |
|
||
* 邮件:[email protected] | ||
* qq群:Hango 交流群 914823850 | ||
* 微信群:扫码加入 - Hango 开源交流群 <img src="./images/hango-wechat.png" width="180px"> | ||
* (推荐)微信群:扫码加入 - Hango 开源交流群 <img src="./images/hango-wechat.png" width="180px"> | ||
* 参考[CONTRIBUTING.md](CONTRIBUTING.md) 和 [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) 文件 | ||
|
||
同时,也可以通过以下方式进行项目贡献: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
### 描述 | ||
本次更新是Hango正式版v1.6.0的发布。 | ||
|
||
本次新增了网关对插件市场功能支持 | ||
|
||
### 新功能 | ||
|
||
- [支持插件市场](https://hango-io.github.io/user-guide/extension/plugin-market/) | ||
|
||
- [支持Lua语言接入插件市场](https://hango-io.github.io/user-guide/extension/plugin-market/#1lua) | ||
|
||
### 工程修复 | ||
|
||
- [修复安装刷屏问题](https://github.com/hango-io/hango-gateway/pull/64) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters