Skip to content

Commit

Permalink
v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
karoterra committed Dec 11, 2022
1 parent 07f0065 commit b225d0f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## 0.3.1 - 2022-12-11
- プロジェクトファイルを開いたときにAviUtlが落ちることがある問題を修正([07f0065](https://github.com/karoterra/aviutl_WaveformPreview/commit/663cb4d5098a1eb9684a1338370703d6e6a1aff6))

## 0.3.0 - 2021-09-21
- プレビュー再生時に再生位置を示すカーソルを表示
- これに伴いプラグインのメニューを`表示`から`設定`に変更
Expand Down
8 changes: 4 additions & 4 deletions CacheManager/CacheManager.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,3,0,0
PRODUCTVERSION 0,3,0,0
FILEVERSION 0,3,1,0
PRODUCTVERSION 0,3,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -68,12 +68,12 @@ BEGIN
BLOCK "041104b0"
BEGIN
VALUE "FileDescription", "AviUtl 波形プレビュー プラグイン用キャッシュマネージャー"
VALUE "FileVersion", "0.3.0.0"
VALUE "FileVersion", "0.3.1.0"
VALUE "InternalName", "WaveformPreview.exe"
VALUE "LegalCopyright", "Copyright (C) 2021 karoterra"
VALUE "OriginalFilename", "WaveformPreview.exe"
VALUE "ProductName", "波形プレビュープラグイン"
VALUE "ProductVersion", "0.3.0.0"
VALUE "ProductVersion", "0.3.1.0"
END
END
BLOCK "VarFileInfo"
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@

## 導入方法

0. Microsoft Visual C++ 2019 再頒布可能パッケージ (x86) をインストールしてください。
- インストール済みのプログラムに「Microsoft Visual C++ 2015-2022 Redistributable (x86)」があれば大丈夫です。
1. [Releases](https://github.com/karoterra/aviutl_WaveformPreview/releases/)
1. Microsoft Visual C++ 再頒布可能パッケージ (x86) をインストールしてください。
- Visual Studio 2022 を含むものがインストールされていれば大丈夫です。
- [サポートされている最新の Visual C++ 再頒布可能パッケージのダウンロード | Microsoft Learn](https://learn.microsoft.com/ja-jp/cpp/windows/latest-supported-vc-redist?view=msvc-170)
2. [Releases](https://github.com/karoterra/aviutl_WaveformPreview/releases/)
から最新版のZIPファイルをダウンロードしてください。
2. ZIPファイルを展開し、 `aviutl.exe` と同じ場所、または `aviutl.exe` と同じ場所にある
3. ZIPファイルを展開し、 `aviutl.exe` と同じ場所、または `aviutl.exe` と同じ場所にある
`plugins` フォルダに `WaveformPreview.auf``WaveformPreview.exe` をコピーしてください。

## 使い方
Expand Down
8 changes: 4 additions & 4 deletions WaveformPreview/WaveformPreview.rc
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,3,0,0
PRODUCTVERSION 0,3,0,0
FILEVERSION 0,3,1,0
PRODUCTVERSION 0,3,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -314,12 +314,12 @@ BEGIN
BLOCK "041104b0"
BEGIN
VALUE "FileDescription", "AviUtl 波形プレビュー プラグイン"
VALUE "FileVersion", "0.3.0.0"
VALUE "FileVersion", "0.3.1.0"
VALUE "InternalName", "WaveformPreview.auf"
VALUE "LegalCopyright", "Copyright (C) 2021 karoterra"
VALUE "OriginalFilename", "WaveformPreview.auf"
VALUE "ProductName", "波形プレビュープラグイン"
VALUE "ProductVersion", "0.3.0.0"
VALUE "ProductVersion", "0.3.1.0"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion WaveformPreview/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ static FILTER_DLL filter = {
func_WndProc,
nullptr, nullptr,
nullptr, 0,
_T("波形プレビュー v0.3.0 by karoterra"),
_T("波形プレビュー v0.3.1 by karoterra"),
nullptr,
nullptr,
};
Expand Down

0 comments on commit b225d0f

Please sign in to comment.