Skip to content

Commit

Permalink
Bump version to v0.5.0
Browse files Browse the repository at this point in the history
Update documentation and Closes #32
  • Loading branch information
dail8859 committed Sep 9, 2016
1 parent b3b7c82 commit acd52f4
Show file tree
Hide file tree
Showing 21 changed files with 491 additions and 40 deletions.
11 changes: 8 additions & 3 deletions docs/classes/Editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<div id="navigation">
<br/>
<h1>LuaScript <sub>v0.4.0</sub></h1>
<h1>LuaScript <sub>v0.5.0</sub></h1>

<ul>
<li><a href="../index.html">Index</a></li>
Expand Down Expand Up @@ -81,6 +81,7 @@ <h2>Classes</h2>
<ul class="nowrap">
<li><strong>Editor</strong></li>
<li><a href="../classes/Match.html">Match</a></li>
<li><a href="../classes/Styler.html">Styler</a></li>
<li><a href="../classes/Notepad.html">Notepad</a></li>
</ul>
<h2>Topics</h2>
Expand All @@ -93,6 +94,8 @@ <h2>Examples</h2>
<li><a href="../examples/highlightoccurrences.lua.html">highlightoccurrences.lua</a></li>
<li><a href="../examples/selectionaddnext.lua.html">selectionaddnext.lua</a></li>
<li><a href="../examples/sessionmanager.lua.html">sessionmanager.lua</a></li>
<li><a href="../examples/stylecsv.lua.html">stylecsv.lua</a></li>
<li><a href="../examples/stylecustom.lua.html">stylecustom.lua</a></li>
<li><a href="../examples/visualstudiolinecopy.lua.html">visualstudiolinecopy.lua</a></li>
</ul>

Expand Down Expand Up @@ -2422,7 +2425,9 @@ <h3>See also:</h3>

<h3>Usage:</h3>
<ul>
<pre class="example"><span class="keyword">for</span> m <span class="keyword">in</span> editor:match(text, flags) <span class="keyword">do</span> ... <span class="keyword">end</span></pre>
<pre class="example"> <span class="keyword">for</span> m <span class="keyword">in</span> editor:match(text, flags) <span class="keyword">do</span>
...
<span class="keyword">end</span></pre>
</ul>

</dd>
Expand Down Expand Up @@ -15332,7 +15337,7 @@ <h3>See also:</h3>
</div> <!-- id="main" -->
<div id="about">
<i>Generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.3</a></i>
<i style="float:right;">Last updated 2016-09-09 09:10:16 </i>
<i style="float:right;">Last updated 2016-09-09 11:11:46 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
<footer>
Expand Down
11 changes: 8 additions & 3 deletions docs/classes/Match.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<div id="navigation">
<br/>
<h1>LuaScript <sub>v0.4.0</sub></h1>
<h1>LuaScript <sub>v0.5.0</sub></h1>

<ul>
<li><a href="../index.html">Index</a></li>
Expand All @@ -41,6 +41,7 @@ <h2>Classes</h2>
<ul class="nowrap">
<li><a href="../classes/Editor.html">Editor</a></li>
<li><strong>Match</strong></li>
<li><a href="../classes/Styler.html">Styler</a></li>
<li><a href="../classes/Notepad.html">Notepad</a></li>
</ul>
<h2>Topics</h2>
Expand All @@ -53,6 +54,8 @@ <h2>Examples</h2>
<li><a href="../examples/highlightoccurrences.lua.html">highlightoccurrences.lua</a></li>
<li><a href="../examples/selectionaddnext.lua.html">selectionaddnext.lua</a></li>
<li><a href="../examples/sessionmanager.lua.html">sessionmanager.lua</a></li>
<li><a href="../examples/stylecsv.lua.html">stylecsv.lua</a></li>
<li><a href="../examples/stylecustom.lua.html">stylecustom.lua</a></li>
<li><a href="../examples/visualstudiolinecopy.lua.html">visualstudiolinecopy.lua</a></li>
</ul>

Expand All @@ -74,7 +77,9 @@ <h3>See also:</h3>
</ul>
<h3>Usage:</h3>
<ul>
<pre class="example">for m in editor:match(&quot;teh&quot;) do m:replace(&quot;the&quot;) end</pre>
<pre class="example"> for m in editor:match(&quot;teh&quot;) do
m:replace(&quot;the&quot;)
end</pre>
</ul>


Expand Down Expand Up @@ -234,7 +239,7 @@ <h2 class="section-header "><a name="Metamethods"></a>Metamethods</h2>
</div> <!-- id="main" -->
<div id="about">
<i>Generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.3</a></i>
<i style="float:right;">Last updated 2016-09-09 09:10:16 </i>
<i style="float:right;">Last updated 2016-09-09 11:11:46 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
<footer>
Expand Down
7 changes: 5 additions & 2 deletions docs/classes/Notepad.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<div id="navigation">
<br/>
<h1>LuaScript <sub>v0.4.0</sub></h1>
<h1>LuaScript <sub>v0.5.0</sub></h1>

