aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2018-09-13 23:46:59 +0200
committerJohannes Ranke <jranke@uni-bremen.de>2018-09-13 23:46:59 +0200
commit062df4d773cd4e57c862054fe9b5232b5a055c34 (patch)
tree4d895963ebb54f103f6d3db65328a6de9b5c6932
parentfcba8a833c5f920b12e1d7f17ef2d5236a81b354 (diff)
Require mkin version that actually works with gmkin
Static documentation rebuilt by pkgdown
-rw-r--r--DESCRIPTION2
-rw-r--r--docs/articles/gmkin_manual.html50
-rw-r--r--docs/articles/index.html2
-rw-r--r--docs/authors.html2
-rw-r--r--docs/index.html30
-rw-r--r--docs/news/index.html2
-rw-r--r--docs/pkgdown.yml2
-rw-r--r--docs/reference/FOCUS_2006.html2
-rw-r--r--docs/reference/FOCUS_2006_Z.html2
-rw-r--r--docs/reference/UBA_model_gallery.html2
-rw-r--r--docs/reference/gmkin.html2
-rw-r--r--docs/reference/gmkinws.html2
-rw-r--r--docs/reference/index.html2
13 files changed, 51 insertions, 51 deletions
diff --git a/DESCRIPTION b/DESCRIPTION
index 8af8910..1e66028 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -10,7 +10,7 @@ Authors@R: c(person("Johannes", "Ranke", role = c("aut", "cre", "cph"),
Description: Browser based graphical user interface for R package mkin, based
on the gWidgetsWWW2 package. Both gmkin and gWidgetsWWW2 are developed on
GitHub, but are also available from the R-Forge repository.
-Depends: mkin (>= 0.9.47.1), gWidgetsWWW2 (>= 0.4-7)
+Depends: mkin (>= 0.9.47.3), gWidgetsWWW2 (>= 0.4-7)
Imports: R6, markdown, plyr
Suggests: knitr, rmarkdown
License: GPL
diff --git a/docs/articles/gmkin_manual.html b/docs/articles/gmkin_manual.html
index dc2ef4d..646b534 100644
--- a/docs/articles/gmkin_manual.html
+++ b/docs/articles/gmkin_manual.html
@@ -29,7 +29,7 @@
</button>
<span class="navbar-brand">
<a class="navbar-link" href="../index.html">gmkin</a>
- <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.8</span>
+ <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.9</span>
</span>
</div>
@@ -75,7 +75,7 @@
<h1>Manual for gmkin</h1>
<h4 class="author">Johannes Ranke</h4>
- <h4 class="date">2018-06-06</h4>
+ <h4 class="date">2018-09-13</h4>
<div class="hidden name"><code>gmkin_manual.Rmd</code></div>
@@ -94,11 +94,11 @@
<h2 class="hasAnchor">
<a href="#starting-gmkin" class="anchor"></a>Starting gmkin</h2>
<p>As gmkin is an R package, you need to start R and load the gmkin package before you can run gmkin. The latter can be achieved by entering the command</p>
-<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="kw">library</span>(gmkin)</code></pre></div>
+<div class="sourceCode" id="cb1"><pre class="sourceCode r"><code class="sourceCode r"><a class="sourceLine" id="cb1-1" data-line-number="1"><span class="kw">library</span>(gmkin)</a></code></pre></div>
<p>into the R console. This will also load the packages that gmkin depends on, most notably gWidgetsWWW2 and mkin. Loading the package only has to be done once after you have started R.</p>
<p>Before you start gmkin, you should make sure that R is using the working directory that you would like to keep your gmkin project file(s) in. If you use the standard R GUI application on windows, you can change the working directory from the File menu (‘File’ -&gt; ‘Change dir…’).</p>
<p>Once you are sure that the working directory is what you want it to be, gmkin can be started by entering the R command</p>
-<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="kw"><a href="../reference/gmkin.html">gmkin</a></span>()</code></pre></div>
+<div class="sourceCode" id="cb2"><pre class="sourceCode r"><code class="sourceCode r"><a class="sourceLine" id="cb2-1" data-line-number="1"><span class="kw"><a href="../reference/gmkin.html">gmkin</a></span>()</a></code></pre></div>
<p>This will cause the default browser to start up or, if it is already running, to pop up and open a new tab for displaying the gmkin user interface.</p>
<p>In the R console, you should see a message that the httpd help server is started, if it wasn’t already started before.</p>
<p>In the browser, you should see something like the screenshot below.</p>
@@ -160,9 +160,9 @@
<a href="#importing-data-from-text-files" class="anchor"></a>Importing data from text files</h3>
<p>In case you want to work with a larger dataset that is already available as a computer file e.g. in a spreadsheet application, you can export these data as a tab separated or comma separated text file and import it using the “Browse” and “Upload” buttons in the dataset editor.</p>
<p>As an example, we can create a text file from one of the datasets shipped with the mkin package using the following R command:</p>
-<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="kw">write.table</span>(schaefer07_complex_case, <span class="dt">sep =</span> <span class="st">","</span>, <span class="dt">dec =</span> <span class="st">"."</span>,
- <span class="dt">row.names =</span> <span class="ot">FALSE</span>, <span class="dt">quote =</span> <span class="ot">FALSE</span>,
- <span class="dt">file =</span> <span class="st">"schaefer07.csv"</span>)</code></pre></div>
+<div class="sourceCode" id="cb3"><pre class="sourceCode r"><code class="sourceCode r"><a class="sourceLine" id="cb3-1" data-line-number="1"><span class="kw">write.table</span>(schaefer07_complex_case, <span class="dt">sep =</span> <span class="st">","</span>, <span class="dt">dec =</span> <span class="st">"."</span>, </a>
+<a class="sourceLine" id="cb3-2" data-line-number="2"> <span class="dt">row.names =</span> <span class="ot">FALSE</span>, <span class="dt">quote =</span> <span class="ot">FALSE</span>, </a>
+<a class="sourceLine" id="cb3-3" data-line-number="3"> <span class="dt">file =</span> <span class="st">"schaefer07.csv"</span>)</a></code></pre></div>
<p>This produces a text file with comma separated values in the current working directory of R.</p>
<p>Loading this text file into gmkin using the “Browse” and “Upload” buttons</p>
<div class="figure">
@@ -241,23 +241,23 @@
<h3 class="hasAnchor">
<a href="#fitting-the-model" class="anchor"></a>Fitting the model</h3>
<p>In many cases the starting parameters and the fit options do not need to be modified and the model fitting process can simply be started by pressing the “Run fit” button. In the R console, the progressive reduction in the model cost can be monitored and will be displayed in the following way:</p>
-<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">Model cost at call <span class="dv">1</span> <span class="op">:</span><span class="st"> </span><span class="fl">15156.12</span>
-Model cost at call <span class="dv">3</span> <span class="op">:</span><span class="st"> </span><span class="fl">15156.12</span>
-Model cost at call <span class="dv">7</span> <span class="op">:</span><span class="st"> </span><span class="fl">14220.79</span>
-Model cost at call <span class="dv">8</span> <span class="op">:</span><span class="st"> </span><span class="fl">14220.79</span>
-Model cost at call <span class="dv">11</span> <span class="op">:</span><span class="st"> </span><span class="fl">14220.79</span>
-Model cost at call <span class="dv">12</span> <span class="op">:</span><span class="st"> </span><span class="fl">3349.268</span>
-Model cost at call <span class="dv">15</span> <span class="op">:</span><span class="st"> </span><span class="fl">3349.268</span>
-Model cost at call <span class="dv">17</span> <span class="op">:</span><span class="st"> </span><span class="fl">788.6367</span>
-Model cost at call <span class="dv">18</span> <span class="op">:</span><span class="st"> </span><span class="fl">788.6366</span>
-Model cost at call <span class="dv">22</span> <span class="op">:</span><span class="st"> </span><span class="fl">374.0575</span>
-Model cost at call <span class="dv">23</span> <span class="op">:</span><span class="st"> </span><span class="fl">374.0575</span>
-Model cost at call <span class="dv">27</span> <span class="op">:</span><span class="st"> </span><span class="fl">371.2135</span>
-Model cost at call <span class="dv">28</span> <span class="op">:</span><span class="st"> </span><span class="fl">371.2135</span>
-Model cost at call <span class="dv">32</span> <span class="op">:</span><span class="st"> </span><span class="fl">371.2134</span>
-Model cost at call <span class="dv">36</span> <span class="op">:</span><span class="st"> </span><span class="fl">371.2134</span>
-Model cost at call <span class="dv">37</span> <span class="op">:</span><span class="st"> </span><span class="fl">371.2134</span>
-Optimisation by method Port successfully terminated.</code></pre></div>
+<div class="sourceCode" id="cb4"><pre class="sourceCode r"><code class="sourceCode r"><a class="sourceLine" id="cb4-1" data-line-number="1">Model cost at call <span class="dv">1</span> <span class="op">:</span><span class="st"> </span><span class="fl">15156.12</span> </a>
+<a class="sourceLine" id="cb4-2" data-line-number="2">Model cost at call <span class="dv">3</span> <span class="op">:</span><span class="st"> </span><span class="fl">15156.12</span> </a>
+<a class="sourceLine" id="cb4-3" data-line-number="3">Model cost at call <span class="dv">7</span> <span class="op">:</span><span class="st"> </span><span class="fl">14220.79</span> </a>
+<a class="sourceLine" id="cb4-4" data-line-number="4">Model cost at call <span class="dv">8</span> <span class="op">:</span><span class="st"> </span><span class="fl">14220.79</span> </a>
+<a class="sourceLine" id="cb4-5" data-line-number="5">Model cost at call <span class="dv">11</span> <span class="op">:</span><span class="st"> </span><span class="fl">14220.79</span> </a>
+<a class="sourceLine" id="cb4-6" data-line-number="6">Model cost at call <span class="dv">12</span> <span class="op">:</span><span class="st"> </span><span class="fl">3349.268</span> </a>
+<a class="sourceLine" id="cb4-7" data-line-number="7">Model cost at call <span class="dv">15</span> <span class="op">:</span><span class="st"> </span><span class="fl">3349.268</span> </a>
+<a class="sourceLine" id="cb4-8" data-line-number="8">Model cost at call <span class="dv">17</span> <span class="op">:</span><span class="st"> </span><span class="fl">788.6367</span> </a>
+<a class="sourceLine" id="cb4-9" data-line-number="9">Model cost at call <span class="dv">18</span> <span class="op">:</span><span class="st"> </span><span class="fl">788.6366</span> </a>
+<a class="sourceLine" id="cb4-10" data-line-number="10">Model cost at call <span class="dv">22</span> <span class="op">:</span><span class="st"> </span><span class="fl">374.0575</span> </a>
+<a class="sourceLine" id="cb4-11" data-line-number="11">Model cost at call <span class="dv">23</span> <span class="op">:</span><span class="st"> </span><span class="fl">374.0575</span> </a>
+<a class="sourceLine" id="cb4-12" data-line-number="12">Model cost at call <span class="dv">27</span> <span class="op">:</span><span class="st"> </span><span class="fl">371.2135</span> </a>
+<a class="sourceLine" id="cb4-13" data-line-number="13">Model cost at call <span class="dv">28</span> <span class="op">:</span><span class="st"> </span><span class="fl">371.2135</span> </a>
+<a class="sourceLine" id="cb4-14" data-line-number="14">Model cost at call <span class="dv">32</span> <span class="op">:</span><span class="st"> </span><span class="fl">371.2134</span> </a>
+<a class="sourceLine" id="cb4-15" data-line-number="15">Model cost at call <span class="dv">36</span> <span class="op">:</span><span class="st"> </span><span class="fl">371.2134</span> </a>
+<a class="sourceLine" id="cb4-16" data-line-number="16">Model cost at call <span class="dv">37</span> <span class="op">:</span><span class="st"> </span><span class="fl">371.2134</span> </a>
+<a class="sourceLine" id="cb4-17" data-line-number="17">Optimisation by method Port successfully terminated.</a></code></pre></div>
<p>If plotting of the fitting progress was selected, a new separate graphics window should either pop up, or a graphics window previously started for this purpose will be reused.</p>
<p>If your screen size allows for it, you can arrange the R plotting window and the R console in a way that you can see everything at the same time:</p>
<div class="figure">
@@ -321,7 +321,7 @@ Optimisation by method Port successfully terminated.</code></pre></div>
<li>Enter replicates ‘1’</li>
<li>Enter observed variable ‘parent, A1’</li>
<li>Press ‘Generate grid for entering kinetic data’</li>
-<li>In the value column of the dataset editor, enter values ‘100’, ‘30’, ‘10’, ‘5’, ‘3’, ‘’ (nothing), ’3’, ‘8’, ‘7’, ‘5’</li>
+<li>In the value column of the dataset editor, enter values ‘100’, ‘30’, ‘10’, ‘5’, ‘3’, ’’ (nothing), ‘3’, ‘8’, ‘7’, ‘5’</li>
<li>Press ‘Keep changes’</li>
<li>Select the ‘Model gallery’ to the right</li>
<li>From the model gallery, press ‘FOMC, one met’ below the corresponding model scheme</li>
diff --git a/docs/articles/index.html b/docs/articles/index.html
index c7c7845..66f320b 100644
--- a/docs/articles/index.html
+++ b/docs/articles/index.html
@@ -58,7 +58,7 @@
</button>
<span class="navbar-brand">
<a class="navbar-link" href="../index.html">gmkin</a>
- <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.8</span>
+ <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.9</span>
</span>
</div>
diff --git a/docs/authors.html b/docs/authors.html
index 3e0114c..bd814b3 100644
--- a/docs/authors.html
+++ b/docs/authors.html
@@ -58,7 +58,7 @@
</button>
<span class="navbar-brand">
<a class="navbar-link" href="index.html">gmkin</a>
- <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.8</span>
+ <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.9</span>
</span>
</div>
diff --git a/docs/index.html b/docs/index.html
index a654b22..0df4c29 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -31,7 +31,7 @@
</button>
<span class="navbar-brand">
<a class="navbar-link" href="index.html">gmkin</a>
- <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.8</span>
+ <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.9</span>
</span>
</div>
@@ -93,14 +93,14 @@
<h3 class="hasAnchor">
<a href="#installing-gmkin-and-gwidgetswww2" class="anchor"></a>Installing gmkin and gWidgetsWWW2</h3>
<p>Windows and Linux users running R 3.1.0 or later can make use of my drat package repository on github. Before installing gmkin, you should update your R packages already installed, e.g. by starting R, and pasting the command</p>
-<div class="sourceCode"><pre class="sourceCode s"><code class="sourceCode gnuassembler">update.packages()</code></pre></div>
+<div class="sourceCode" id="cb1"><pre class="sourceCode s"><code class="sourceCode gnuassembler"><a class="sourceLine" id="cb1-1" data-line-number="1">update.packages()</a></code></pre></div>
<p>or similar, depending on your R installation.</p>
<p>For installing gmkin or upgrading to the latest released version, please install the drat package</p>
-<div class="sourceCode"><pre class="sourceCode s"><code class="sourceCode gnuassembler">install.packages(<span class="st">"drat"</span>)</code></pre></div>
+<div class="sourceCode" id="cb2"><pre class="sourceCode s"><code class="sourceCode gnuassembler"><a class="sourceLine" id="cb2-1" data-line-number="1">install.packages(<span class="st">"drat"</span>)</a></code></pre></div>
<p>add my repository</p>
-<div class="sourceCode"><pre class="sourceCode s"><code class="sourceCode gnuassembler"><span class="kw">drat::</span>addRepo(<span class="st">"jranke"</span>)</code></pre></div>
+<div class="sourceCode" id="cb3"><pre class="sourceCode s"><code class="sourceCode gnuassembler"><a class="sourceLine" id="cb3-1" data-line-number="1"><span class="kw">drat::</span>addRepo(<span class="st">"jranke"</span>)</a></code></pre></div>
<p>and install as usual</p>
-<div class="sourceCode"><pre class="sourceCode s"><code class="sourceCode gnuassembler">install.packages(<span class="st">"gmkin"</span>)</code></pre></div>
+<div class="sourceCode" id="cb4"><pre class="sourceCode s"><code class="sourceCode gnuassembler"><a class="sourceLine" id="cb4-1" data-line-number="1">install.packages(<span class="st">"gmkin"</span>)</a></code></pre></div>
<p>The latest changes to gmkin are recorded in the <a href="https://github.com/jranke/gmkin/blob/master/NEWS.html">NEWS</a> file, more details can be found in the <a href="https://github.com/jranke/gmkin/commits/master">commit history</a>.</p>
<p><img src="gmkin_screenshot.png" alt="gmkin screenshot"></p>
</div>
@@ -109,8 +109,8 @@
<h2 class="hasAnchor">
<a href="#usage" class="anchor"></a>Usage</h2>
<p>Without further preparation, you can start the GUI by starting R and pasting the following commands into the R terminal (R console on Windows):</p>
-<div class="sourceCode"><pre class="sourceCode s"><code class="sourceCode gnuassembler">require(gmkin)
-gmkin()</code></pre></div>
+<div class="sourceCode" id="cb5"><pre class="sourceCode s"><code class="sourceCode gnuassembler"><a class="sourceLine" id="cb5-1" data-line-number="1">require(gmkin)</a>
+<a class="sourceLine" id="cb5-2" data-line-number="2">gmkin()</a></code></pre></div>
<p>You may also want to adapt the browser that R starts (using e.g. <code>options(browser="/usr/bin/firefox")</code> on linux, or setting the default browser on Windows).</p>
</div>
<div id="documentation" class="section level2">
@@ -137,9 +137,9 @@ gmkin()</code></pre></div>
<h3 class="hasAnchor">
<a href="#installation-using-the-devtools-package" class="anchor"></a>Installation using the devtools package</h3>
<p>Users of the <code>devtools</code> package can also install gWidgetsWWW2 and gmkin directly from the respective github repositories:</p>
-<div class="sourceCode"><pre class="sourceCode s"><code class="sourceCode gnuassembler">require(devtools)
-install_github(<span class="st">"jverzani/gWidgetsWWW2"</span>, quick = TRUE)
-install_github(<span class="st">"jranke/gmkin"</span>, quick = TRUE)</code></pre></div>
+<div class="sourceCode" id="cb6"><pre class="sourceCode s"><code class="sourceCode gnuassembler"><a class="sourceLine" id="cb6-1" data-line-number="1">require(devtools)</a>
+<a class="sourceLine" id="cb6-2" data-line-number="2">install_github(<span class="st">"jverzani/gWidgetsWWW2"</span>, quick = TRUE)</a>
+<a class="sourceLine" id="cb6-3" data-line-number="3">install_github(<span class="st">"jranke/gmkin"</span>, quick = TRUE)</a></code></pre></div>
<p>Installing gWidgetsWWW2 in this way yields a lot of warnings concerning overly long path names (see Notes on gWidgetsWWW2 above). Using <code>quick = TRUE</code> skips docs, multiple-architecture builds, demos, and vignettes, to make installation as fast and painless as possible.</p>
</div>
</div>
@@ -147,11 +147,11 @@ install_github(<span class="st">"jranke/gmkin"</span>, quick = TRUE)</code></pre
<h2 class="hasAnchor">
<a href="#simplifying-the-start-of-gmkin-under-windows" class="anchor"></a>Simplifying the start of gmkin under Windows</h2>
<p>You can put the commands</p>
-<div class="sourceCode"><pre class="sourceCode s"><code class="sourceCode gnuassembler">require(gmkin)
-gmkin()
-while (TRUE) {
- Sys.sleep(<span class="dv">10</span>)
-}</code></pre></div>
+<div class="sourceCode" id="cb7"><pre class="sourceCode s"><code class="sourceCode gnuassembler"><a class="sourceLine" id="cb7-1" data-line-number="1">require(gmkin)</a>
+<a class="sourceLine" id="cb7-2" data-line-number="2">gmkin()</a>
+<a class="sourceLine" id="cb7-3" data-line-number="3">while (TRUE) {</a>
+<a class="sourceLine" id="cb7-4" data-line-number="4"> Sys.sleep(<span class="dv">10</span>)</a>
+<a class="sourceLine" id="cb7-5" data-line-number="5">}</a></code></pre></div>
<p>into an R script (e.g. under <code>C:\Users\&lt;your username&gt;\AppData\Roaming\gmkin_start.R</code>), and create a Windows shortcut, e.g. on the Desktop, with the target <code>"C:\Program Files\R\R-3.x.y\bin\R.exe" --slave -f c:\Users\&lt;your username&gt;\AppData\Roaming\gmkin_start.R</code>, where R.x.y is the version of R that you would like to use with gmkin. This will start a non-interactive R console that runs the gmkin GUI. In the properties dialogue of the shortcut, you can also set the working directory in which it starts gmkin. Thanks to Jonas Klein of the Umweltbundesamt for the trick with using Sys.sleep in a while loop and for suggesting the AppData directory for the start script.</p>
</div>
<div id="acknowledgements" class="section level2">
diff --git a/docs/news/index.html b/docs/news/index.html
index 24be3d7..d8cce8c 100644
--- a/docs/news/index.html
+++ b/docs/news/index.html
@@ -58,7 +58,7 @@
</button>
<span class="navbar-brand">
<a class="navbar-link" href="../index.html">gmkin</a>
- <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.8</span>
+ <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.9</span>
</span>
</div>
diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml
index 75e5968..d836be5 100644
--- a/docs/pkgdown.yml
+++ b/docs/pkgdown.yml
@@ -1,4 +1,4 @@
-pandoc: 1.19.2.4
+pandoc: 2.2.1
pkgdown: 1.1.0
pkgdown_sha: ~
articles:
diff --git a/docs/reference/FOCUS_2006.html b/docs/reference/FOCUS_2006.html
index 93153ad..4a96697 100644
--- a/docs/reference/FOCUS_2006.html
+++ b/docs/reference/FOCUS_2006.html
@@ -63,7 +63,7 @@
</button>
<span class="navbar-brand">
<a class="navbar-link" href="../index.html">gmkin</a>
- <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.8</span>
+ <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.9</span>
</span>
</div>
diff --git a/docs/reference/FOCUS_2006_Z.html b/docs/reference/FOCUS_2006_Z.html
index ee01417..8a1cc24 100644
--- a/docs/reference/FOCUS_2006_Z.html
+++ b/docs/reference/FOCUS_2006_Z.html
@@ -61,7 +61,7 @@
</button>
<span class="navbar-brand">
<a class="navbar-link" href="../index.html">gmkin</a>
- <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.8</span>
+ <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.9</span>
</span>
</div>
diff --git a/docs/reference/UBA_model_gallery.html b/docs/reference/UBA_model_gallery.html
index 00f84ae..a7e6f59 100644
--- a/docs/reference/UBA_model_gallery.html
+++ b/docs/reference/UBA_model_gallery.html
@@ -66,7 +66,7 @@
</button>
<span class="navbar-brand">
<a class="navbar-link" href="../index.html">gmkin</a>
- <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.8</span>
+ <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.9</span>
</span>
</div>
diff --git a/docs/reference/gmkin.html b/docs/reference/gmkin.html
index 70c2d07..21961bb 100644
--- a/docs/reference/gmkin.html
+++ b/docs/reference/gmkin.html
@@ -63,7 +63,7 @@
</button>
<span class="navbar-brand">
<a class="navbar-link" href="../index.html">gmkin</a>
- <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.8</span>
+ <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.9</span>
</span>
</div>
diff --git a/docs/reference/gmkinws.html b/docs/reference/gmkinws.html
index e0fee8b..7355823 100644
--- a/docs/reference/gmkinws.html
+++ b/docs/reference/gmkinws.html
@@ -61,7 +61,7 @@
</button>
<span class="navbar-brand">
<a class="navbar-link" href="../index.html">gmkin</a>
- <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.8</span>
+ <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.9</span>
</span>
</div>
diff --git a/docs/reference/index.html b/docs/reference/index.html
index 1b9bd74..f0a6712 100644
--- a/docs/reference/index.html
+++ b/docs/reference/index.html
@@ -58,7 +58,7 @@
</button>
<span class="navbar-brand">
<a class="navbar-link" href="../index.html">gmkin</a>
- <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.8</span>
+ <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.6.9</span>
</span>
</div>

Contact - Imprint