Skip to content

Commit 368dbe5

Browse files
committed
update CubePDF 4.1.0
1 parent 294cbd9 commit 368dbe5

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

Applications/Converter/Main/Cube.Pdf.Converter.Main.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<Version>4.0.0</Version>
3+
<Version>4.1.0</Version>
44
<Authors>clown;cube-soft</Authors>
55
<Company>CubeSoft</Company>
66
<Product>CubePDF</Product>

Applications/Converter/Readme.ja.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ CubePDF は、以下のライブラリを利用しています。
5656

5757
## バージョン履歴
5858

59+
* 2024-08-13 version 4.1.0
60+
- 画像ファイルが Microsoft Photo で表示されない問題に対する緩和策を追加
61+
- iText 8.0.5 に更新
5962
* 2024-07-10 version 4.0.0
6063
- ファイル名の初期値の決定方法を改善
6164
- 多言語対応に関する処理を改修

Applications/Converter/Readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ Dependencies of the CubePDF are as follows.
5656

5757
## History
5858

59+
* 2024-08-13 version 4.1.0
60+
- Add workaround for image files not displaying in Microsoft Photo.
61+
- Update iText to 8.0.5.
5962
* 2024-07-10 version 4.0.0
6063
- Improve method of determining initial file name.
6164
- Improve processing of i18n support

Tests/Converter/Cube.Pdf.Converter.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<Version>4.0.0</Version>
3+
<Version>4.1.0</Version>
44
<Authors>clown;cube-soft</Authors>
55
<Company>CubeSoft</Company>
66
<Copyright>Copyright © 2010 CubeSoft, Inc.</Copyright>

Tests/Converter/Sources/Tests/Settings/SettingTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ private void Check(MainViewModel src)
8888
/* --------------------------------------------------------------------- */
8989
private void Check(SettingViewModel src)
9090
{
91-
Assert.That(src.Title, Does.StartWith("CubePDF 4.0.0 ("));
92-
Assert.That(src.Version, Does.StartWith("4.0.0 ("));
91+
Assert.That(src.Title, Does.StartWith("CubePDF 4.1.0 ("));
92+
Assert.That(src.Version, Does.StartWith("4.1.0 ("));
9393
Assert.That(src.Uri.ToString(), Does.StartWith("https://www.cube-soft.jp/cubepdf/?lang="));
9494
Assert.That(src.Format, Is.EqualTo(Format.Pdf));
9595
Assert.That(src.SaveOption, Is.EqualTo(SaveOption.Overwrite));

Tests/Converter/Sources/Tests/ViewTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ public void Test()
5959

6060
Assert.That(view.Busy, Is.False);
6161
Assert.That(Locale.GetCurrentLanguage(), Is.EqualTo(Language.Auto));
62-
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 4.0.0 ("));
62+
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 4.1.0 ("));
6363
Locale.Reset(Language.Japanese);
64-
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 4.0.0 ("));
64+
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 4.1.0 ("));
6565

6666
view.Close();
6767
}

0 commit comments

Comments
 (0)