|
| 1 | +[[ define "changelog" ]] |
| 2 | +<!doctype html> |
| 3 | +<html> |
| 4 | +<head> |
| 5 | + <meta charset="UTF-8"> |
| 6 | + <title>DBHub.io API Changelog</title> |
| 7 | + <link href="//netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> |
| 8 | +</head> |
| 9 | +<body> |
| 10 | +<style> |
| 11 | + * { |
| 12 | + font-size: large; |
| 13 | + } |
| 14 | + .apiheading { |
| 15 | + font-size: large; |
| 16 | + font-weight: bold; |
| 17 | + } |
| 18 | + .heading { |
| 19 | + font-size: large; |
| 20 | + font-weight: bold; |
| 21 | + } |
| 22 | + .indent { |
| 23 | + margin: 5px; |
| 24 | + } |
| 25 | + .pad { |
| 26 | + padding-top: 10px; |
| 27 | + } |
| 28 | + .paramname { |
| 29 | + font-style: italic; |
| 30 | + } |
| 31 | + pre { |
| 32 | + margin-top: 5px; |
| 33 | + } |
| 34 | + .version { |
| 35 | + margin-bottom: 10px; |
| 36 | + font-family: monospace; |
| 37 | + font-style: italic; |
| 38 | + } |
| 39 | +</style> |
| 40 | +<div style="margin-left: 2%; margin-right: 2%; padding-left: 2%; padding-right: 2%;"> |
| 41 | + <div class="row"> |
| 42 | + <div class="col-md-12"><a href="https://dbhub.io"><h1>DBHub API Changelog</h1></a></div> |
| 43 | + </div> |
| 44 | + <div class="row"> |
| 45 | + <div class="col-md-12 version">[[ template "version" . ]] (<a href="/" style="color: #333; font-weight: bold">API</a>)</div> |
| 46 | + </div> |
| 47 | + |
| 48 | + <div class="panel panel-primary"> |
| 49 | + <div class="panel-heading">Version 0.3 - Current release</div> |
| 50 | + <div class="panel-body" style="padding: 0"> |
| 51 | + <div class="col-md-1" style="font-weight: bold; padding-top: 1%">2023-03-06</div> |
| 52 | + <div class="col-md-11"> |
| 53 | + <ul class="list-group" style="padding-left: 1%; margin: 1%"> |
| 54 | + <li class="list-group-item"><a href="/#execute" class="apiheading">Execute()</a> - The return data now includes the number of rows changed</li> |
| 55 | + </ul> |
| 56 | + </div> |
| 57 | + </div> |
| 58 | + </div> |
| 59 | + |
| 60 | + <div class="panel panel-info"> |
| 61 | + <div class="panel-heading">Version 0.2 - Adds initial support for live databases</div> |
| 62 | + <div class="panel-body" style="padding: 0"> |
| 63 | + <div class="col-md-1" style="font-weight: bold; padding-top: 1%">2023-03-20</div> |
| 64 | + <div class="col-md-11"> |
| 65 | + <ul class="list-group" style="padding-left: 1%; margin: 1%"> |
| 66 | + <li class="list-group-item"><a href="/#databases" class="apiheading">Databases()</a> - Added the optional 'live' request parameter, to return the list of Live databases in the user account</li> |
| 67 | + <li class="list-group-item"><a href="/#execute" class="apiheading">Execute()</a> - New function, allows executing a SQL statement on a live database</li> |
| 68 | + <li class="list-group-item"><a href="/#upload" class="apiheading">Upload()</a> - Added the optional 'live' request parameter, to specify the upload is a live database rather than a standard database</li> |
| 69 | + </ul> |
| 70 | + </div> |
| 71 | + </div> |
| 72 | + </div> |
| 73 | + |
| 74 | + <div class="panel panel-info"> |
| 75 | + <div class="panel-heading">Version 0.1 - First release</div> |
| 76 | + <div class="panel-body" style="padding: 0"> |
| 77 | + <div class="col-md-1" style="font-weight: bold; padding-top: 1%">2020-08-14</div> |
| 78 | + <div class="col-md-11"> |
| 79 | + <ul class="list-group" style="padding-left: 1%; margin: 1%"> |
| 80 | + <li class="list-group-item">Only supports standard databases</li> |
| 81 | + </ul> |
| 82 | + </div> |
| 83 | + </div> |
| 84 | + </div> |
| 85 | + |
| 86 | +</div> |
| 87 | +<script> |
| 88 | + (function(f, a, t, h, o, m){ |
| 89 | + a[h]=a[h]||function(){ |
| 90 | + (a[h].q=a[h].q||[]).push(arguments) |
| 91 | + }; |
| 92 | + o=f.createElement('script'), |
| 93 | + m=f.getElementsByTagName('script')[0]; |
| 94 | + o.async=1; o.src=t; o.id='fathom-script'; |
| 95 | + m.parentNode.insertBefore(o,m) |
| 96 | + })(document, window, '//stats.sqlitebrowser.org/tracker.js', 'fathom'); |
| 97 | + fathom('set', 'siteId', 'XTAOE'); |
| 98 | + fathom('trackPageview'); |
| 99 | +</script> |
| 100 | +</body> |
| 101 | +</html> |
| 102 | +[[ end ]] |
0 commit comments