Skip to content

Commit

Permalink
Merge: v2.0.0-beta2 リリース
Browse files Browse the repository at this point in the history
  • Loading branch information
vain0x committed Nov 13, 2019
2 parents c3b6437 + fe43059 commit b2137d4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
9 changes: 9 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Knowbug 変更履歴

## 2019/11/13

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

## 2019/10/20

- v2.0.0 beta リリース
Expand Down
3 changes: 2 additions & 1 deletion scripts/build-all.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ $knowbugConfigs = @(
"-p:Configuration=Debug;Platform=x64",
"-p:Configuration=Release;Platform=x86",
"-p:Configuration=ReleaseUtf8;Platform=x86",
"-p:Configuration=Release;Platform=x64"
"-p:Configuration=Release;Platform=x64",
"-p:Configuration=ReleaseUtf8;Platform=x64"
)

$msBuild = $env:KNOWBUG_MSBUILD
Expand Down
3 changes: 2 additions & 1 deletion scripts/pack.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ $inclusions = @(
@("$package/knowbug_install.exe", "$pwd/src/knowbug_install/knowbug_install.exe"),
@("$package/hsp3debug.dll", "$pwd/src/Win32/Release/hsp3debug.dll"),
@("$package/hsp3debug_u8.dll", "$pwd/src/Win32/ReleaseUtf8/hsp3debug_u8.dll"),
@("$package/hsp3debug_64.dll", "$pwd/src/x64/Release/hsp3debug_64.dll")
@("$package/hsp3debug_64.dll", "$pwd/src/x64/Release/hsp3debug_64.dll"),
@("$package/hsp3debug_64_hsp36.dll", "$pwd/src/x64/ReleaseUtf8/hsp3debug_64.dll")
)

if (test-path "$package.zip") {
Expand Down
2 changes: 1 addition & 1 deletion src/knowbug_dll/knowbug_view.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#endif

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

static auto const KNOWBUG_MAIN_WINDOW_TITLE = KNOWBUG_TITLE TEXT(" ") KNOWBUG_VERSION;
static auto const KNOWBUG_VIEW_WINDOW_TITLE = TEXT("Knowbug View");
Expand Down

0 comments on commit b2137d4

Please sign in to comment.