mirror of
https://github.com/YILS-LIN/short-video-factory.git
synced 2025-11-26 03:44:56 +08:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
31780f4703 | ||
|
|
2cead83ddc | ||
|
|
95b1aa359f | ||
|
|
b9b656da9e | ||
|
|
a328a5aea3 | ||
|
|
204468935b | ||
|
|
46c612946b | ||
|
|
8c77530f58 | ||
|
|
d1be7c2043 | ||
|
|
4423ca2ceb |
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
@@ -71,18 +71,16 @@ jobs:
|
||||
echo "EOF" >> $GITHUB_ENV
|
||||
shell: bash
|
||||
|
||||
# Upload artifacts
|
||||
- name: Upload artifacts
|
||||
# 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
|
||||
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
|
||||
|
||||
14
CHANGELOG.md
14
CHANGELOG.md
@@ -1,7 +1,17 @@
|
||||
# Changelog
|
||||
此项目的所有显著更改都将记录在此文件中。
|
||||
|
||||
## [v0.7.3] - 2025-08-07
|
||||
## [v1.0.0] - 2025-08-08
|
||||
### Added
|
||||
- 发布第一个正式版本
|
||||
- 支持使用大语言模型生成文案(推荐免费的GLM-4.5-Flash)
|
||||
- 支持使用EdgeTTS免费合成语音
|
||||
- 支持视频分镜自动混剪
|
||||
- 支持渲染合成视频
|
||||
- 支持自动化批量任务
|
||||
- 美观的UI界面
|
||||
|
||||
## [v0.7.12] - 2025-08-08
|
||||
### 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}-${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 防止重复发版
|
||||
}
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
{
|
||||
"name": "short-video-factory",
|
||||
"description": "短视频工厂,一键生成产品营销与泛内容短视频,AI批量自动剪辑",
|
||||
"version": "0.7.3",
|
||||
"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",
|
||||
|
||||
Reference in New Issue
Block a user