Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/yqzhishen/opensvip
Browse files Browse the repository at this point in the history
  • Loading branch information
yqzhishen committed Apr 25, 2022
2 parents 61cfa7e + cb13f84 commit 1deb1af
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 24 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
- OpenSVIP 文件 (*.json)
- Synthesizer V 工程文件 (*.svp)
- 歌叽歌叽工程文件 (*.gj)
- Project Vogen 工程文件 (*.json)(开发中)
- Project Vogen 工程文件 (*.vog)(开发中)
- MIDI 文件 (*.mid)(计划中)

## 使用方法
Expand Down
12 changes: 7 additions & 5 deletions csharp/Plugins/Gjgj/Properties.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<Plugin>
<Name>Gjgj</Name>
<Version>1.5.0</Version>
<Name>歌叽歌叽工程转换插件</Name>
<Version>1.5.1</Version>
<Author>笛鹿FlutyDeer</Author>
<HomePage>https://space.bilibili.com/386270936</HomePage>
<Descriptions>歌叽歌叽工程格式转换插件。</Descriptions>
<Descriptions>适用于 OpenSvip 的歌叽歌叽工程格式转换插件。</Descriptions>
<Requirements>无</Requirements>
<Format>歌叽歌叽工程文件</Format>
<Suffix>gj</Suffix>
Expand All @@ -14,10 +14,12 @@
<InputOptions/>
<OutputOptions>
<Option Name="desample" Type="integer" Default="32">
<Notes>指定音量参数点的平均采样间隔以缓解编辑器卡顿</Notes>
<Notes>音量参数平均采样间隔</Notes>
<Tips>单位为梯。数值越大,编辑器越流畅;数值越小,音量参数越精确。</Tips>
</Option>
<Option Name="singer" Type="string" Default="扇宝">
<Notes>指定默认歌手</Notes>
<Notes>默认歌手</Notes>
<Tips>歌叽歌叽官方歌手有:扇宝、SING-林嘉慧和Rocky。</Tips>
</Option>
</OutputOptions>
</Plugin>
18 changes: 10 additions & 8 deletions csharp/Plugins/Gjgj/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
using System.Reflection;
using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Gjgj")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyTitle("歌叽歌叽工程转换插件")]
[assembly: AssemblyDescription("适用于 OpenSvip 的歌叽歌叽工程格式转换插件。")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Gjgj")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyCompany("笛鹿FlutyDeer")]
[assembly: AssemblyProduct("歌叽歌叽工程转换插件")]
[assembly: AssemblyCopyright("Copyright © 2022 笛鹿FlutyDeer")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +33,6 @@
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.5.1.0")]
[assembly: AssemblyFileVersion("1.5.1.0")]
[assembly: NeutralResourcesLanguage("zh-CN")]
8 changes: 4 additions & 4 deletions csharp/Plugins/Vogen/Properties.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Plugin>
<Name>Vogen</Name>
<Version>0.2.0</Version>
<Name>Vogen 工程转换插件</Name>
<Version>0.2.1</Version>
<Author>笛鹿FlutyDeer</Author>
<HomePage>https://space.bilibili.com/386270936</HomePage>
<Descriptions>Vogen 工程格式转换插件。</Descriptions>
<Descriptions>适用于 OpenSvip 的 Vogen 工程格式转换插件。</Descriptions>
<Requirements>无</Requirements>
<Format>Vogen 工程文件</Format>
<Suffix>json</Suffix>
<Suffix>vog</Suffix>
<Identifier>vog</Identifier>
<LibraryPath>Vogen\Plugin.Vogen.dll</LibraryPath>
<Converter>Vogen.Stream.VogenConverter</Converter>
Expand Down
14 changes: 8 additions & 6 deletions csharp/Plugins/Vogen/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
using System.Reflection;
using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Plugin for Vogen")]
[assembly: AssemblyDescription("Vogen 工程格式转换插件。")]
[assembly: AssemblyTitle("Vogen 工程转换插件")]
[assembly: AssemblyDescription("适用于 OpenSvip 的 Vogen 工程格式转换插件。")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("笛鹿FlutyDeer")]
[assembly: AssemblyProduct("Plugin for Vogen")]
[assembly: AssemblyProduct("Vogen 工程转换插件")]
[assembly: AssemblyCopyright("Copyright © 2022 笛鹿FlutyDeer")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand All @@ -32,5 +33,6 @@
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.1.0.0")]
[assembly: AssemblyFileVersion("0.1.0.0")]
[assembly: AssemblyVersion("0.2.1.0")]
[assembly: AssemblyFileVersion("0.2.1.0")]
[assembly: NeutralResourcesLanguage("zh-CN")]

0 comments on commit 1deb1af

Please sign in to comment.