7 Commits

Author SHA1 Message Date
YILS
31780f4703 🎉 发布第一个1.0.0正式版 2025-08-08 14:27:38 +08:00
YILS
2cead83ddc 构建测试 2025-08-08 14:21:22 +08:00
YILS
95b1aa359f 构建测试 2025-08-08 14:02:40 +08:00
YILS
b9b656da9e 构建测试 2025-08-08 13:44:24 +08:00
YILS
a328a5aea3 构建测试 2025-08-08 13:38:27 +08:00
YILS
204468935b 构建测试 2025-08-08 10:13:34 +08:00
YILS
46c612946b 优化构建配置 2025-08-08 10:04:41 +08:00
4 changed files with 25 additions and 19 deletions

View File

@@ -71,18 +71,18 @@ jobs:
echo "EOF" >> $GITHUB_ENV
shell: bash
# Upload artifacts
- name: Upload artifacts
uses: ncipollo/release-action@v1
# Publish Release
- name: Publish Release
uses: softprops/action-gh-release@v2
with:
artifacts: |
release/${env.VERSION}/*.dmg
release/${env.VERSION}/*.exe
release/${env.VERSION}/*.deb
release/${env.VERSION}/*.rpm
release/${env.VERSION}/*.AppImage
release/${env.VERSION}/latest*.yml
release/${env.VERSION}/*.blockmap
files: |
release/${{ env.VERSION }}/*.dmg
release/${{ env.VERSION }}/*.exe
release/${{ env.VERSION }}/*.deb
release/${{ env.VERSION }}/*.rpm
release/${{ env.VERSION }}/*.AppImage
body: ${{ env.NOTES }}
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -1,7 +1,7 @@
# Changelog
此项目的所有显著更改都将记录在此文件中。
## [v1.0.0] - 2025-08-07
## [v1.0.0] - 2025-08-08
### Added
- 发布第一个正式版本
- 支持使用大语言模型生成文案推荐免费的GLM-4.5-Flash
@@ -11,7 +11,7 @@
- 支持自动化批量任务
- 美观的UI界面
## [v0.7.6] - 2025-08-07
## [v0.7.12] - 2025-08-08
### Added
- 构建测试
- 跨平台: macOS dmg, Windows exe, Linux AppImage.

View File

@@ -11,8 +11,13 @@
npmRebuild: false, // disable rebuild node_modules 使用包内自带预构建二进制,而不重新构建
beforePack: './scripts/before-pack.js',
mac: {
target: ['dmg'],
artifactName: '${productName}-Mac-${arch}-${version}-Installer.${ext}',
target: [
{
target: 'dmg',
arch: ['universal'],
},
],
artifactName: '${name}-${version}-mac-${arch}-installer.${ext}',
icon: './public/icon.png',
},
win: {
@@ -21,7 +26,7 @@
target: 'nsis',
},
],
artifactName: '${productName}-Windows-${arch}-${version}-Setup.${ext}',
artifactName: '${name}-${version}-win-${arch}-setup.${ext}',
icon: './public/icon.png',
},
nsis: {
@@ -33,7 +38,8 @@
},
linux: {
target: ['AppImage'],
artifactName: '${productName}-Linux-${arch}-${version}.${ext}',
artifactName: '${name}-${version}-linux-${arch}.${ext}',
icon: './public/icon.png',
},
publish: null, // disable auto publish 防止重复发版
}

View File

@@ -1,14 +1,14 @@
{
"name": "short-video-factory",
"description": "短视频工厂一键生成产品营销与泛内容短视频AI批量自动剪辑",
"version": "0.7.6",
"version": "1.0.0",
"author": {
"name": "YILS",
"developer": "YILS",
"email": "yils_lin@163.com",
"url": "https://yils.blog/"
},
"repository": "https://github.com/YILS-LIN/short-video-factory",
"homepage": "https://github.com/YILS-LIN/short-video-factory",
"main": "dist-electron/main.js",
"scripts": {
"dev": "cross-env VITE_CJS_IGNORE_WARNING=true vite",