Skip to content

Commit 7461f43

Browse files
committed
Pre-release version bump
1 parent 099f23f commit 7461f43

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

data/com.github.alecaddd.sequeler.appdata.xml.in.in

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,17 @@
1111
Easily connect to your local or remote database
1212
</p>
1313
<p>
14-
Store your Database Connections in the built-in library, type and execute SQL commands directly in the App, and do everything you need to do without the necessity of opening the terminal.
14+
Store your Database Connections in the library, connect over SSH tunnel, type and execute SQL commands directly in the app, and do everything you need to do without the necessity of opening the terminal.
1515
</p>
16+
<p>
17+
Supported Databases:
18+
</p>
19+
<ul>
20+
<li>SQLite</li>
21+
<li>MySQL</li>
22+
<li>MariaDB</li>
23+
<li>PostgreSQL</li>
24+
</ul>
1625
<p>
1726
Features Include:
1827
</p>
@@ -21,13 +30,24 @@
2130
<li>View Table structure, content, and relations</li>
2231
<li>Write multiple custom SQL Queries</li>
2332
<li>Switch between light and dark mode</li>
24-
<li>Handy keyboard shortcuts to quit (ctrl+q), create new connection (ctrl+shift+n), multiple instances (ctrl+n)</li>
33+
<li>Handy keyboard shortcuts to quit (ctrl+q), create new connection (ctrl+shift+n), open a new window (ctrl+n)</li>
2534
</ul>
2635
</description>
2736
<provides>
2837
<binary>@appid@</binary>
2938
</provides>
3039
<releases>
40+
<release version="0.6.8" date="2019-03-19">
41+
<description>
42+
<p>Bug fixes and improvements</p>
43+
<ul>
44+
<li>Properly handle EXPLAIN SQL statement.</li>
45+
<li>Properly handle querying capitlized PostgreSQL tables.</li>
46+
<li>Improved async methods for internal views.</li>
47+
<li>Updated translations.</li>
48+
</ul>
49+
</description>
50+
</release>
3151
<release version="0.6.7" date="2019-01-02">
3252
<description>
3353
<p>Critical bug fix!</p>

debian/changelog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
com.github.alecaddd.sequeler (0.6.8) xenial; urgency=medium
2+
3+
* Properly handle EXPLAIN SQL statement.
4+
* Properly handle querying capitlized PostgreSQL tables.
5+
* Improved async methods for internal views.
6+
* Updated translations.
7+
* Bug fixes and other improvements.
8+
9+
-- Alessandro Castellani <[email protected]> Tue, 19 Mar 2019 21:00:00 -0700
10+
111
com.github.alecaddd.sequeler (0.6.7) xenial; urgency=high
212

313
* CRITICAL: Fixes missing GSettings Schema, restore lost connections.

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# project name and programming language
22
project('com.github.alecaddd.sequeler', 'vala', 'c',
3-
version: '0.6.7')
3+
version: '0.6.8')
44

55
cc = meson.get_compiler('c')
66
m_dep = cc.find_library('m', required: true)

0 commit comments

Comments
 (0)