<ul>
<li><a href="../index.html">Index</a></li>
Expand All @@ -41,6 +41,7 @@ <h2>Classes</h2>
<ul class="nowrap">
<li><a href="../classes/Editor.html">Editor</a></li>
<li><a href="../classes/Match.html">Match</a></li>
<li><a href="../classes/Styler.html">Styler</a></li>
<li><strong>Notepad</strong></li>
</ul>
<h2>Topics</h2>
Expand All @@ -53,6 +54,8 @@ <h2>Examples</h2>
<li><a href="../examples/highlightoccurrences.lua.html">highlightoccurrences.lua</a></li>
<li><a href="../examples/selectionaddnext.lua.html">selectionaddnext.lua</a></li>
<li><a href="../examples/sessionmanager.lua.html">sessionmanager.lua</a></li>
<li><a href="../examples/stylecsv.lua.html">stylecsv.lua</a></li>
<li><a href="../examples/stylecustom.lua.html">stylecustom.lua</a></li>
<li><a href="../examples/visualstudiolinecopy.lua.html">visualstudiolinecopy.lua</a></li>
</ul>

Expand Down Expand Up @@ -1273,7 +1276,7 @@ <h3>Usage:</h3>
</div> <!-- id="main" -->
<div id="about">
<i>Generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.3</a></i>
<i style="float:right;">Last updated 2016-09-09 09:10:16 </i>
<i style="float:right;">Last updated 2016-09-09 11:11:46 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
<footer>
Expand Down
19 changes: 13 additions & 6 deletions docs/classes/Styler.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<div id="navigation">
<br/>
<h1>LuaScript <sub>v0.4.0</sub></h1>
<h1>LuaScript <sub>v0.5.0</sub></h1>

<ul>
<li><a href="../index.html">Index</a></li>
Expand Down Expand Up @@ -53,6 +53,8 @@ <h2>Examples</h2>
<li><a href="../examples/highlightoccurrences.lua.html">highlightoccurrences.lua</a></li>
<li><a href="../examples/selectionaddnext.lua.html">selectionaddnext.lua</a></li>
<li><a href="../examples/sessionmanager.lua.html">sessionmanager.lua</a></li>
<li><a href="../examples/stylecsv.lua.html">stylecsv.lua</a></li>
<li><a href="../examples/stylecustom.lua.html">stylecustom.lua</a></li>
<li><a href="../examples/visualstudiolinecopy.lua.html">visualstudiolinecopy.lua</a></li>
</ul>

Expand All @@ -61,10 +63,15 @@ <h2>Examples</h2>
<div id="content">

<h1>Class <code>Styler</code></h1>
<p>Description</p>
<p>

</p>
<p>Used for lexing and styling a document.</p>
<p> The same functionality can be achieved
using lower-level Scintilla messages, this is merely to provide a higher-level interface.
Make sure to check the examples.
</p>
<h3>See also:</h3>
<ul>
<a href="../classes/Notepad.html#Notepad.AddEventHandler">Notepad.AddEventHandler</a>
</ul>


<h2><a href="#Fields">Fields</a></h2>
Expand Down Expand Up @@ -823,7 +830,7 @@ <h3>Parameters:</h3>
</div> <!-- id="main" -->
<div id="about">
<i>Generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.3</a></i>
<i style="float:right;">Last updated 2016-09-09 09:07:12 </i>
<i style="float:right;">Last updated 2016-09-09 11:11:46 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
<footer>
Expand Down
7 changes: 5 additions & 2 deletions docs/examples/bookmark.lua.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<div id="navigation">
<br/>
<h1>LuaScript <sub>v0.4.0</sub></h1>
<h1>LuaScript <sub>v0.5.0</sub></h1>

<ul>
<li><a href="../index.html">Index</a></li>
Expand All @@ -37,12 +37,15 @@ <h2>Examples</h2>
<li><a href="../examples/highlightoccurrences.lua.html">highlightoccurrences.lua</a></li>
<li><a href="../examples/selectionaddnext.lua.html">selectionaddnext.lua</a></li>
<li><a href="../examples/sessionmanager.lua.html">sessionmanager.lua</a></li>
<li><a href="../examples/stylecsv.lua.html">stylecsv.lua</a></li>
<li><a href="../examples/stylecustom.lua.html">stylecustom.lua</a></li>
<li><a href="../examples/visualstudiolinecopy.lua.html">visualstudiolinecopy.lua</a></li>
</ul>
<h2>Classes</h2>
<ul class="nowrap">
<li><a href="../classes/Editor.html">Editor</a></li>
<li><a href="../classes/Match.html">Match</a></li>
<li><a href="../classes/Styler.html">Styler</a></li>
<li><a href="../classes/Notepad.html">Notepad</a></li>
</ul>
<h2>Topics</h2>
Expand Down Expand Up @@ -72,7 +75,7 @@ <h2>bookmark.lua</h2>
</div> <!-- id="main" -->
<div id="about">
<i>Generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.3</a></i>
<i style="float:right;">Last updated 2016-09-09 09:10:16 </i>
<i style="float:right;">Last updated 2016-09-09 11:11:46 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
<footer>
Expand Down
7 changes: 5 additions & 2 deletions docs/examples/highlightoccurrences.lua.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<div id="navigation">
<br/>
<h1>LuaScript <sub>v0.4.0</sub></h1>
<h1>LuaScript <sub>v0.5.0</sub></h1>

