Deployed 3867f9c
to 0.2 with MkDocs 1.1.2 and mike 0.5.5
parent
d433dcb74e
commit
86f21c6440
|
@ -959,6 +959,13 @@
|
|||
</label>
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#v021" class="md-nav__link">
|
||||
v0.2.1
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#v020" class="md-nav__link">
|
||||
v0.2.0
|
||||
|
@ -1021,6 +1028,13 @@
|
|||
</label>
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#v021" class="md-nav__link">
|
||||
v0.2.1
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#v020" class="md-nav__link">
|
||||
v0.2.0
|
||||
|
@ -1053,6 +1067,10 @@
|
|||
|
||||
|
||||
<h1 id="change-log">Change Log<a class="headerlink" href="#change-log" title="Permanent link">¶</a></h1>
|
||||
<h2 id="v021">v0.2.1<a class="headerlink" href="#v021" title="Permanent link">¶</a></h2>
|
||||
<ul>
|
||||
<li>FIx link to the most recent version in the old version banner</li>
|
||||
</ul>
|
||||
<h2 id="v020">v0.2.0<a class="headerlink" href="#v020" title="Permanent link">¶</a></h2>
|
||||
<ul>
|
||||
<li>Add new <code>PHONE_BLUETOOTH</code> <code>DORYAB</code> provider</li>
|
||||
|
|
|
@ -1079,6 +1079,7 @@ git pull
|
|||
<div class="highlight"><pre><span></span><code>git checkout -b feature/feature1
|
||||
</code></pre></div></li>
|
||||
<li>Add, modify or delete the necessary files to add your new feature</li>
|
||||
<li>Update the <a href="../../change-log">change log</a> (<code>docs/change-log.md</code>)</li>
|
||||
<li>Stage and commit your changes using VS Code git GUI or the following commands
|
||||
<div class="highlight"><pre><span></span><code>git add modified-file1 modified-file2
|
||||
git commit -m <span class="s2">"Add my new feature"</span> <span class="c1"># use a concise description</span>
|
||||
|
@ -1142,6 +1143,7 @@ git pull
|
|||
git checkout -b hotfix/v<span class="o">[</span>NEW_HOTFIX<span class="o">]</span> master
|
||||
</code></pre></div></li>
|
||||
<li>Fix whatever needs to be fixed</li>
|
||||
<li>Update the change log</li>
|
||||
<li>Tag and merge the hotfix
|
||||
<div class="highlight"><pre><span></span><code>git tag v<span class="o">[</span>NEW_HOTFIX<span class="o">]</span>
|
||||
git checkout develop
|
||||
|
|
|
@ -8,7 +8,7 @@ window.addEventListener("DOMContentLoaded", function() {
|
|||
if(versions[id]["aliases"].length > 0 && versions[id]["aliases"].includes("latest"))
|
||||
latest_version = "/" + versions[id].version + "/"
|
||||
if(!window.location.pathname.includes("/latest/") && (latest_version.length > 0 && !window.location.pathname.includes(latest_version)))
|
||||
document.querySelector("div[data-md-component=announce]").innerHTML = "<div id='announce-msg'>You are seeing the docs for a previous version of RAPIDS, <a href='" + window.location.href + "latest/'>click here to go to the latest</a></div>"
|
||||
document.querySelector("div[data-md-component=announce]").innerHTML = "<div id='announce-msg'>You are seeing the docs for a previous version of RAPIDS, <a href='http://www.rapids.science/'>click here to go to the latest</a></div>"
|
||||
};
|
||||
xhr.send();
|
||||
});
|
||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -959,6 +959,13 @@
|
|||
</label>
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#v021" class="md-nav__link">
|
||||
v0.2.1
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#v020" class="md-nav__link">
|
||||
v0.2.0
|
||||
|
@ -1021,6 +1028,13 @@
|
|||
</label>
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#v021" class="md-nav__link">
|
||||
v0.2.1
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#v020" class="md-nav__link">
|
||||
v0.2.0
|
||||
|
@ -1053,6 +1067,10 @@
|
|||
|
||||
|
||||
<h1 id="change-log">Change Log<a class="headerlink" href="#change-log" title="Permanent link">¶</a></h1>
|
||||
<h2 id="v021">v0.2.1<a class="headerlink" href="#v021" title="Permanent link">¶</a></h2>
|
||||
<ul>
|
||||
<li>FIx link to the most recent version in the old version banner</li>
|
||||
</ul>
|
||||
<h2 id="v020">v0.2.0<a class="headerlink" href="#v020" title="Permanent link">¶</a></h2>
|
||||
<ul>
|
||||
<li>Add new <code>PHONE_BLUETOOTH</code> <code>DORYAB</code> provider</li>
|
||||
|
|
|
@ -1079,6 +1079,7 @@ git pull
|
|||
<div class="highlight"><pre><span></span><code>git checkout -b feature/feature1
|
||||
</code></pre></div></li>
|
||||
<li>Add, modify or delete the necessary files to add your new feature</li>
|
||||
<li>Update the <a href="../../change-log">change log</a> (<code>docs/change-log.md</code>)</li>
|
||||
<li>Stage and commit your changes using VS Code git GUI or the following commands
|
||||
<div class="highlight"><pre><span></span><code>git add modified-file1 modified-file2
|
||||
git commit -m <span class="s2">"Add my new feature"</span> <span class="c1"># use a concise description</span>
|
||||
|
@ -1142,6 +1143,7 @@ git pull
|
|||
git checkout -b hotfix/v<span class="o">[</span>NEW_HOTFIX<span class="o">]</span> master
|
||||
</code></pre></div></li>
|
||||
<li>Fix whatever needs to be fixed</li>
|
||||
<li>Update the change log</li>
|
||||
<li>Tag and merge the hotfix
|
||||
<div class="highlight"><pre><span></span><code>git tag v<span class="o">[</span>NEW_HOTFIX<span class="o">]</span>
|
||||
git checkout develop
|
||||
|
|
|
@ -8,7 +8,7 @@ window.addEventListener("DOMContentLoaded", function() {
|
|||
if(versions[id]["aliases"].length > 0 && versions[id]["aliases"].includes("latest"))
|
||||
latest_version = "/" + versions[id].version + "/"
|
||||
if(!window.location.pathname.includes("/latest/") && (latest_version.length > 0 && !window.location.pathname.includes(latest_version)))
|
||||
document.querySelector("div[data-md-component=announce]").innerHTML = "<div id='announce-msg'>You are seeing the docs for a previous version of RAPIDS, <a href='" + window.location.href + "latest/'>click here to go to the latest</a></div>"
|
||||
document.querySelector("div[data-md-component=announce]").innerHTML = "<div id='announce-msg'>You are seeing the docs for a previous version of RAPIDS, <a href='http://www.rapids.science/'>click here to go to the latest</a></div>"
|
||||
};
|
||||
xhr.send();
|
||||
});
|
||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
Loading…
Reference in New Issue