Browse Source

Generated Docs --

gh-pages
nike4613 4 years ago
parent
commit
52133e1d8e
12 changed files with 46 additions and 46 deletions
  1. +1
    -1
      api/index.html
  2. +1
    -1
      articles/command-line.html
  3. +1
    -1
      articles/contributing.html
  4. +1
    -1
      articles/dev-resources/description.html
  5. +1
    -1
      articles/index.html
  6. +4
    -4
      articles/start-dev.html
  7. +1
    -1
      articles/start-user.html
  8. +1
    -1
      index.html
  9. +23
    -23
      index.json
  10. +10
    -10
      manifest.json
  11. +1
    -1
      other_api/config/schema.html
  12. +1
    -1
      other_api/index.html

+ 1
- 1
api/index.html View File

@ -83,7 +83,7 @@ Select a namespace and a class on the left to get started.</p>
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/b4c06fef082b8a10458bc874bfa67789ed9d2fb4/docs/api/index.md/#L1" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/7e229ce16d5d0b4bccc87ff99f7648866797ca78/docs/api/index.md/#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>


+ 1
- 1
articles/command-line.html View File

@ -183,7 +183,7 @@ avaliable. If there is, it will be downloaded and installed on the next run. Thi
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/b4c06fef082b8a10458bc874bfa67789ed9d2fb4/docs/articles/command-line.md/#L1" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/7e229ce16d5d0b4bccc87ff99f7648866797ca78/docs/articles/command-line.md/#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>


+ 1
- 1
articles/contributing.html View File

@ -117,7 +117,7 @@ should reference the copy in there. When building for Release, it just uses the
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/b4c06fef082b8a10458bc874bfa67789ed9d2fb4/docs/articles/contributing.md/#L1" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/7e229ce16d5d0b4bccc87ff99f7648866797ca78/docs/articles/contributing.md/#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>


+ 1
- 1
articles/dev-resources/description.html View File

@ -91,7 +91,7 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/b4c06fef082b8a10458bc874bfa67789ed9d2fb4/docs/articles/dev-resources/description.md/#L1" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/7e229ce16d5d0b4bccc87ff99f7648866797ca78/docs/articles/dev-resources/description.md/#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>


+ 1
- 1
articles/index.html View File

@ -94,7 +94,7 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/b4c06fef082b8a10458bc874bfa67789ed9d2fb4/docs/articles/index.md/#L1" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/7e229ce16d5d0b4bccc87ff99f7648866797ca78/docs/articles/index.md/#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>


+ 4
- 4
articles/start-dev.html View File

