Skip to content

Commit d2dfee9

Browse files
committed
发布小版本更新,MAC嵌入ffmpeg,架构分隔
1 parent ff94d96 commit d2dfee9

File tree

7 files changed

+19
-6
lines changed

7 files changed

+19
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
os: [macos-latest, windows-latest, ubuntu-latest]
14+
os: [macos-latest, macos-latest-large, windows-latest, ubuntu-latest]
1515

1616
steps:
1717
- name: Check out Git repository

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
# Changelog
2+
All significant changes to this project will be recorded in this file.
23
此项目的所有显著更改都将记录在此文件中。
34

5+
## [v1.1.2] - 2025-10-22
6+
### Added
7+
- Add MAC embedding FFmpeg support
8+
### Fixed
9+
- Resolve the error of not setting BGM folder
10+
- Remove the restriction that the total duration of video materials should not be shorter than that of voice
11+
- Optimize some details
12+
### 添加
13+
- 增加MAC嵌入FFmpeg支持
14+
### 修复
15+
- 解决不设置bgm文件夹报错
16+
- 移除视频素材总时长不的短于语音的限制
17+
- 优化一些细节
18+
19+
420
## [v1.1.1] - 2025-08-26
521
### Fixed
622
- Fix MAC copy and paste shortcut key failure issue

electron-builder.json5

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
target: [
1515
{
1616
target: 'dmg',
17-
arch: ['arm64', 'x64'],
1817
},
1918
],
2019
artifactName: '${name}-${version}-mac-${arch}-installer.${ext}',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "short-video-factory",
33
"description": "短视频工厂,一键生成产品营销与泛内容短视频,AI批量自动剪辑",
4-
"version": "1.1.1",
4+
"version": "1.1.2",
55
"author": {
66
"name": "YILS",
77
"developer": "YILS",

scripts/post-install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ console.log('Downloading ffmpeg...')
77
execSync(
88
`cross-env FFMPEG_BINARIES_URL=${process.env['npm_config_ffmpeg_binaries_url']} npm rebuild ffmpeg-static`,
99
)
10-
console.log(`FFmpeg path: ${ffmpeg}`)
10+
console.log(`FFmpeg downloaded to path: ${ffmpeg}`)
1111

1212
const isWindows = process.platform === 'win32'
1313
if (!isWindows) {

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"noUnusedLocals": true,
1818
"noUnusedParameters": true,
1919
"noFallthroughCasesInSwitch": true,
20-
"baseUrl": ".",
2120
"paths": {
2221
"@/*": ["./src/*"],
2322
"~/*": ["./*"]

tsconfig.node.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"moduleResolution": "bundler",
77
"allowSyntheticDefaultImports": true,
88
"strict": true,
9-
"baseUrl": ".",
109
"paths": {
1110
"@/*": ["./src/*"],
1211
"~/*": ["./*"]

0 commit comments

Comments
 (0)