From 368dbe535f417c5470dc6b0c1ea18934425d3def Mon Sep 17 00:00:00 2001 From: clown Date: Thu, 8 Aug 2024 12:42:45 +0900 Subject: [PATCH] update CubePDF 4.1.0 --- Applications/Converter/Main/Cube.Pdf.Converter.Main.csproj | 2 +- Applications/Converter/Readme.ja.md | 3 +++ Applications/Converter/Readme.md | 3 +++ Tests/Converter/Cube.Pdf.Converter.Tests.csproj | 2 +- Tests/Converter/Sources/Tests/Settings/SettingTest.cs | 4 ++-- Tests/Converter/Sources/Tests/ViewTest.cs | 4 ++-- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Applications/Converter/Main/Cube.Pdf.Converter.Main.csproj b/Applications/Converter/Main/Cube.Pdf.Converter.Main.csproj index ac4a7901..4a7a313e 100644 --- a/Applications/Converter/Main/Cube.Pdf.Converter.Main.csproj +++ b/Applications/Converter/Main/Cube.Pdf.Converter.Main.csproj @@ -1,6 +1,6 @@  - 4.0.0 + 4.1.0 clown;cube-soft CubeSoft CubePDF diff --git a/Applications/Converter/Readme.ja.md b/Applications/Converter/Readme.ja.md index ac869888..b973ccc5 100644 --- a/Applications/Converter/Readme.ja.md +++ b/Applications/Converter/Readme.ja.md @@ -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 - ファイル名の初期値の決定方法を改善 - 多言語対応に関する処理を改修 diff --git a/Applications/Converter/Readme.md b/Applications/Converter/Readme.md index f1d132cf..c4b61146 100644 --- a/Applications/Converter/Readme.md +++ b/Applications/Converter/Readme.md @@ -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 diff --git a/Tests/Converter/Cube.Pdf.Converter.Tests.csproj b/Tests/Converter/Cube.Pdf.Converter.Tests.csproj index d831ad73..07569ee5 100644 --- a/Tests/Converter/Cube.Pdf.Converter.Tests.csproj +++ b/Tests/Converter/Cube.Pdf.Converter.Tests.csproj @@ -1,6 +1,6 @@  - 4.0.0 + 4.1.0 clown;cube-soft CubeSoft Copyright © 2010 CubeSoft, Inc. diff --git a/Tests/Converter/Sources/Tests/Settings/SettingTest.cs b/Tests/Converter/Sources/Tests/Settings/SettingTest.cs index 32ebf30f..67903ccc 100644 --- a/Tests/Converter/Sources/Tests/Settings/SettingTest.cs +++ b/Tests/Converter/Sources/Tests/Settings/SettingTest.cs @@ -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)); diff --git a/Tests/Converter/Sources/Tests/ViewTest.cs b/Tests/Converter/Sources/Tests/ViewTest.cs index 3bcbaaf9..c7128b59 100644 --- a/Tests/Converter/Sources/Tests/ViewTest.cs +++ b/Tests/Converter/Sources/Tests/ViewTest.cs @@ -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(); }