@ -244,7 +244,7 @@ that the file that will be loaded from will be <code>UserData/Demo Plugin.json</
applying attributes to the &lt;xref:IPA.Config.Config&gt; parameter, namely &lt;xref:IPA.Config.Config.NameAttribute&gt; to control the name, and
&lt;xref:IPA.Config.Config.PreferAttribute&gt; to control the type. If the type preferences aren&#39;t registered though, it will just fall back to JSON.</p>
<p>The config&#39;s behaviour can be found either later here, or in the remarks section of
&lt;xref:IPA.Config.Stores.GeneratedExtension.Generated``1(IPA.Config.Config,System.Boolean)&gt;.</p>
&lt;xref:IPA.Config.Stores.GeneratedStore.Generated``1(IPA.Config.Config,System.Boolean)&gt;.</p>
<p>At this point, your main plugin file should look something like this:</p>
<pre><code class="lang-cs" name="Plugin.cs">using System;
using IPA;
@ -459,7 +459,7 @@ namespace Demo
</code></pre><p>But to make it actually work, we add this outside the namespace declaration:</p>
<pre><code class="lang-cs" name="PluginConfig.cs#internals-visible">using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo(GeneratedExtension.AssemblyVisibilityTarget)]
[assembly: InternalsVisibleTo(GeneratedStore.AssemblyVisibilityTarget)]
</code></pre><p>And now our full file looks like this:</p>
<pre><code class="lang-cs" name="PluginConfig.cs#basic-complete">using System.Collections.Generic;
using System.Runtime.CompilerServices;
@ -467,7 +467,7 @@ using IPA.Config.Stores;
using IPA.Config.Stores.Attributes;
using IPA.Config.Stores.Converters;
[assembly: InternalsVisibleTo(GeneratedExtension.AssemblyVisibilityTarget)]
[assembly: InternalsVisibleTo(GeneratedStore.AssemblyVisibilityTarget)]
namespace Demo
{
@ -517,7 +517,7 @@ namespace Demo
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/b4c06fef082b8a10458bc874bfa67789ed9d2fb4/docs/articles/start-dev.md/#L1" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/7e229ce16d5d0b4bccc87ff99f7648866797ca78/docs/articles/start-dev.md/#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>


+ 1
- 1
articles/start-user.html View File

@ -161,7 +161,7 @@ the game directory, though your plugins will be moved to a different folder when
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/b4c06fef082b8a10458bc874bfa67789ed9d2fb4/docs/articles/start-user.md/#L1" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/7e229ce16d5d0b4bccc87ff99f7648866797ca78/docs/articles/start-user.md/#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>


+ 1
- 1
index.html View File

@ -101,7 +101,7 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/b4c06fef082b8a10458bc874bfa67789ed9d2fb4/docs/index.md/#L1" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/7e229ce16d5d0b4bccc87ff99f7648866797ca78/docs/index.md/#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>


+ 23
- 23
index.json
File diff suppressed because it is too large
View File


+ 10
- 10
manifest.json View File

@ -18,7 +18,7 @@
"output": {
".html": {
"relative_path": "api/index.html",
"hash": "j84yEyFCUeKTpwzSCkOGdQ=="
"hash": "XzptNXV6V6Q0WdG+0Rq+7Q=="
}
},
"is_incremental": false,
@ -30,7 +30,7 @@
"output": {
".html": {
"relative_path": "articles/command-line.html",
"hash": "vMq7yynf4joL5WmxhAshUA=="
"hash": "FZ6IFs1j1cp5q4RTkT5pIw=="
}
},
"is_incremental": false,
@ -42,7 +42,7 @@
"output": {
".html": {
"relative_path": "articles/contributing.html",
"hash": "VsEgFwSp/RoToftSjM4L3Q=="
"hash": "u51pV8Pvv2AwDXnDvauOPQ=="
}
},
"is_incremental": false,
@ -54,7 +54,7 @@
"output": {
".html": {
"relative_path": "articles/dev-resources/description.html",
"hash": "rEpzc/ezvsaCzjj0wJKtRg=="
"hash": "QV5IsyA8nJIr6pKpjlEKBQ=="
}
},
"is_incremental": false,
@ -66,7 +66,7 @@
"output": {
".html": {
"relative_path": "articles/index.html",
"hash": "WesOwgUp25fzpXdc42phTg=="
"hash": "1vOB0aIKEKCgvoHbTQyJ1g=="
}
},
"is_incremental": false,
@ -81,7 +81,7 @@
"output": {
".html": {
"relative_path": "articles/start-dev.html",
"hash": "Eja4XegsvvoEgSHYx246Pg=="
"hash": "kKek3dPjaK7UJrmsq0m4xA=="
}
},
"is_incremental": false,
@ -93,7 +93,7 @@
"output": {
".html": {
"relative_path": "articles/start-user.html",
"hash": "M643KanSp1JLzE3FiO1lSA=="
"hash": "93WP5CoO++DlZduQ7h6P/g=="
}
},
"is_incremental": false,
@ -183,7 +183,7 @@
"output": {
".html": {
"relative_path": "index.html",
"hash": "Zk97Rv8Qazagb0jFwgxzSg=="
"hash": "8GXsDkCS+M63VF0TuNwq/g=="
}
},
"is_incremental": false,
@ -195,7 +195,7 @@
"output": {
".html": {
"relative_path": "other_api/config/schema.html",
"hash": "khgJhi0/AuQS2vIA6U4hLQ=="
"hash": "tizjsFVjz+zf+ZgFv2B8jw=="
}
},
"is_incremental": false,
@ -207,7 +207,7 @@
"output": {
".html": {
"relative_path": "other_api/index.html",
"hash": "6k6erVGioS/aaHWEXAXalA=="
"hash": "8sMudpD3wEVkZskgq3cXqA=="
}
},
"is_incremental": false,


+ 1
- 1
other_api/config/schema.html View File

@ -173,7 +173,7 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/b4c06fef082b8a10458bc874bfa67789ed9d2fb4/docs/other_api/config/schema.md/#L1" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/7e229ce16d5d0b4bccc87ff99f7648866797ca78/docs/other_api/config/schema.md/#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>


+ 1
- 1
other_api/index.html View File

@ -87,7 +87,7 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/b4c06fef082b8a10458bc874bfa67789ed9d2fb4/docs/other_api/index.md/#L1" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/7e229ce16d5d0b4bccc87ff99f7648866797ca78/docs/other_api/index.md/#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>


Loading…
Cancel
Save