Skip to content

Commit

Permalink
v1.02
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma-axis committed Feb 28, 2024
1 parent 40f7ebb commit b3b11dd
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: |
mkdir pack
copy ${{ matrix.configuration }}/*.auf pack
copy assets/*.ini pack
xcopy assets pack /e /i
copy *.md pack
copy LICENSE pack
# pick up and add any files you may need.
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Prepare release notes
id: release-notes
run: |
echo "name=${{ github.ref_name }} ($(date +'%Y-%m-%d'))" >> $GITHUB_OUTPUT
echo "name=${{ github.ref_name }} ($(TZ='Asia/Tokyo' date +'%Y-%m-%d'))" >> $GITHUB_OUTPUT
echo "### 更新内容" >> ReleaseNotes.txt
phase=0
IFS=$'\n'
Expand Down
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

/memorandum

# User-specific files
*.rsuser
*.suo
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,17 +138,21 @@ AviUtlのメニューから「ファイル」→「環境設定」→「ショ

## 改版履歴

- v1.01 (2024-01-11)
- **v1.02** (2024-02-28)

- 初期化周りを少し改善.

- **v1.01** (2024-01-11)

- タイムラインスクロールバーのハンドル取得方法を変更.

- 冗長な null チェックを削除.

- v1.00 (2024-01-04)
- **v1.00** (2024-01-04)

- 初版.

# ライセンス
## ライセンス

このプログラムの利用・改変・再頒布等に関しては MIT ライセンスに従うものとします.

Expand Down
16 changes: 15 additions & 1 deletion tl_walkaround.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -699,11 +699,25 @@ BOOL func_WndProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam, EditHan
}


////////////////////////////////
// Entry point.
////////////////////////////////
BOOL WINAPI DllMain(HINSTANCE hinst, DWORD fdwReason, LPVOID lpvReserved)
{
switch (fdwReason) {
case DLL_PROCESS_ATTACH:
::DisableThreadLibraryCalls(hinst);
break;
}
return TRUE;
}


////////////////////////////////
// 看板.
////////////////////////////////
#define PLUGIN_NAME "TLショトカ移動"
#define PLUGIN_VERSION "v1.01"
#define PLUGIN_VERSION "v1.02"
#define PLUGIN_AUTHOR "sigma-axis"
#define PLUGIN_INFO_FMT(name, ver, author) (name##" "##ver##" by "##author)
#define PLUGIN_INFO PLUGIN_INFO_FMT(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR)
Expand Down

0 comments on commit b3b11dd

Please sign in to comment.