Skip to content

Commit

Permalink
update CubePDF 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clown committed Aug 8, 2024
1 parent 294cbd9 commit 368dbe5
Show file tree
Hide file tree
Showing 6 changed files with 12 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>4.0.0</Version>
<Version>4.1.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Product>CubePDF</Product>
Expand Down
3 changes: 3 additions & 0 deletions Applications/Converter/Readme.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ CubePDF は、以下のライブラリを利用しています。

## バージョン履歴

* 2024-08-13 version 4.1.0
- 画像ファイルが Microsoft Photo で表示されない問題に対する緩和策を追加
- iText 8.0.5 に更新
* 2024-07-10 version 4.0.0
- ファイル名の初期値の決定方法を改善
- 多言語対応に関する処理を改修
Expand Down
3 changes: 3 additions & 0 deletions Applications/Converter/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ Dependencies of the CubePDF are as follows.

## History

* 2024-08-13 version 4.1.0
- Add workaround for image files not displaying in Microsoft Photo.
- Update iText to 8.0.5.
* 2024-07-10 version 4.0.0
- Improve method of determining initial file name.
- Improve processing of i18n support
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>4.0.0</Version>
<Version>4.1.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 4.0.0 ("));
Assert.That(src.Version, Does.StartWith("4.0.0 ("));
Assert.That(src.Title, Does.StartWith("CubePDF 4.1.0 ("));
Assert.That(src.Version, Does.StartWith("4.1.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 4.0.0 ("));
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 4.1.0 ("));
Locale.Reset(Language.Japanese);
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 4.0.0 ("));
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 4.1.0 ("));

view.Close();
}
Expand Down

0 comments on commit 368dbe5

Please sign in to comment.