mirror of
https://github.com/YILS-LIN/short-video-factory.git
synced 2025-11-25 19:37:50 +08:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a328a5aea3 | ||
|
|
204468935b | ||
|
|
46c612946b | ||
|
|
8c77530f58 | ||
|
|
d1be7c2043 | ||
|
|
4423ca2ceb |
41
.github/workflows/build.yml
vendored
41
.github/workflows/build.yml
vendored
@@ -71,20 +71,27 @@ jobs:
|
||||
echo "EOF" >> $GITHUB_ENV
|
||||
shell: bash
|
||||
|
||||
# Upload artifacts
|
||||
- name: Upload artifacts
|
||||
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 }}
|
||||
# Test
|
||||
- name: Test
|
||||
id: Test
|
||||
run: |
|
||||
ls -al
|
||||
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 }}
|
||||
|
||||
14
CHANGELOG.md
14
CHANGELOG.md
@@ -1,7 +1,17 @@
|
||||
# Changelog
|
||||
此项目的所有显著更改都将记录在此文件中。
|
||||
|
||||
## [v0.7.3] - 2025-08-07
|
||||
## [v1.0.0] - 2025-08-07
|
||||
### Added
|
||||
- 发布第一个正式版本
|
||||
- 支持使用大语言模型生成文案(推荐免费的GLM-4.5-Flash)
|
||||
- 支持使用EdgeTTS免费合成语音
|
||||
- 支持视频分镜自动混剪
|
||||
- 支持渲染合成视频
|
||||
- 支持自动化批量任务
|
||||
- 美观的UI界面
|
||||
|
||||
## [v0.7.9] - 2025-08-07
|
||||
### Added
|
||||
- 构建测试
|
||||
- 跨平台: macOS dmg, Windows exe, Linux deb/rpm/AppImage.
|
||||
- 跨平台: macOS dmg, Windows exe, Linux AppImage.
|
||||
@@ -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}-mac-${version}-installer.${ext}',
|
||||
icon: './public/icon.png',
|
||||
},
|
||||
win: {
|
||||
@@ -21,7 +26,7 @@
|
||||
target: 'nsis',
|
||||
},
|
||||
],
|
||||
artifactName: '${productName}-Windows-${arch}-${version}-Setup.${ext}',
|
||||
artifactName: '${name}-win-${arch}-${version}-setup.${ext}',
|
||||
icon: './public/icon.png',
|
||||
},
|
||||
nsis: {
|
||||
@@ -33,7 +38,7 @@
|
||||
},
|
||||
linux: {
|
||||
target: ['AppImage'],
|
||||
artifactName: '${productName}-Linux-${arch}-${version}.${ext}',
|
||||
artifactName: '${name}-linux-${arch}-${version}.${ext}',
|
||||
icon: './public/icon.png',
|
||||
},
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "short-video-factory",
|
||||
"description": "短视频工厂,一键生成产品营销与泛内容短视频,AI批量自动剪辑",
|
||||
"version": "0.7.3",
|
||||
"version": "0.7.9",
|
||||
"author": {
|
||||
"name": "YILS",
|
||||
"developer": "YILS",
|
||||
|
||||
Reference in New Issue
Block a user