mirror of
https://github.com/jaywcjlove/wxmp.git
synced 2026-01-12 08:18:49 +08:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7f28e6ada1 | ||
|
|
df10f96a65 | ||
|
|
02cb33cfcd | ||
|
|
13a96916d7 | ||
|
|
245d54e511 | ||
|
|
06e216aa22 | ||
|
|
a50acf3888 | ||
|
|
195d2ce8d0 | ||
|
|
9adcd7eaa7 |
19
.github/workflows/ci.yml
vendored
19
.github/workflows/ci.yml
vendored
@@ -246,7 +246,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Generate Changelog
|
- name: Generate Changelog
|
||||||
id: changelog
|
id: changelog
|
||||||
uses: jaywcjlove/changelog-generator@v1.5.7
|
uses: jaywcjlove/changelog-generator@main
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
filter-author: (jaywcjlove|小弟调调™|dependabot\[bot\]|Renovate Bot)
|
filter-author: (jaywcjlove|小弟调调™|dependabot\[bot\]|Renovate Bot)
|
||||||
@@ -259,12 +259,29 @@ jobs:
|
|||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
name: ${{ steps.changelog.outputs.tag }}
|
name: ${{ steps.changelog.outputs.tag }}
|
||||||
tag: ${{ steps.changelog.outputs.tag }}
|
tag: ${{ steps.changelog.outputs.tag }}
|
||||||
|
artifacts: "dist/linux/*.rpm,dist/linux/*.deb,dist/macos/*.zip,dist/macos/*.dmg,dist/windows/*.exe"
|
||||||
body: |
|
body: |
|
||||||
Documentation ${{ steps.changelog.outputs.tag }}: https://raw.githack.com/jaywcjlove/wxmp/${{ steps.changelog.outputs.gh-pages-short-hash }}/index.html
|
Documentation ${{ steps.changelog.outputs.tag }}: https://raw.githack.com/jaywcjlove/wxmp/${{ steps.changelog.outputs.gh-pages-short-hash }}/index.html
|
||||||
Comparing Changes: ${{ steps.changelog.outputs.compareurl }}
|
Comparing Changes: ${{ steps.changelog.outputs.compareurl }}
|
||||||
|
|
||||||
${{ steps.changelog.outputs.changelog }}
|
${{ steps.changelog.outputs.changelog }}
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker pull wcjiang/wxmp:${{needs.build.outputs.create_tag_versionNumber}}
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run --name wxmp --rm -d -p 9666:3000 wcjiang/wxmp:${{ needs.build.outputs.create_tag_versionNumber }}
|
||||||
|
# Or
|
||||||
|
docker run --name wxmp -itd -p 9666:3000 wcjiang/wxmp:${{ needs.build.outputs.create_tag_versionNumber }}
|
||||||
|
```
|
||||||
|
|
||||||
|
Visit the following URL in your browser
|
||||||
|
|
||||||
|
```bash
|
||||||
|
http://localhost:9666/
|
||||||
|
```
|
||||||
|
|
||||||
roll_back:
|
roll_back:
|
||||||
if: failure()
|
if: failure()
|
||||||
needs: [build, create_release]
|
needs: [build, create_release]
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
微信公众号文章 Markdown 在线编辑器,使用 markdown 语法创建一篇简介美观大方的微信公众号图文。由于发版本麻烦,和一些功能无法扩展停滞开发了,未来不再开发 Chrome 的插件(暂存在 chrome 分支),通过 web 版本定制更丰富的功能。
|
微信公众号文章 Markdown 在线编辑器,使用 markdown 语法创建一篇简介美观大方的微信公众号图文。由于发版本麻烦,和一些功能无法扩展停滞开发了,未来不再开发 Chrome 的插件(暂存在 chrome 分支),通过 web 版本定制更丰富的功能。
|
||||||
|
|
||||||
[](https://jaywcjlove.github.io/wxmp)
|
[](https://github.com/jaywcjlove/wxmp/releases)
|
||||||
|
|
||||||
## 功能特性
|
## 功能特性
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "wxmp",
|
"name": "wxmp",
|
||||||
"description": "微信公众号 Markdown 编辑器",
|
"description": "微信公众号 Markdown 编辑器",
|
||||||
"homepage": "https://github.com/jaywcjlove/wxmp.git",
|
"homepage": "https://github.com/jaywcjlove/wxmp.git",
|
||||||
"version": "2.3.0",
|
"version": "2.3.2",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"author": "Kenny Wong <398188662@qq.com>",
|
"author": "Kenny Wong <398188662@qq.com>",
|
||||||
"private": true,
|
"private": true,
|
||||||
@@ -18,13 +18,13 @@
|
|||||||
"build": "npm run copy && cross-env NODE_ENV=production electron-builder build --publish=never --config config.json"
|
"build": "npm run copy && cross-env NODE_ENV=production electron-builder build --publish=never --config config.json"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@wcj/wxmp-main": "2.3.0"
|
"@wcj/wxmp-main": "2.3.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@wcj/wxmp-preload": "2.3.0",
|
"@wcj/wxmp-preload": "2.3.2",
|
||||||
"cpy-cli": "4.2.0",
|
"cpy-cli": "4.2.0",
|
||||||
"electron": "19.0.5",
|
"electron": "20.1.3",
|
||||||
"electron-builder": "23.3.3",
|
"electron-builder": "23.3.3",
|
||||||
"website": "2.3.0"
|
"website": "2.3.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@wcj/wxmp-main",
|
"name": "@wcj/wxmp-main",
|
||||||
"version": "2.3.0",
|
"version": "2.3.2",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -11,6 +11,6 @@
|
|||||||
"lib"
|
"lib"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"electron": "19.0.5"
|
"electron": "20.1.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@wcj/wxmp-preload",
|
"name": "@wcj/wxmp-preload",
|
||||||
"version": "2.3.0",
|
"version": "2.3.2",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -11,6 +11,6 @@
|
|||||||
"lib"
|
"lib"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"electron": "19.0.5"
|
"electron": "20.1.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "2.3.0",
|
"version": "2.3.2",
|
||||||
"packages": ["website", "electron/*"]
|
"packages": ["website", "electron/*"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"husky": "^8.0.1",
|
"husky": "^8.0.1",
|
||||||
"lerna": "5.5.0",
|
"lerna": "5.5.1",
|
||||||
"prettier": "^2.7.1",
|
"prettier": "^2.7.1",
|
||||||
"pretty-quick": "~3.1.3",
|
"pretty-quick": "~3.1.3",
|
||||||
"tsbb": "^3.7.5"
|
"tsbb": "^3.7.5"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "website",
|
"name": "website",
|
||||||
"version": "2.3.0",
|
"version": "2.3.2",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "kkt start",
|
"start": "kkt start",
|
||||||
|
|||||||
Reference in New Issue
Block a user