Skip to content

Commit cf5d653

Browse files
committed
自動アップデートの設定ファイルの保存場所を修正した
1 parent 2938bfe commit cf5d653

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

ReleaseNote.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<item>
3-
<version>1.0.4.0</version>
4-
<url>https://github.com/anoyetta/CeVIOAIProxy/releases/download/v1.0.4.0/CeVIOAIProxy.exe</url>
5-
<changelog>https://github.com/anoyetta/CeVIOAIProxy/releases/tag/v1.0.4.0</changelog>
3+
<version>1.0.4.1</version>
4+
<url>https://github.com/anoyetta/CeVIOAIProxy/releases/download/v1.0.4.1/CeVIOAIProxy.exe</url>
5+
<changelog>https://github.com/anoyetta/CeVIOAIProxy/releases/tag/v1.0.4.1</changelog>
66
<mandatory>true</mandatory>
77
</item>

source/CeVIOAIProxy/App.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ await Task.Run(() =>
110110
private void RunAutoUpdater()
111111
{
112112
var updaterJson = Path.Combine(
113-
AppContext.BaseDirectory,
113+
Config.AppData,
114114
"CeVIOAIProxy.AutoUpdater.json");
115115

116116
#if DEBUG

source/CeVIOAIProxy/CeVIOAIProxy.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@
1111
<AssemblyOriginatorKeyFile>CeVIOAIProxy.pfx</AssemblyOriginatorKeyFile>
1212
<Authors>anoyetta</Authors>
1313
<Copyright>(c) 2021 anoyetta</Copyright>
14-
<AssemblyVersion>1.0.4.0</AssemblyVersion>
14+
<AssemblyVersion>1.0.4.1</AssemblyVersion>
1515
<PackageIcon>share.ico</PackageIcon>
1616
<PackageIconUrl />
1717
<PackageProjectUrl>https://github.com/anoyetta/CeVIOAIProxy</PackageProjectUrl>
1818
<RepositoryUrl>https://github.com/anoyetta/CeVIOAIProxy.git</RepositoryUrl>
1919
<RepositoryType>GitHub</RepositoryType>
2020
<Version>1.0.4</Version>
2121
<StartupObject>CeVIOAIProxy.App</StartupObject>
22+
<FileVersion>1.0.4.1</FileVersion>
2223
</PropertyGroup>
2324

2425
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

source/CeVIOAIProxy/Config.cs

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ public Config()
3030
};
3131
}
3232

33+
[JsonIgnore]
3334
public static readonly string AppData = Path.Combine(
3435
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
3536
"anoyetta",

0 commit comments

Comments
 (0)