Skip to content

Commit 03a2cf3

Browse files
committed
update CubeICE 3.5.1
1 parent c610109 commit 03a2cf3

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

Applications/Ice/Associator/Cube.FileSystem.SevenZip.Ice.Associator.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.5.0</Version>
3+
<Version>3.5.1</Version>
44
<Authors>clown;cube-soft</Authors>
55
<Company>CubeSoft</Company>
66
<Product>CubeIceAssociator</Product>

Applications/Ice/Core/Cube.FileSystem.SevenZip.Ice.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.5.0</Version>
3+
<Version>3.5.1</Version>
44
<Authors>clown;cube-soft</Authors>
55
<Company>CubeSoft</Company>
66
<Description>CubeICE core library.</Description>

Applications/Ice/Main/Cube.FileSystem.SevenZip.Ice.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.WindowsDesktop">
22
<PropertyGroup>
3-
<Version>3.5.0</Version>
3+
<Version>3.5.1</Version>
44
<Authors>clown;cube-soft</Authors>
55
<Company>CubeSoft</Company>
66
<Product>CubeIce</Product>

Applications/Ice/Readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ CubeICE は、以下のライブラリを利用しています。
6363

6464
## バージョン履歴
6565

66+
* 2024-12-10 version 3.5.1
67+
- 7-Zip を 24.09 相当に更新
6668
* 2024-10-31 version 3.5.0
6769
- ファイル操作の規定値を「標準」に変更
6870
- 圧縮時に指定されたファイルの読み込みに失敗した際にエラー表示されない不具合を修正

Applications/Ice/Settings/Cube.FileSystem.SevenZip.Ice.Settings.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.WindowsDesktop">
22
<PropertyGroup>
3-
<Version>3.5.0</Version>
3+
<Version>3.5.1</Version>
44
<Authors>clown;cube-soft</Authors>
55
<Company>CubeSoft</Company>
66
<Product>CubeIceSetting</Product>

Tests/Ice/Cube.FileSystem.SevenZip.Ice.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.WindowsDesktop">
22
<PropertyGroup>
3-
<Version>3.5.0</Version>
3+
<Version>3.5.1</Version>
44
<Authors>clown;cube-soft</Authors>
55
<Company>CubeSoft</Company>
66
<Copyright>Copyright © 2010 CubeSoft, Inc.</Copyright>

Tests/Ice/Sources/Others/SettingTest.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void Create()
5151
var dest = new SettingFolder();
5252
Assert.That(dest.AutoSave, Is.False);
5353
Assert.That(dest.AutoSaveDelay, Is.EqualTo(TimeSpan.FromSeconds(1)));
54-
Assert.That(dest.Version.ToString(), Is.EqualTo("3.5.0"));
54+
Assert.That(dest.Version.ToString(), Is.EqualTo("3.5.1"));
5555
Assert.That(dest.Format, Is.EqualTo(DataContract.Format.Registry));
5656
Assert.That(dest.Location, Is.EqualTo(@"CubeSoft\CubeICE\v3"));
5757

@@ -86,10 +86,10 @@ public void Sync_Shortcut()
8686
Assert.That(src.Preset, Is.EqualTo(menu));
8787

8888
src.Load();
89-
Assert.That(src.Preset.HasFlag(Preset.Compress), Is.False);
89+
Assert.That(src.Preset.HasFlag(Preset.Compress), Is.False);
9090
Assert.That(src.Preset.HasFlag(Preset.CompressDetails), Is.True);
91-
Assert.That(src.Preset.HasFlag(Preset.Extract), Is.False);
92-
Assert.That(src.Preset.HasFlag(Preset.Settings), Is.False);
91+
Assert.That(src.Preset.HasFlag(Preset.Extract), Is.False);
92+
Assert.That(src.Preset.HasFlag(Preset.Settings), Is.False);
9393

9494
src.Preset = menu;
9595
src.Save();

0 commit comments

Comments
 (0)