Skip to content

Commit 49a9f70

Browse files
committed
Merge branch develop v1.4.9.4811-Stable
2 parents 5759d6f + d31c1ab commit 49a9f70

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CURRENT_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.4.8.4114-Stable
1+
v1.4.9.4811-Stable

RELEASE_NOTES.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,4 +549,14 @@
549549
* [Minor] sharlayan が正しく動作していないときでもそれなりに動作するような対応を搭載した
550550
</description>
551551
</note>
552+
553+
<note>
554+
<version>1.4.9.4811</version>
555+
<channel>Stable</channel>
556+
<timestamp>2020-02-26T11:26:11.7088270+09:00</timestamp>
557+
<uri>https://github.com/anoyetta/RINGS/releases/download/v1.4.9.4811-Stable/RINGS_v1_4_9_4811_Stable.zip</uri>
558+
<description>
559+
* [Minor] sharlayan のローカルキャッシュのクリアを修正した
560+
</description>
561+
</note>
552562
</release_notes>

source/RINGS/Controllers/SharlayanController.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using System.Diagnostics;
44
using System.IO;
55
using System.Linq;
6-
using System.Reflection;
76
using System.Threading;
87
using System.Threading.Tasks;
98
using aframe;
@@ -181,7 +180,7 @@ private void SubscribeFFXIVProcess()
181180

182181
private static void ClearLocalCaches()
183182
{
184-
var dir = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
183+
var dir = Directory.GetCurrentDirectory();
185184
foreach (var f in LocalCacheFiles)
186185
{
187186
var file = Path.Combine(dir, f);

source/RINGS/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
using System.Reflection;
22

3-
[assembly: AssemblyVersion("1.4.8.4114")]
3+
[assembly: AssemblyVersion("1.4.9.4811")]
44
[assembly: AssemblyConfiguration("Stable")]

0 commit comments

Comments
 (0)