From f1794b65121f56d2f3d4ed0f81a17abb4006c9f0 Mon Sep 17 00:00:00 2001 From: novonotes-dev Date: Sun, 19 Apr 2026 15:39:25 +0900 Subject: [PATCH 1/3] Add compatibility report CTA to README --- README.md | 8 ++++++++ README_JA.md | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/README.md b/README.md index 4b884dd..8816ff4 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,14 @@ enabling plugins to schedule and launch tasks on the main thread. - **Cross-thread communication**: Safe message-passing mechanism - **DLL / audio plugin support**: Handles use cases where the library runs inside a DLL linked into a third-party application +## Give It a Spin? + +`novonotes_run_loop` is used in [wxp-gain-example](https://github.com/novonotes/wrac-plugin-template), which ships with a simple Gain plugin built on the WRAC stack. +Try loading it in your DAW and let us know how it works in practice. + +Even a quick note like **"Works on Logic Pro 10.7"** is helpful for the community: +👉 [DAW Compatibility Reports](https://github.com/novonotes/wrac-plugin-template/discussions/6) + ## Basic Usage ### Initialization diff --git a/README_JA.md b/README_JA.md index 7e4d40d..c52e09a 100644 --- a/README_JA.md +++ b/README_JA.md @@ -16,6 +16,14 @@ - **スレッド間通信**: 安全なメッセージパッシング機構 - **DLL/オーディオプラグイン対応**: 他社アプリケーションにリンクされた DLL で動作するユースケースをサポート +## 動作報告を募集中! + +`novonotes_run_loop` を使った実例として、WRAC スタック上に構築されたシンプルな Gain プラグイン入りの [wxp-gain-example](https://github.com/novonotes/wrac-plugin-template) があります。 +ぜひお手元の DAW で動かして、実際の動作状況を教えてください。 + +「Logic Pro 10.7 で動きました!」のような短い報告でも、コミュニティにとって十分役立ちます: +👉 [DAW互換性報告](https://github.com/novonotes/wrac-plugin-template/discussions/6) + ## 基本的な使い方 ### 初期化 From 4b194a63201c2bb3547ca44c9836e30d736cf104 Mon Sep 17 00:00:00 2001 From: novonotes-dev Date: Sun, 19 Apr 2026 15:42:46 +0900 Subject: [PATCH 2/3] Remove unrelated compatibility CTA --- README.md | 8 -------- README_JA.md | 8 -------- 2 files changed, 16 deletions(-) diff --git a/README.md b/README.md index 8816ff4..4b884dd 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,6 @@ enabling plugins to schedule and launch tasks on the main thread. - **Cross-thread communication**: Safe message-passing mechanism - **DLL / audio plugin support**: Handles use cases where the library runs inside a DLL linked into a third-party application -## Give It a Spin? - -`novonotes_run_loop` is used in [wxp-gain-example](https://github.com/novonotes/wrac-plugin-template), which ships with a simple Gain plugin built on the WRAC stack. -Try loading it in your DAW and let us know how it works in practice. - -Even a quick note like **"Works on Logic Pro 10.7"** is helpful for the community: -👉 [DAW Compatibility Reports](https://github.com/novonotes/wrac-plugin-template/discussions/6) - ## Basic Usage ### Initialization diff --git a/README_JA.md b/README_JA.md index c52e09a..7e4d40d 100644 --- a/README_JA.md +++ b/README_JA.md @@ -16,14 +16,6 @@ - **スレッド間通信**: 安全なメッセージパッシング機構 - **DLL/オーディオプラグイン対応**: 他社アプリケーションにリンクされた DLL で動作するユースケースをサポート -## 動作報告を募集中! - -`novonotes_run_loop` を使った実例として、WRAC スタック上に構築されたシンプルな Gain プラグイン入りの [wxp-gain-example](https://github.com/novonotes/wrac-plugin-template) があります。 -ぜひお手元の DAW で動かして、実際の動作状況を教えてください。 - -「Logic Pro 10.7 で動きました!」のような短い報告でも、コミュニティにとって十分役立ちます: -👉 [DAW互換性報告](https://github.com/novonotes/wrac-plugin-template/discussions/6) - ## 基本的な使い方 ### 初期化 From 3000bb949fd6815ac6091586c7e6811692e38380 Mon Sep 17 00:00:00 2001 From: novonotes-dev Date: Sun, 19 Apr 2026 15:44:59 +0900 Subject: [PATCH 3/3] Use Japanese label for README_JA link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b884dd..c0ad06f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A platform-independent run loop interface for Rust. A fork of [irondash_run_loop](https://github.com/irondash/irondash/tree/main/run_loop) with enhanced safety and error handling for DLL environments. -> Japanese version: [README_JA.md](./README_JA.md) +> 日本語版: [README_JA.md](./README_JA.md) ## Purpose