mirror of
https://github.com/YILS-LIN/short-video-factory.git
synced 2025-11-25 19:37:50 +08:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2cead83ddc | ||
|
|
95b1aa359f | ||
|
|
b9b656da9e |
36
.github/workflows/build.yml
vendored
36
.github/workflows/build.yml
vendored
@@ -76,22 +76,24 @@ jobs:
|
||||
id: Test
|
||||
run: |
|
||||
ls -al
|
||||
ls -al release
|
||||
ls -al release/${{ env.VERSION }}
|
||||
shell: bash
|
||||
|
||||
# # Create Release
|
||||
# - name: Create Release
|
||||
# uses: softprops/action-gh-release@v2
|
||||
# with:
|
||||
# files: |
|
||||
# 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
|
||||
# body: ${{ env.NOTES }}
|
||||
# draft: false
|
||||
# prerelease: false
|
||||
# env:
|
||||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
# Publish Release
|
||||
- name: Publish Release
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
files: |
|
||||
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
|
||||
body: ${{ env.NOTES }}
|
||||
draft: false
|
||||
prerelease: false
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
@@ -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.9] - 2025-08-07
|
||||
## [v0.7.12] - 2025-08-08
|
||||
### Added
|
||||
- 构建测试
|
||||
- 跨平台: macOS dmg, Windows exe, Linux AppImage.
|
||||
@@ -17,7 +17,7 @@
|
||||
arch: ['universal'],
|
||||
},
|
||||
],
|
||||
artifactName: '${name}-mac-${version}-installer.${ext}',
|
||||
artifactName: '${name}-${version}-mac-${arch}-installer.${ext}',
|
||||
icon: './public/icon.png',
|
||||
},
|
||||
win: {
|
||||
@@ -26,7 +26,7 @@
|
||||
target: 'nsis',
|
||||
},
|
||||
],
|
||||
artifactName: '${name}-win-${arch}-${version}-setup.${ext}',
|
||||
artifactName: '${name}-${version}-win-${arch}-setup.${ext}',
|
||||
icon: './public/icon.png',
|
||||
},
|
||||
nsis: {
|
||||
@@ -38,7 +38,8 @@
|
||||
},
|
||||
linux: {
|
||||
target: ['AppImage'],
|
||||
artifactName: '${name}-linux-${arch}-${version}.${ext}',
|
||||
artifactName: '${name}-${version}-linux-${arch}.${ext}',
|
||||
icon: './public/icon.png',
|
||||
},
|
||||
publish: null, // disable auto publish 防止重复发版
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
{
|
||||
"name": "short-video-factory",
|
||||
"description": "短视频工厂,一键生成产品营销与泛内容短视频,AI批量自动剪辑",
|
||||
"version": "0.7.9",
|
||||
"version": "0.7.12",
|
||||
"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",
|
||||
|
||||
Reference in New Issue
Block a user