File tree Expand file tree Collapse file tree 6 files changed +16
-6
lines changed Expand file tree Collapse file tree 6 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <Version >3.2 .0</Version >
3
+ <Version >3.3 .0</Version >
4
4
<Authors >clown;cube-soft</Authors >
5
5
<Company >CubeSoft</Company >
6
6
<Product >CubePDF</Product >
Original file line number Diff line number Diff line change @@ -56,6 +56,11 @@ CubePDF は、以下のライブラリを利用しています。
56
56
57
57
## バージョン履歴
58
58
59
+ * 2023-08-25 version 3.3.0
60
+ - 保存ファイル名の初期値決定方法を修正
61
+ - 仮想プリンター追加・削除時のタイムアウト時間を調整
62
+ - iText を 8.0.1 に更新
63
+ - Ghostscript を 10.1.2 に更新
59
64
* 2023-06-12 version 3.2.0
60
65
- iText を 8.0.0 に更新
61
66
- 内部処理を改善
Original file line number Diff line number Diff line change @@ -56,6 +56,11 @@ Dependencies of the CubePDF are as follows.
56
56
57
57
## History
58
58
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.
59
64
* 2023-06-06 version 3.2.0
60
65
- Update iText to 8.0.0.
61
66
- Improve some implementations.
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <Version >3.2 .0</Version >
3
+ <Version >3.3 .0</Version >
4
4
<Authors >clown;cube-soft</Authors >
5
5
<Company >CubeSoft</Company >
6
6
<Copyright >Copyright © 2010 CubeSoft, Inc.</Copyright >
Original file line number Diff line number Diff line change @@ -87,8 +87,8 @@ private void Check(MainViewModel src)
87
87
/* --------------------------------------------------------------------- */
88
88
private void Check ( SettingViewModel src )
89
89
{
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 (" ) ) ;
92
92
Assert . That ( src . Uri . ToString ( ) , Does . StartWith ( "https://www.cube-soft.jp/cubepdf/?lang=" ) ) ;
93
93
Assert . That ( src . Format , Is . EqualTo ( Format . Pdf ) ) ;
94
94
Assert . That ( src . SaveOption , Is . EqualTo ( SaveOption . Overwrite ) ) ;
Original file line number Diff line number Diff line change @@ -58,9 +58,9 @@ public void Test()
58
58
59
59
Assert . That ( view . Busy , Is . False ) ;
60
60
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 (" ) ) ;
62
62
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 (" ) ) ;
64
64
65
65
view . Close ( ) ;
66
66
}
You can’t perform that action at this time.
0 commit comments