Skip to content

Commit

Permalink
changes for 0.8.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
antonycourtney committed Apr 18, 2017
1 parent cff48b1 commit 87c8166
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ const usageInfo = [
content: [
'$ tad [[italic]{options}] [underline]{file}.csv',
'$ tad [[italic]{options}] [underline]{file}.tad',
'$ tad [[italic]{options}] sqlite://[underline]{file}/[underline]{table}'
'$ tad [[italic]{options}] sqlite://[underline]{/path/to/sqlite-file}/[underline]{table}'
]
},
{
Expand Down
13 changes: 13 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,19 @@ <h3>Contact</h3>
<div id="relnotes" class="section relnotes-section">
<div class="container">
<h3>Release Notes</h3>
<div class="release-section">
<h4>Tad 0.8.3 - April 17, 2017</h4>
<P>
<h5>New Features</h5>
<ul>
<li>Tad can now be used to explore saved sqlite3 database files. For example, to explore table <code>expenses</code> in sqlite db file <code>/data/accounts.sqlite</code>:
<br>
<pre>
$ tad sqlite:///data/accounts.sqlite/expenses
</pre>
(Note that there are 3 slashes following <code>sqlite:</code>)
</ul>
</div>
<div class="release-section">
<h4>Tad 0.8.2 - April 12, 2017</h4>
<P>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tad",
"productName": "Tad",
"description": "Tabular data viewer",
"version": "0.8.2",
"version": "0.8.3",
"author": "Antony Courtney <antony@antonycourtney.com> (http://www.antonycourtney.com)",
"repository": "https://github.com/antonycourtney/tad",
"dependencies": {
Expand Down
13 changes: 13 additions & 0 deletions src/doc/site/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,19 @@ <h3>Contact</h3>
<div id="relnotes" class="section relnotes-section">
<div class="container">
<h3>Release Notes</h3>
<div class="release-section">
<h4>Tad 0.8.3 - April 17, 2017</h4>
<P>
<h5>New Features</h5>
<ul>
<li>Tad can now be used to explore saved sqlite3 database files. For example, to explore table <code>expenses</code> in sqlite db file <code>/data/accounts.sqlite</code>:
<br>
<pre>
$ tad sqlite:///data/accounts.sqlite/expenses
</pre>
(Note that there are 3 slashes following <code>sqlite:</code>)
</ul>
</div>
<div class="release-section">
<h4>Tad 0.8.2 - April 12, 2017</h4>
<P>
Expand Down

0 comments on commit 87c8166

Please sign in to comment.