Skip to content

Commit

Permalink
fix to use system temp as default value
Browse files Browse the repository at this point in the history
  • Loading branch information
clown committed Mar 26, 2024
1 parent ddaad28 commit 67e8883
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Applications/Ice/Core/Sources/Settings/SettingValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public bool AlphaFS
[DataMember]
public string Temp
{
get => Get(() => string.Empty);
get => Get(System.IO.Path.GetTempPath);
set => Set(value);
}

Expand Down
3 changes: 2 additions & 1 deletion Applications/Ice/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,10 @@ CubeICE は、以下のライブラリを利用しています。

## バージョン履歴

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

0 comments on commit 67e8883

Please sign in to comment.