Skip to content

Commit b2137d4

Browse files
committed
Merge: v2.0.0-beta2 リリース
2 parents c3b6437 + fe43059 commit b2137d4

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

changes.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Knowbug 変更履歴
22

3+
## 2019/11/13
4+
5+
- v2.0.0-beta2 リリース
6+
- ソースファイルの探索処理を改善しました。
7+
- 特に、カレントディレクトリにある hsptmp の中身を実行中のスクリプトとみなすようになりました。
8+
- コールスタックのノードが始めから開いた状態になりました。
9+
- HSP 3.6 から 64 ビット版 HSP ランタイムが UTF-8 エンコーディングを採用することに対応して、64ビット版 UTF-8 対応の knowbug を追加しました。
10+
- 使用するには、hsp3debug_64_hsp36.dll の名前を hsp3debug_64.dll に変更してください。
11+
312
## 2019/10/20
413

514
- v2.0.0 beta リリース

scripts/build-all.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ $knowbugConfigs = @(
1010
"-p:Configuration=Debug;Platform=x64",
1111
"-p:Configuration=Release;Platform=x86",
1212
"-p:Configuration=ReleaseUtf8;Platform=x86",
13-
"-p:Configuration=Release;Platform=x64"
13+
"-p:Configuration=Release;Platform=x64",
14+
"-p:Configuration=ReleaseUtf8;Platform=x64"
1415
)
1516

1617
$msBuild = $env:KNOWBUG_MSBUILD

scripts/pack.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ $inclusions = @(
2424
@("$package/knowbug_install.exe", "$pwd/src/knowbug_install/knowbug_install.exe"),
2525
@("$package/hsp3debug.dll", "$pwd/src/Win32/Release/hsp3debug.dll"),
2626
@("$package/hsp3debug_u8.dll", "$pwd/src/Win32/ReleaseUtf8/hsp3debug_u8.dll"),
27-
@("$package/hsp3debug_64.dll", "$pwd/src/x64/Release/hsp3debug_64.dll")
27+
@("$package/hsp3debug_64.dll", "$pwd/src/x64/Release/hsp3debug_64.dll"),
28+
@("$package/hsp3debug_64_hsp36.dll", "$pwd/src/x64/ReleaseUtf8/hsp3debug_64.dll")
2829
)
2930

3031
if (test-path "$package.zip") {

src/knowbug_dll/knowbug_view.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#endif
3030

3131
#define KNOWBUG_TITLE TEXT("Knowbug")
32-
#define KNOWBUG_VERSION TEXT("2.0.0 beta") KNOWBUG_ENCODING_SUFFIX KNOWBUG_CPU_SUFFIX
32+
#define KNOWBUG_VERSION TEXT("v2.0.0-beta2") KNOWBUG_ENCODING_SUFFIX KNOWBUG_CPU_SUFFIX
3333

3434
static auto const KNOWBUG_MAIN_WINDOW_TITLE = KNOWBUG_TITLE TEXT(" ") KNOWBUG_VERSION;
3535
static auto const KNOWBUG_VIEW_WINDOW_TITLE = TEXT("Knowbug View");

0 commit comments

Comments
 (0)