Skip to content

Commit

Permalink
update CubePDF 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clown committed Jul 9, 2024
1 parent 789a0a2 commit d81b3e4
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Applications/Converter/Main/Cube.Pdf.Converter.Main.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>3.4.1</Version>
<Version>4.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Product>CubePDF</Product>
Expand Down
6 changes: 6 additions & 0 deletions Applications/Converter/Readme.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ CubePDF は、以下のライブラリを利用しています。

## バージョン履歴

* 2024-07-10 version 4.0.0
- ファイル名の初期値の決定方法を改善
- 多言語対応に関する処理を改修
- 表示言語に中国語(簡体字)を追加
- Ghostscript を 10.3.1 に更新
- iText を 8.0.4 に更新
* 2024-04-01 version 3.4.1
- Ghostscript を 10.3.0 に更新
* 2024-02-20 version 3.4.0
Expand Down
6 changes: 6 additions & 0 deletions Applications/Converter/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ Dependencies of the CubePDF are as follows.

## History

* 2024-07-10 version 4.0.0
- Improve method of determining initial file name.
- Improve processing of i18n support
- Add Simplified Chinese as a display language.
- Update Ghostscript to 10.3.1.
- Update iText to 8.0.4.
* 2024-04-01 version 3.4.1
- Update Ghostscript to 10.3.0.
* 2024-02-20 version 3.4.0
Expand Down
2 changes: 1 addition & 1 deletion Tests/Converter/Cube.Pdf.Converter.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>3.4.1</Version>
<Version>4.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Copyright>Copyright © 2010 CubeSoft, Inc.</Copyright>
Expand Down
4 changes: 2 additions & 2 deletions Tests/Converter/Sources/Tests/Settings/SettingTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ private void Check(MainViewModel src)
/* --------------------------------------------------------------------- */
private void Check(SettingViewModel src)
{
Assert.That(src.Title, Does.StartWith("CubePDF 3.4.1 ("));
Assert.That(src.Version, Does.StartWith("3.4.1 ("));
Assert.That(src.Title, Does.StartWith("CubePDF 4.0.0 ("));
Assert.That(src.Version, Does.StartWith("4.0.0 ("));
Assert.That(src.Uri.ToString(), Does.StartWith("https://www.cube-soft.jp/cubepdf/?lang="));
Assert.That(src.Format, Is.EqualTo(Format.Pdf));
Assert.That(src.SaveOption, Is.EqualTo(SaveOption.Overwrite));
Expand Down
4 changes: 2 additions & 2 deletions Tests/Converter/Sources/Tests/ViewTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ public void Test()

Assert.That(view.Busy, Is.False);
Assert.That(Locale.GetCurrentLanguage(), Is.EqualTo(Language.Auto));
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 3.4.1 ("));
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 4.0.0 ("));
Locale.Reset(Language.Japanese);
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 3.4.1 ("));
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 4.0.0 ("));

view.Close();
}
Expand Down

0 comments on commit d81b3e4

Please sign in to comment.