Skip to content

Commit 1563018

Browse files
committed
v1.0.3
1 parent eb57e1f commit 1563018

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
steps:
1616
- name: Checkout code
1717
uses: actions/checkout@v4
18+
with:
19+
submodules: recursive
20+
fetch-depth: 0
1821

1922
- name: Setup .NET
2023
uses: actions/setup-dotnet@v4
@@ -42,6 +45,9 @@ jobs:
4245
steps:
4346
- name: Checkout code
4447
uses: actions/checkout@v4
48+
with:
49+
submodules: recursive
50+
fetch-depth: 0
4551

4652
- name: Download Artifacts
4753
uses: actions/download-artifact@v4

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v1.0.3
2+
- 機能改善: 内部処理の改善を行いました。
3+
- バグ修正: 環境によりgrepコマンドが正しく動作しない問題を修正しました。
4+
- バグ修正: 設定ウィンドウのOKボタン押下時にウィンドウが閉じない問題を修正しました。
5+
16
## v1.0.2
27
- リポジトリURL更新
38
- 設定ファイルのJSONが欠損している場合、デフォルト値が利用されるよう修正

RemoteLogViewer/Package.appxmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22

33
<Package
44
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
@@ -10,7 +10,7 @@
1010
<Identity
1111
Name="xmi.RemoteLogViewer"
1212
Publisher="CN=E31B20E5-2E2D-4987-A053-01449B6DA81A"
13-
Version="1.0.2.0" />
13+
Version="1.0.3.0" />
1414

1515
<mp:PhoneIdentity PhoneProductId="548898cc-2522-48ed-8bb3-2426a53663e6" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
1616

RemoteLogViewer/ViewModels/Info/AboutPageViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public string AppName {
1212
} = "RemoteLogViewer";
1313
public string Version {
1414
get;
15-
} = "1.0.2";
15+
} = "1.0.3";
1616
public string Description {
1717
get;
1818
} = "A Windows application for viewing remote log files over SSH.";

0 commit comments

Comments
 (0)