Skip to content

Commit 2742dd3

Browse files
committed
blog - removed paging
1 parent 6284e22 commit 2742dd3

26 files changed

+52
-3
lines changed

content/blog/2021-02-01-version-3-9-5.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ categories: development
88

99
Version 3.9.5 is out. It contains many bug fixes and UI improvements. The biggest new feature is form view on table data.
1010

11+
<!--more-->
12+
1113
## Form view
1214
Form view is handy, when viewing and editing table with many columns. You can switch between normal table and and form view any time. Filters and expanded columns are persistent among views. You can also expand foreign key references in form views.
1315

content/blog/2021-02-15-dbgate-in-npm-repository.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ DbGate is now available as [NPM package](https://www.npmjs.com/package/dbgate) .
1010

1111
Other useful NPM package is [dbgate-api](https://www.npmjs.com/package/dbgate-api), which can be used for running scripts exported from DbGate, eg. exporting table data to CSV or Excel.
1212

13+
<!--more-->
14+
1315
## SSH tunnel
1416
Other big improvement of DbGate is SSH tunneling feature. It allows connecting to database eg. on production server, which is not exposed to public internet.
1517

content/blog/2021-04-01-version-4-0-0.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ categories: development
88

99
Version 4.0.0 is out. The biggest change is change of UI framework. We have got rid of React and replaced it with excellent [Svelte](https://svelte.dev) framework. This change leads to faster UI, with smaller memory consumption. Also it allows to implement Command palette, which would bery very defficult with React.
1010

11+
<!--more-->
12+
1113
## SQL Generator
1214
SQL Generator allows to create SQL scripts from database. It has following options:
1315
* Tables

content/blog/2021-04-08-react-to-svelte.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ Recently I have rewritten a medium sized app in React (~250 React components) in
99

1010
This is not tutorial of Svelte for React programmers, if you don't know Svelte yet, the best starting point is official [Svelte tutorial](https://svelte.dev/tutorial/). This article contains lot of links to Svelte tutorials, instead of explaining Svelte principles.
1111

12+
<!--more-->
13+
14+
1215
## CSS
1316

1417
Svelte supports CSS directly in very nice and clean way. In React app, I have used [styled components](https://styled-components.com/).

content/blog/2021-04-12-mongodb-support.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ date: 2021-04-12 17:00:00
77

88
We are proud to announce new version 4.1.0 with first NoSQL DB supported, MongoDB. Though DbGate was primarily designed to work with fixed schema databases, the architecture was designed with document databases in the mind.
99

10+
<!--more-->
11+
1012
## MongoDB support
1113
Almost all operations, which are possible in DbGate with SQL databases, are implemented also with MongoDB:
1214

content/blog/2021-04-26-hacker-news-publish.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ On thursday 23, DbGate was published on [Hacker News](https://news.ycombinator.c
99

1010
The most repeated feature request was supporting SQLite database, so this would be main feature of next release.
1111

12+
<!--more-->
13+
1214
## What's new in version 4.1.10
1315
- ADDED: Default database option in connectin settings (allows connecting to aws redshift)
1416
- FIX: Popup menu placement on smaller displays

content/blog/2021-05-17-sqlite-version-4.2.0.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ SQLite driver supports or operations supported on other drivers.
1212

1313
Also now is officially supported Amazon Redshift and CockroachDB.
1414

15+
<!--more-->
16+
1517
## What's new in version 4.2.0
1618
- ADDED: Support of SQLite database
1719
- ADDED: Support of Amazon Redshift database

content/blog/2021-06-07-4.2.4.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ This release brings lot of smaller improvements and important bug fixes.
99

1010
Thanks to new integration tests, many problems, specific to one database, were discovered and fixed. Largest improvements are in PostgreSQL support, where also materialized views are now supported.
1111

12+
<!--more-->
13+
1214
New widget is now available - **query history**. You can browse all executed queries and search in it's content.
1315

1416
## Changelog after 4.2.0 version

content/blog/2021-09-20-4.3.0.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ date: 2021-09-20 16:00:00
88
This release brings schema editor. You can edit table schema, define primary keys, foreign keys, indexes and unique constraints.
99
When alter operation is not directly supported by SQL engine (eg. drop constraint on SQLite), DbGate generates table recreate script.
1010

11+
<!--more-->
12+
1113
Table modifications with recreates are not recomended to run od production databases.
1214

1315
## Changelog after 4.2.4 version

content/blog/2021-11-15-4.4.0.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ date: 2021-09-20 16:00:00
77

88
The main highlight of this release in database schema compare tool. It can compare tables with keys, connstraints and indexes, and also views, stored procedures and functions. It works on all supported database engines (MySQL, SQL Server, PostgreSQL, SQLite, MariaDB, CockroachDB, Redshift). Database compare tool is super fast, compare to other DB compare tools, as it uses already cached DB models.
99

10+
<!--more-->
11+
1012
![screenshot](/screenshots/dbcompare.png)
1113

1214
## DB Deploy - experimental

0 commit comments

Comments
 (0)