Skip to content

Commit 9c2b754

Browse files
committed
bump: version
1 parent 4d06e53 commit 9c2b754

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

MaiChartManager/Front/src/components/MusicEdit/SetMovieButton.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { defineComponent, PropType, ref } from "vue";
2-
import { NButton, NDrawer, NDrawerContent, NFlex, NInputNumber, NModal, NProgress, useDialog } from "naive-ui";
2+
import { NButton, NDrawer, NDrawerContent, NFlex, NInputNumber, NModal, NProgress, useDialog, useMessage } from "naive-ui";
33
import FileTypeIcon from "@/components/FileTypeIcon";
44
import { LicenseStatus, MusicXmlWithABJacket } from "@/client/apiGen";
55
import api from "@/client/api";
@@ -25,6 +25,7 @@ export default defineComponent({
2525
const dialog = useDialog();
2626
const step = ref(STEP.None)
2727
const progress = ref(0)
28+
const message = useMessage();
2829

2930
const uploadMovie = (id: number, movie: File, offset: number) => new Promise<void>((resolve, reject) => {
3031
progress.value = 0;
@@ -95,6 +96,7 @@ export default defineComponent({
9596
step.value = STEP.Progress
9697
await uploadMovie(props.song.id!, file, offset.value);
9798
console.log("upload movie success")
99+
message.success("保存成功")
98100
}
99101
} catch (e: any) {
100102
if (e.name === 'AbortError') return
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System.Reflection;
22

33
[assembly: AssemblyCompany("Clansty")]
4-
[assembly: AssemblyFileVersion("1.0.5.0")]
5-
[assembly: AssemblyInformationalVersion("1.0.5")]
4+
[assembly: AssemblyFileVersion("1.1.0.0")]
5+
[assembly: AssemblyInformationalVersion("1.1.0")]
66
[assembly: AssemblyProduct("MaiChartManager")]
77
[assembly: AssemblyTitle("MaiChartManager")]
8-
[assembly: AssemblyVersion("1.0.5.0")]
8+
[assembly: AssemblyVersion("1.1.0.0")]
99
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.17763.0")]
1010
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.14393.0")]

Packaging/Pack/AppxManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
99
IgnorableNamespaces="win32dependencies"
1010
>
11-
<Identity Name="22369479C5405.MaiChartManager" Publisher="CN=86A51452-7790-46C3-9A4B-1207C2C97940" Version="1.0.5.0"
11+
<Identity Name="22369479C5405.MaiChartManager" Publisher="CN=86A51452-7790-46C3-9A4B-1207C2C97940" Version="1.1.0.0"
1212
ProcessorArchitecture="x64" />
1313
<Properties>
1414
<DisplayName>MaiChartManager</DisplayName>

0 commit comments

Comments
 (0)