File tree Expand file tree Collapse file tree 6 files changed +12
-6
lines changed Expand file tree Collapse file tree 6 files changed +12
-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 >4.0 .0</Version >
3
+ <Version >4.1 .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,9 @@ CubePDF は、以下のライブラリを利用しています。
56
56
57
57
## バージョン履歴
58
58
59
+ * 2024-08-13 version 4.1.0
60
+ - 画像ファイルが Microsoft Photo で表示されない問題に対する緩和策を追加
61
+ - iText 8.0.5 に更新
59
62
* 2024-07-10 version 4.0.0
60
63
- ファイル名の初期値の決定方法を改善
61
64
- 多言語対応に関する処理を改修
Original file line number Diff line number Diff line change @@ -56,6 +56,9 @@ Dependencies of the CubePDF are as follows.
56
56
57
57
## History
58
58
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.
59
62
* 2024-07-10 version 4.0.0
60
63
- Improve method of determining initial file name.
61
64
- Improve processing of i18n support
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <Version >4.0 .0</Version >
3
+ <Version >4.1 .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 @@ -88,8 +88,8 @@ private void Check(MainViewModel src)
88
88
/* --------------------------------------------------------------------- */
89
89
private void Check ( SettingViewModel src )
90
90
{
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 (" ) ) ;
93
93
Assert . That ( src . Uri . ToString ( ) , Does . StartWith ( "https://www.cube-soft.jp/cubepdf/?lang=" ) ) ;
94
94
Assert . That ( src . Format , Is . EqualTo ( Format . Pdf ) ) ;
95
95
Assert . That ( src . SaveOption , Is . EqualTo ( SaveOption . Overwrite ) ) ;
Original file line number Diff line number Diff line change @@ -59,9 +59,9 @@ public void Test()
59
59
60
60
Assert . That ( view . Busy , Is . False ) ;
61
61
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 (" ) ) ;
63
63
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 (" ) ) ;
65
65
66
66
view . Close ( ) ;
67
67
}
You can’t perform that action at this time.
0 commit comments