Skip to content

Commit

Permalink
Update download links
Browse files Browse the repository at this point in the history
  • Loading branch information
ryukau committed Dec 28, 2023
1 parent f74a287 commit 0c57aa0
Show file tree
Hide file tree
Showing 99 changed files with 1,451 additions and 653 deletions.
26 changes: 13 additions & 13 deletions docs/dev_note/vst3_dev.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="dcterms.date" content="2023-12-02" />
<meta name="dcterms.date" content="2023-12-28" />
<title>vst3_dev</title>
<style>
code { white-space: pre-wrap; }
Expand All @@ -15,7 +15,7 @@
</style>
<style>
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span { line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
Expand Down Expand Up @@ -260,9 +260,9 @@

<body>
<header>
<p><a href="..\index.html">Back to Index</a></p>
<p><a href="../index.html">Back to Index</a></p>
<p>
Update: 2023-12-02
Update: 2023-12-28
</p>
<details>
<summary translate="yes">Table of Contents</summary>
Expand Down Expand Up @@ -690,7 +690,7 @@ <h3 id="windows-10-1">Windows 10</h3>
<p>ビルドのコンフィグを変更するときは <code>cmake-gui</code>
が使えます。</p>
<div class="sourceCode" id="cb9"><pre
class="sourceCode powershell"><code class="sourceCode powershell"><span id="cb9-1"><a href="#cb9-1" aria-hidden="true" tabindex="-1"></a>cmake<span class="op">-</span>gui <span class="co"># build ディレクトリ内で実行する。</span></span></code></pre></div>
class="sourceCode powershell"><code class="sourceCode powershell"><span id="cb9-1"><a href="#cb9-1" aria-hidden="true" tabindex="-1"></a>cmake-gui <span class="co"># build ディレクトリ内で実行する。</span></span></code></pre></div>
<h4 id="リリースビルド">リリースビルド</h4>
<p><code>--config Release</code> を追加します。</p>
<div class="sourceCode" id="cb10"><pre
Expand Down Expand Up @@ -734,9 +734,9 @@ <h4 id="デプロイ">デプロイ</h4>
class="sourceCode powershell"><code class="sourceCode powershell"><span id="cb12-1"><a href="#cb12-1" aria-hidden="true" tabindex="-1"></a>code <span class="va">$PROFILE</span></span></code></pre></div>
<p>次のコードを <code>$PROFILE</code> に追加します。</p>
<div class="sourceCode" id="cb13"><pre
class="sourceCode powershell"><code class="sourceCode powershell"><span id="cb13-1"><a href="#cb13-1" aria-hidden="true" tabindex="-1"></a><span class="kw">function</span> cpvst<span class="op">(</span><span class="va">$name</span><span class="op">,</span> <span class="op">[</span><span class="kw">switch</span><span class="op">]</span> <span class="va">$release</span><span class="op">)</span> <span class="op">{</span></span>
<span id="cb13-2"><a href="#cb13-2" aria-hidden="true" tabindex="-1"></a> <span class="va">$target_dir</span> <span class="op">=</span> <span class="kw">if</span> <span class="op">(</span><span class="va">$release</span><span class="op">)</span> <span class="op">{</span> <span class="st">&quot;Release&quot;</span> <span class="op">}</span> <span class="kw">else</span> <span class="op">{</span> <span class="st">&quot;Debug&quot;</span> <span class="op">}</span></span>
<span id="cb13-3"><a href="#cb13-3" aria-hidden="true" tabindex="-1"></a> <span class="va">$vst_path</span> <span class="op">=</span> <span class="st">&quot;.\VST3\$target_dir\$name.vst3&quot;</span></span>
class="sourceCode powershell"><code class="sourceCode powershell"><span id="cb13-1"><a href="#cb13-1" aria-hidden="true" tabindex="-1"></a><span class="kw">function</span> cpvst<span class="op">(</span><span class="va">$name</span><span class="op">,</span> <span class="op">[</span><span class="dt">switch</span><span class="op">]</span> <span class="va">$release</span><span class="op">)</span> <span class="op">{</span></span>
<span id="cb13-2"><a href="#cb13-2" aria-hidden="true" tabindex="-1"></a> <span class="va">$target_dir</span> <span class="op">=</span> <span class="cf">if</span> <span class="op">(</span><span class="va">$release</span><span class="op">)</span> <span class="op">{</span> <span class="st">&quot;Release&quot;</span> <span class="op">}</span> <span class="cf">else</span> <span class="op">{</span> <span class="st">&quot;Debug&quot;</span> <span class="op">}</span></span>
<span id="cb13-3"><a href="#cb13-3" aria-hidden="true" tabindex="-1"></a> <span class="va">$vst_path</span> <span class="op">=</span> <span class="st">&quot;.\VST3\</span><span class="va">$target_dir</span><span class="st">\</span><span class="va">$name</span><span class="st">.vst3&quot;</span></span>
<span id="cb13-4"><a href="#cb13-4" aria-hidden="true" tabindex="-1"></a> <span class="fu">Copy-Item</span> <span class="va">$vst_path</span> <span class="op">-</span>Destination <span class="st">&quot;C:\Program Files\Common Files\VST3&quot;</span> <span class="op">-</span>Force <span class="op">-</span>Recurse</span>
<span id="cb13-5"><a href="#cb13-5" aria-hidden="true" tabindex="-1"></a><span class="op">}</span></span></code></pre></div>
<p><code>$PROFILE</code> を読み込んで更新します。 bash の
Expand Down Expand Up @@ -1389,7 +1389,7 @@ <h4 id="カスタムビューの追加">カスタムビューの追加</h4>
<span id="cb36-83"><a href="#cb36-83" aria-hidden="true" tabindex="-1"></a> <span class="cf">return</span> <span class="kw">true</span><span class="op">;</span></span>
<span id="cb36-84"><a href="#cb36-84" aria-hidden="true" tabindex="-1"></a> <span class="op">}</span></span>
<span id="cb36-85"><a href="#cb36-85" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb36-86"><a href="#cb36-86" aria-hidden="true" tabindex="-1"></a> IViewCreator<span class="op">::</span>AttrType getAttributeType<span class="op">(</span><span class="at">const</span> <span class="bu">std::</span>string<span class="op"> &amp;</span>attributeName<span class="op">)</span> <span class="at">const</span></span>
<span id="cb36-86"><a href="#cb36-86" aria-hidden="true" tabindex="-1"></a> IViewCreator<span class="op">::</span>AttrType getAttributeType<span class="op">(</span><span class="at">const</span> <span class="bu">std::</span>string <span class="op">&amp;</span>attributeName<span class="op">)</span> <span class="at">const</span></span>
<span id="cb36-87"><a href="#cb36-87" aria-hidden="true" tabindex="-1"></a> <span class="op">{</span></span>
<span id="cb36-88"><a href="#cb36-88" aria-hidden="true" tabindex="-1"></a> <span class="co">// uidesc の属性を C++ で受け取るときの型を設定。</span></span>
<span id="cb36-89"><a href="#cb36-89" aria-hidden="true" tabindex="-1"></a></span>
Expand All @@ -1404,8 +1404,8 @@ <h4 id="カスタムビューの追加">カスタムビューの追加</h4>
<span id="cb36-98"><a href="#cb36-98" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb36-99"><a href="#cb36-99" aria-hidden="true" tabindex="-1"></a> <span class="dt">bool</span> getAttributeValue<span class="op">(</span></span>
<span id="cb36-100"><a href="#cb36-100" aria-hidden="true" tabindex="-1"></a> CView <span class="op">*</span>view<span class="op">,</span></span>
<span id="cb36-101"><a href="#cb36-101" aria-hidden="true" tabindex="-1"></a> <span class="at">const</span> <span class="bu">std::</span>string<span class="op"> &amp;</span>attributeName<span class="op">,</span></span>
<span id="cb36-102"><a href="#cb36-102" aria-hidden="true" tabindex="-1"></a> <span class="bu">std::</span>string<span class="op"> &amp;</span>stringValue<span class="op">,</span></span>
<span id="cb36-101"><a href="#cb36-101" aria-hidden="true" tabindex="-1"></a> <span class="at">const</span> <span class="bu">std::</span>string <span class="op">&amp;</span>attributeName<span class="op">,</span></span>
<span id="cb36-102"><a href="#cb36-102" aria-hidden="true" tabindex="-1"></a> <span class="bu">std::</span>string <span class="op">&amp;</span>stringValue<span class="op">,</span></span>
<span id="cb36-103"><a href="#cb36-103" aria-hidden="true" tabindex="-1"></a> <span class="at">const</span> IUIDescription <span class="op">*</span>desc<span class="op">)</span> <span class="at">const</span></span>
<span id="cb36-104"><a href="#cb36-104" aria-hidden="true" tabindex="-1"></a> <span class="op">{</span></span>
<span id="cb36-105"><a href="#cb36-105" aria-hidden="true" tabindex="-1"></a> <span class="co">// UI エディタで設定された属性を uidesc に書き込む文字列に変換。</span></span>
Expand All @@ -1424,7 +1424,7 @@ <h4 id="カスタムビューの追加">カスタムビューの追加</h4>
<span id="cb36-118"><a href="#cb36-118" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb36-119"><a href="#cb36-119" aria-hidden="true" tabindex="-1"></a><span class="kw">protected</span><span class="op">:</span></span>
<span id="cb36-120"><a href="#cb36-120" aria-hidden="true" tabindex="-1"></a> <span class="at">static</span> <span class="dt">bool</span></span>
<span id="cb36-121"><a href="#cb36-121" aria-hidden="true" tabindex="-1"></a> getViewAttributeString<span class="op">(</span>CView <span class="op">*</span>view<span class="op">,</span> <span class="at">const</span> CViewAttributeID attrID<span class="op">,</span> <span class="bu">std::</span>string<span class="op"> &amp;</span>value<span class="op">)</span></span>
<span id="cb36-121"><a href="#cb36-121" aria-hidden="true" tabindex="-1"></a> getViewAttributeString<span class="op">(</span>CView <span class="op">*</span>view<span class="op">,</span> <span class="at">const</span> CViewAttributeID attrID<span class="op">,</span> <span class="bu">std::</span>string <span class="op">&amp;</span>value<span class="op">)</span></span>
<span id="cb36-122"><a href="#cb36-122" aria-hidden="true" tabindex="-1"></a> <span class="op">{</span></span>
<span id="cb36-123"><a href="#cb36-123" aria-hidden="true" tabindex="-1"></a> <span class="dt">uint32_t</span> attrSize <span class="op">=</span> <span class="dv">0</span><span class="op">;</span></span>
<span id="cb36-124"><a href="#cb36-124" aria-hidden="true" tabindex="-1"></a> <span class="cf">if</span> <span class="op">(</span>view<span class="op">-&gt;</span>getAttributeSize<span class="op">(</span>attrID<span class="op">,</span> attrSize<span class="op">))</span> <span class="op">{</span></span>
Expand Down Expand Up @@ -2392,7 +2392,7 @@ <h4 id="linux-で-vstgui-を利用">Linux で VSTGUI を利用</h4>
に実装例があります。</p>

<footer>
<p><a href="..\index.html">Back to Index</a></p>
<p><a href="../index.html">Back to Index</a></p>
</footer>
</body>

Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="dcterms.date" content="2023-12-02" />
<meta name="dcterms.date" content="2023-12-28" />
<title>index</title>
<style>
code { white-space: pre-wrap; }
Expand Down Expand Up @@ -196,7 +196,7 @@
<body>
<header>
<p>
Update: 2023-12-02
Update: 2023-12-28
</p>
<details>
<summary translate="yes">Table of Contents</summary>
Expand Down
11 changes: 10 additions & 1 deletion docs/manual/AccumulativeRingMod/AccumulativeRingMod.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
{
"AccumulativeRingMod": {
"latest_version": "0.1.2",
"latest_version": "0.1.3",
"urls": {
"plugin_url": [
"https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.61.0/AccumulativeRingMod_0.1.3.zip",
"https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.59.0/AccumulativeRingMod_0.1.2.zip",
"https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.55.0/AccumulativeRingMod_0.1.1.zip",
"https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.54.0/AccumulativeRingMod_0.1.0.zip"
],
"preset_url": "https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.54.2/AccumulativeRingModPresets.zip"
},
"changelog": {
"0.1.3": {
"en": [
"Fixed GUI on Linux."
],
"ja": [
"Linux での GUI を修正。"
]
},
"0.1.2": {
"en": [
"Changed to include presets in plugin zip package.",
Expand Down
25 changes: 16 additions & 9 deletions docs/manual/AccumulativeRingMod/AccumulativeRingMod_en.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="dcterms.date" content="2023-12-02" />
<meta name="dcterms.date" content="2023-12-28" />
<title>AccumulativeRingMod_en</title>
<style>
code { white-space: pre-wrap; }
Expand All @@ -15,7 +15,7 @@
</style>
<style>
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span { line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
Expand Down Expand Up @@ -260,9 +260,9 @@

<body>
<header>
<p><a href="..\..\index.html">Back to Index</a></p>
<p><a href="../../index.html">Back to Index</a></p>
<p>
Update: 2023-12-02
Update: 2023-12-28
</p>
<details>
<summary translate="yes">Table of Contents</summary>
Expand Down Expand Up @@ -333,16 +333,16 @@ <h1 id="accumulativeringmod">AccumulativeRingMod</h1>
like a sine wave, it sounds similar to FM.</p>
<ul>
<li><a
href="https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.59.0/AccumulativeRingMod_0.1.2.zip">Download
AccumulativeRingMod 0.1.2 <code>full</code> - VST 3 (github.com)</a>
href="https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.61.0/AccumulativeRingMod_0.1.3.zip">Download
AccumulativeRingMod 0.1.3 <code>full</code> - VST 3 (github.com)</a>
<img
src="img/VST_Compatible_Logo_Steinberg_negative.svg"
alt="VST compatible logo."
width="30px"
style="display: inline-block; vertical-align: middle;"></li>
<li><a
href="https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.59.0/AccumulativeRingMod_0.1.2_macOS.zip">Download
AccumulativeRingMod 0.1.2 <code>macOS</code> - VST 3 (github.com)</a>
href="https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.61.0/AccumulativeRingMod_0.1.3_macOS.zip">Download
AccumulativeRingMod 0.1.3 <code>macOS</code> - VST 3 (github.com)</a>
<img
src="img/VST_Compatible_Logo_Steinberg_negative.svg"
alt="VST compatible logo."
Expand Down Expand Up @@ -778,6 +778,10 @@ <h3 id="main-input-side-chain">Main Input, Side Chain</h3>
</dl>
<h2 id="change-log">Change Log</h2>
<ul>
<li>0.1.3
<ul>
<li>Fixed GUI on Linux.</li>
</ul></li>
<li>0.1.2
<ul>
<li>Changed to include presets in plugin zip package.</li>
Expand All @@ -798,6 +802,9 @@ <h2 id="change-log">Change Log</h2>
<h2 id="old-versions">Old Versions</h2>
<ul>
<li><a
href="https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.59.0/AccumulativeRingMod_0.1.2.zip">AccumulativeRingMod
0.1.2 - VST 3 (github.com)</a></li>
<li><a
href="https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.55.0/AccumulativeRingMod_0.1.1.zip">AccumulativeRingMod
0.1.1 - VST 3 (github.com)</a></li>
<li><a
Expand All @@ -818,7 +825,7 @@ <h3 id="about-vst">About VST</h3>
in Europe and other countries.</p>

<footer>
<p><a href="..\..\index.html">Back to Index</a></p>
<p><a href="../../index.html">Back to Index</a></p>
</footer>
</body>

Expand Down
25 changes: 16 additions & 9 deletions docs/manual/AccumulativeRingMod/AccumulativeRingMod_ja.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="dcterms.date" content="2023-12-02" />
<meta name="dcterms.date" content="2023-12-28" />
<title>AccumulativeRingMod_ja</title>
<style>
code { white-space: pre-wrap; }
Expand All @@ -15,7 +15,7 @@
</style>
<style>
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span { line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
Expand Down Expand Up @@ -260,9 +260,9 @@

<body>
<header>
<p><a href="..\..\index.html">Back to Index</a></p>
<p><a href="../../index.html">Back to Index</a></p>
<p>
Update: 2023-12-02
Update: 2023-12-28
</p>
<details>
<summary translate="yes">Table of Contents</summary>
Expand Down Expand Up @@ -332,15 +332,15 @@ <h1 id="accumulativeringmod">AccumulativeRingMod</h1>
FM のような音がでます。</p>
<ul>
<li><a
href="https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.59.0/AccumulativeRingMod_0.1.2.zip">AccumulativeRingMod
0.1.2 <code>full</code> - VST 3 をダウンロード (github.com)</a> <img
href="https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.61.0/AccumulativeRingMod_0.1.3.zip">AccumulativeRingMod
0.1.3 <code>full</code> - VST 3 をダウンロード (github.com)</a> <img
src="img/VST_Compatible_Logo_Steinberg_negative.svg"
alt="VST compatible logo."
width="30px"
style="display: inline-block; vertical-align: middle;"></li>
<li><a
href="https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.59.0/AccumulativeRingMod_0.1.2_macOS.zip">AccumulativeRingMod
0.1.2 <code>macOS</code> - VST 3 をダウンロード (github.com)</a> <img
href="https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.61.0/AccumulativeRingMod_0.1.3_macOS.zip">AccumulativeRingMod
0.1.3 <code>macOS</code> - VST 3 をダウンロード (github.com)</a> <img
src="img/VST_Compatible_Logo_Steinberg_negative.svg"
alt="VST compatible logo."
width="30px"
Expand Down Expand Up @@ -770,6 +770,10 @@ <h3 id="main-input-side-chain">Main Input, Side Chain</h3>
</dl>
<h2 id="チェンジログ">チェンジログ</h2>
<ul>
<li>0.1.3
<ul>
<li>Linux での GUI を修正。</li>
</ul></li>
<li>0.1.2
<ul>
<li>Zip パッケージにプリセットを同梱するよう変更。</li>
Expand All @@ -789,6 +793,9 @@ <h2 id="チェンジログ">チェンジログ</h2>
<h2 id="旧バージョン">旧バージョン</h2>
<ul>
<li><a
href="https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.59.0/AccumulativeRingMod_0.1.2.zip">AccumulativeRingMod
0.1.2 - VST 3 (github.com)</a></li>
<li><a
href="https://github.com/ryukau/VSTPlugins/releases/download/UhhyouPlugins0.55.0/AccumulativeRingMod_0.1.1.zip">AccumulativeRingMod
0.1.1 - VST 3 (github.com)</a></li>
<li><a
Expand All @@ -809,7 +816,7 @@ <h3 id="vst-について">VST® について</h3>
in Europe and other countries.</p>

<footer>
<p><a href="..\..\index.html">Back to Index</a></p>
<p><a href="../../index.html">Back to Index</a></p>
</footer>
</body>

Expand Down
Loading

0 comments on commit 0c57aa0

Please sign in to comment.