<ul>
<li><a href="../index.html">Index</a></li>
Expand All @@ -37,12 +37,15 @@ <h2>Examples</h2>
<li><strong>highlightoccurrences.lua</strong></li>
<li><a href="../examples/selectionaddnext.lua.html">selectionaddnext.lua</a></li>
<li><a href="../examples/sessionmanager.lua.html">sessionmanager.lua</a></li>
<li><a href="../examples/stylecsv.lua.html">stylecsv.lua</a></li>
<li><a href="../examples/stylecustom.lua.html">stylecustom.lua</a></li>
<li><a href="../examples/visualstudiolinecopy.lua.html">visualstudiolinecopy.lua</a></li>
</ul>
<h2>Classes</h2>
<ul class="nowrap">
<li><a href="../classes/Editor.html">Editor</a></li>
<li><a href="../classes/Match.html">Match</a></li>
<li><a href="../classes/Styler.html">Styler</a></li>
<li><a href="../classes/Notepad.html">Notepad</a></li>
</ul>
<h2>Topics</h2>
Expand Down Expand Up @@ -115,7 +118,7 @@ <h2>highlightoccurrences.lua</h2>
</div> <!-- id="main" -->
<div id="about">
<i>Generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.3</a></i>
<i style="float:right;">Last updated 2016-09-09 09:10:16 </i>
<i style="float:right;">Last updated 2016-09-09 11:11:46 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
<footer>
Expand Down
7 changes: 5 additions & 2 deletions docs/examples/selectionaddnext.lua.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<div id="navigation">
<br/>
<h1>LuaScript <sub>v0.4.0</sub></h1>
<h1>LuaScript <sub>v0.5.0</sub></h1>

<ul>
<li><a href="../index.html">Index</a></li>
Expand All @@ -37,12 +37,15 @@ <h2>Examples</h2>
<li><a href="../examples/highlightoccurrences.lua.html">highlightoccurrences.lua</a></li>
<li><strong>selectionaddnext.lua</strong></li>
<li><a href="../examples/sessionmanager.lua.html">sessionmanager.lua</a></li>
<li><a href="../examples/stylecsv.lua.html">stylecsv.lua</a></li>
<li><a href="../examples/stylecustom.lua.html">stylecustom.lua</a></li>
<li><a href="../examples/visualstudiolinecopy.lua.html">visualstudiolinecopy.lua</a></li>
</ul>
<h2>Classes</h2>
<ul class="nowrap">
<li><a href="../classes/Editor.html">Editor</a></li>
<li><a href="../classes/Match.html">Match</a></li>
<li><a href="../classes/Styler.html">Styler</a></li>
<li><a href="../classes/Notepad.html">Notepad</a></li>
</ul>
<h2>Topics</h2>
Expand Down Expand Up @@ -88,7 +91,7 @@ <h2>selectionaddnext.lua</h2>
</div> <!-- id="main" -->
<div id="about">
<i>Generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.3</a></i>
<i style="float:right;">Last updated 2016-09-09 09:10:16 </i>
<i style="float:right;">Last updated 2016-09-09 11:11:46 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
<footer>
Expand Down
7 changes: 5 additions & 2 deletions docs/examples/sessionmanager.lua.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<div id="navigation">
<br/>
<h1>LuaScript <sub>v0.4.0</sub></h1>
<h1>LuaScript <sub>v0.5.0</sub></h1>

<ul>
<li><a href="../index.html">Index</a></li>
Expand All @@ -37,12 +37,15 @@ <h2>Examples</h2>
<li><a href="../examples/highlightoccurrences.lua.html">highlightoccurrences.lua</a></li>
<li><a href="../examples/selectionaddnext.lua.html">selectionaddnext.lua</a></li>
<li><strong>sessionmanager.lua</strong></li>
<li><a href="../examples/stylecsv.lua.html">stylecsv.lua</a></li>
<li><a href="../examples/stylecustom.lua.html">stylecustom.lua</a></li>
<li><a href="../examples/visualstudiolinecopy.lua.html">visualstudiolinecopy.lua</a></li>
</ul>
<h2>Classes</h2>
<ul class="nowrap">
<li><a href="../classes/Editor.html">Editor</a></li>
<li><a href="../classes/Match.html">Match</a></li>
<li><a href="../classes/Styler.html">Styler</a></li>
<li><a href="../classes/Notepad.html">Notepad</a></li>
</ul>
<h2>Topics</h2>
Expand Down Expand Up @@ -245,7 +248,7 @@ <h2>sessionmanager.lua</h2>
</div> <!-- id="main" -->
<div id="about">
<i>Generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.3</a></i>
<i style="float:right;">Last updated 2016-09-09 09:10:16 </i>
<i style="float:right;">Last updated 2016-09-09 11:11:46 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
<footer>
Expand Down
Loading

0 comments on commit acd52f4

Please sign in to comment.