Skip to content

Commit 67e8883

Browse files
committed
fix to use system temp as default value
1 parent ddaad28 commit 67e8883

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Applications/Ice/Core/Sources/Settings/SettingValue.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public bool AlphaFS
6868
[DataMember]
6969
public string Temp
7070
{
71-
get => Get(() => string.Empty);
71+
get => Get(System.IO.Path.GetTempPath);
7272
set => Set(value);
7373
}
7474

Applications/Ice/Readme.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,10 @@ CubeICE は、以下のライブラリを利用しています。
6363

6464
## バージョン履歴
6565

66-
* 2024-03-27 version 3.3.0
66+
* 2024-03-26 version 3.3.0
6767
- フォルダーが一つのみの場合に解凍に失敗する不具合を修正
6868
- ZoneID 伝搬時に最終更新日時を維持するように修正
69+
- 作業用フォルダーの初期設定がシステムの規定値にならない不具合を修正
6970
- ファイル入出力関係の処理を改善
7071
* 2024-01-25 version 3.2.0
7172
- ファイル入出力関係の処理を改善

0 commit comments

Comments
 (0)