Skip to content

Commit

Permalink
v1.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
lich426 committed Aug 27, 2023
1 parent ed6f808 commit 7cb4c4a
Show file tree
Hide file tree
Showing 19 changed files with 689 additions and 35 deletions.
14 changes: 13 additions & 1 deletion FanCtrl.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<PublisherName>Lich</PublisherName>
<SuiteName>FanCtrl</SuiteName>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.6.4.0</ApplicationVersion>
<ApplicationVersion>1.6.5.0</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<CreateDesktopShortcut>true</CreateDesktopShortcut>
<PublishWizardCompleted>true</PublishWizardCompleted>
Expand Down Expand Up @@ -135,6 +135,11 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Resources\StringLib.ru.Designer.cs">
<DependentUpon>StringLib.ru.resx</DependentUpon>
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
</Compile>
<Compile Include="Resources\StringLib.fr.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
Expand Down Expand Up @@ -332,6 +337,10 @@
<Compile Include="src\UI\Theme\ThemeLibLabel.cs">
<SubType>Component</SubType>
</Compile>
<EmbeddedResource Include="Resources\StringLib.ru.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>StringLib.ru.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Include="Resources\StringLib.es.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>StringLib.es.Designer.cs</LastGenOutput>
Expand Down Expand Up @@ -451,15 +460,18 @@ mkdir "$(TargetDir)locale\fr"
mkdir "$(TargetDir)locale\ja"
mkdir "$(TargetDir)locale\ko"
mkdir "$(TargetDir)locale\es"
mkdir "$(TargetDir)locale\ru"
copy /Y "$(TargetDir)fr\*.*" "$(TargetDir)locale\fr"
copy /Y "$(TargetDir)ja\*.*" "$(TargetDir)locale\ja"
copy /Y "$(TargetDir)ko\*.*" "$(TargetDir)locale\ko"
copy /Y "$(TargetDir)es\*.*" "$(TargetDir)locale\es"
copy /Y "$(TargetDir)es\*.*" "$(TargetDir)locale\ru"
timeout 1 &gt; NUL
rmdir /S /Q "$(TargetDir)fr"
rmdir /S /Q "$(TargetDir)ja"
rmdir /S /Q "$(TargetDir)ko"
rmdir /S /Q "$(TargetDir)es"
rmdir /S /Q "$(TargetDir)ru"
del $(TargetName).pdb</PostBuildEvent>
</PropertyGroup>
<PropertyGroup>
Expand Down
Binary file modified Language.xlsx
Binary file not shown.
6 changes: 3 additions & 3 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
// 기본값으로 할 수 있습니다.
[assembly: AssemblyVersion("1.6.4")]
[assembly: AssemblyFileVersion("1.6.4")]
[assembly: AssemblyInformationalVersion("1.6.4")]
[assembly: AssemblyVersion("1.6.5")]
[assembly: AssemblyFileVersion("1.6.5")]
[assembly: AssemblyInformationalVersion("1.6.5")]
9 changes: 9 additions & 0 deletions Resources/StringLib.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Resources/StringLib.es.resx
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,9 @@
<data name="Running" xml:space="preserve">
<value>En ejecución</value>
</data>
<data name="Russian" xml:space="preserve">
<value>Ruso</value>
</data>
<data name="Save" xml:space="preserve">
<value>Guardar</value>
</data>
Expand Down
3 changes: 3 additions & 0 deletions Resources/StringLib.fr.resx
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,9 @@
<data name="Running" xml:space="preserve">
<value>Courir</value>
</data>
<data name="Russian" xml:space="preserve">
<value>Russe</value>
</data>
<data name="Save" xml:space="preserve">
<value>Sauvegarder</value>
</data>
Expand Down
5 changes: 4 additions & 1 deletion Resources/StringLib.ja.resx
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,9 @@
<data name="Running" xml:space="preserve">
<value>実行中</value>
</data>
<data name="Russian" xml:space="preserve">
<value>ロシア語</value>
</data>
<data name="Save" xml:space="preserve">
<value>保存</value>
</data>
Expand Down Expand Up @@ -393,4 +396,4 @@
<data name="Unit" xml:space="preserve">
<value>単位 :</value>
</data>
</root>
</root>
3 changes: 3 additions & 0 deletions Resources/StringLib.ko.resx
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,9 @@
<data name="Running" xml:space="preserve">
<value>동작 중</value>
</data>
<data name="Russian" xml:space="preserve">
<value>러시아어</value>
</data>
<data name="Save" xml:space="preserve">
<value>저장</value>
</data>
Expand Down
3 changes: 3 additions & 0 deletions Resources/StringLib.resx
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,9 @@
<data name="Running" xml:space="preserve">
<value>Running</value>
</data>
<data name="Russian" xml:space="preserve">
<value>Russian</value>
</data>
<data name="Save" xml:space="preserve">
<value>Save</value>
</data>
Expand Down
Empty file.
Loading

0 comments on commit 7cb4c4a

Please sign in to comment.