Skip to content

Commit b237193

Browse files
committed
update CubePDF 3.3.0
1 parent e0162d8 commit b237193

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-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>3.2.0</Version>
3+
<Version>3.3.0</Version>
44
<Authors>clown;cube-soft</Authors>
55
<Company>CubeSoft</Company>
66
<Product>CubePDF</Product>

Applications/Converter/Readme.ja.md

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

5757
## バージョン履歴
5858

59+
* 2023-08-25 version 3.3.0
60+
- 保存ファイル名の初期値決定方法を修正
61+
- 仮想プリンター追加・削除時のタイムアウト時間を調整
62+
- iText を 8.0.1 に更新
63+
- Ghostscript を 10.1.2 に更新
5964
* 2023-06-12 version 3.2.0
6065
- iText を 8.0.0 に更新
6166
- 内部処理を改善

Applications/Converter/Readme.md

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

5757
## History
5858

59+
* 2023-08-25 version 3.3.0
60+
- Fix the way to determine the initial value of the output path.
61+
- Adjust timeout value when adding/deleting the CubePDF virtual printer.
62+
- Update iText to 8.0.1.
63+
- Update Ghostscript to 10.1.2.
5964
* 2023-06-06 version 3.2.0
6065
- Update iText to 8.0.0.
6166
- Improve some implementations.

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>3.2.0</Version>
3+
<Version>3.3.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
@@ -87,8 +87,8 @@ private void Check(MainViewModel src)
8787
/* --------------------------------------------------------------------- */
8888
private void Check(SettingViewModel src)
8989
{
90-
Assert.That(src.Title, Does.StartWith("CubePDF 3.2.0 ("));
91-
Assert.That(src.Version, Does.StartWith("3.2.0 ("));
90+
Assert.That(src.Title, Does.StartWith("CubePDF 3.3.0 ("));
91+
Assert.That(src.Version, Does.StartWith("3.3.0 ("));
9292
Assert.That(src.Uri.ToString(), Does.StartWith("https://www.cube-soft.jp/cubepdf/?lang="));
9393
Assert.That(src.Format, Is.EqualTo(Format.Pdf));
9494
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
@@ -58,9 +58,9 @@ public void Test()
5858

5959
Assert.That(view.Busy, Is.False);
6060
Assert.That(Locale.Language, Is.EqualTo(Language.Auto));
61-
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 3.2.0 ("));
61+
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 3.3.0 ("));
6262
Locale.Set(Language.Japanese);
63-
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 3.2.0 ("));
63+
Assert.That(view.Text, Does.StartWith("WindowTest - CubePDF 3.3.0 ("));
6464

6565
view.Close();
6666
}

0 commit comments

Comments
 (0)