发布小版本更新,MAC嵌入ffmpeg,架构分隔

This commit is contained in:
YILS
2025-10-22 17:32:34 +08:00
parent ff94d9679c
commit d2dfee949b
7 changed files with 19 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
os: [macos-latest, macos-latest-large, windows-latest, ubuntu-latest]
steps:
- name: Check out Git repository

View File

@@ -1,6 +1,22 @@
# Changelog
All significant changes to this project will be recorded in this file.
此项目的所有显著更改都将记录在此文件中。
## [v1.1.2] - 2025-10-22
### Added
- Add MAC embedding FFmpeg support
### Fixed
- Resolve the error of not setting BGM folder
- Remove the restriction that the total duration of video materials should not be shorter than that of voice
- Optimize some details
### 添加
- 增加MAC嵌入FFmpeg支持
### 修复
- 解决不设置bgm文件夹报错
- 移除视频素材总时长不的短于语音的限制
- 优化一些细节
## [v1.1.1] - 2025-08-26
### Fixed
- Fix MAC copy and paste shortcut key failure issue

View File

@@ -14,7 +14,6 @@
target: [
{
target: 'dmg',
arch: ['arm64', 'x64'],
},
],
artifactName: '${name}-${version}-mac-${arch}-installer.${ext}',

View File

@@ -1,7 +1,7 @@
{
"name": "short-video-factory",
"description": "短视频工厂一键生成产品营销与泛内容短视频AI批量自动剪辑",
"version": "1.1.1",
"version": "1.1.2",
"author": {
"name": "YILS",
"developer": "YILS",

View File

@@ -7,7 +7,7 @@ console.log('Downloading ffmpeg...')
execSync(
`cross-env FFMPEG_BINARIES_URL=${process.env['npm_config_ffmpeg_binaries_url']} npm rebuild ffmpeg-static`,
)
console.log(`FFmpeg path: ${ffmpeg}`)
console.log(`FFmpeg downloaded to path: ${ffmpeg}`)
const isWindows = process.platform === 'win32'
if (!isWindows) {

View File

@@ -17,7 +17,6 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"~/*": ["./*"]

View File

@@ -6,7 +6,6 @@
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"strict": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"~/*": ["./*"]