chore: bump version to 0.1.5
- 更新package.json版本号到0.1.5 - 更新Cargo.toml版本号到0.1.5 - 更新tauri.conf.json版本号到0.1.5 - 准备发布0.1.5版本
This commit is contained in:
parent
c366261008
commit
af2897d314
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@mixvideo/desktop",
|
"name": "@mixvideo/desktop",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.1.3",
|
"version": "0.1.5",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "tauri dev",
|
"dev": "tauri dev",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mixvideo-desktop"
|
name = "mixvideo-desktop"
|
||||||
version = "0.1.3"
|
version = "0.1.5"
|
||||||
description = "MixVideo Desktop Application"
|
description = "MixVideo Desktop Application"
|
||||||
authors = ["imeepos <imeepos@outlook.com>"]
|
authors = ["imeepos <imeepos@outlook.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "MixVideo Desktop",
|
"productName": "MixVideo Desktop",
|
||||||
"version": "0.1.3",
|
"version": "0.1.5",
|
||||||
"identifier": "com.mixvideo.desktop",
|
"identifier": "com.mixvideo.desktop",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "vite",
|
"beforeDevCommand": "vite",
|
||||||
|
|
|
||||||
|
|
@ -65,35 +65,7 @@ export const FFmpegDebugPanel: React.FC = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="bg-white rounded-lg shadow-sm border border-gray-200 p-6">
|
<div className="bg-white rounded-lg shadow-sm border border-gray-200 p-6">
|
||||||
<h3 className="text-lg font-semibold text-gray-900 mb-4 flex items-center">
|
|
||||||
<FileText className="w-5 h-5 mr-2" />
|
|
||||||
FFmpeg 调试面板
|
|
||||||
</h3>
|
|
||||||
|
|
||||||
{/* FFmpeg状态检查 */}
|
|
||||||
<div className="mb-6">
|
<div className="mb-6">
|
||||||
<div className="flex items-center justify-between mb-3">
|
|
||||||
<h4 className="font-medium text-gray-900">FFmpeg 状态</h4>
|
|
||||||
<button
|
|
||||||
onClick={handleGetFFmpegStatus}
|
|
||||||
disabled={isLoading}
|
|
||||||
className="px-3 py-1 text-sm bg-blue-600 text-white rounded hover:bg-blue-700 disabled:opacity-50"
|
|
||||||
>
|
|
||||||
检查状态
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{ffmpegStatus && (
|
|
||||||
<div className="bg-gray-50 rounded p-3 text-sm font-mono whitespace-pre-wrap">
|
|
||||||
{ffmpegStatus}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* 场景检测测试 */}
|
|
||||||
<div className="mb-6">
|
|
||||||
<h4 className="font-medium text-gray-900 mb-3">场景检测测试</h4>
|
|
||||||
|
|
||||||
<div className="space-y-3">
|
<div className="space-y-3">
|
||||||
<div className="flex items-center space-x-3">
|
<div className="flex items-center space-x-3">
|
||||||
<button
|
<button
|
||||||
|
|
@ -137,7 +109,6 @@ export const FFmpegDebugPanel: React.FC = () => {
|
||||||
使用说明
|
使用说明
|
||||||
</h4>
|
</h4>
|
||||||
<ul className="text-sm text-blue-800 space-y-1">
|
<ul className="text-sm text-blue-800 space-y-1">
|
||||||
<li>• 首先检查 FFmpeg 状态,确保 ffmpeg 和 ffprobe 都可用</li>
|
|
||||||
<li>• 选择一个视频文件进行场景检测测试</li>
|
<li>• 选择一个视频文件进行场景检测测试</li>
|
||||||
<li>• 查看测试结果,包括元数据提取和场景检测信息</li>
|
<li>• 查看测试结果,包括元数据提取和场景检测信息</li>
|
||||||
<li>• 如果场景检测失败,检查错误信息进行调试</li>
|
<li>• 如果场景检测失败,检查错误信息进行调试</li>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue