Skip to content

Commit 3b04a92

Browse files
committed
Merge branch 'release/v1.1.0' into main
2 parents ab14054 + a1299e4 commit 3b04a92

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Contributors: qriouslad
44
Donate link: https://paypal.me/qriouslad
55
Tags: database manager, adminer, mysql, mariadb, sql
66
Requires at least: 4.8
7-
Tested up to: 5.9.3
8-
Stable tag: 1.0.1
7+
Tested up to: 6.0
8+
Stable tag: 1.1.0
99
Requires PHP: 5.6
1010
License: GPLv2 or later
1111
License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -42,6 +42,11 @@ System Dashboard was built with: [WordPress Plugin Boilerplate](https://github.c
4242

4343
## Changelog
4444

45+
### 1.1.0 (2022.05.31)
46+
47+
* Fix text overflow issue in DB structure panel
48+
* Enable plugin updates via [Git Updater](https://github.com/afragen/git-updater)
49+
4550
### 1.0.1 (2022.04.30)
4651

4752
* Fix: deprecated sanitize_url() function

admin/lib/custom.css

+6
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,12 @@ h3#indexes {
105105
background: transparent;
106106
}
107107

108+
#tables .structure {
109+
max-width: 300px;
110+
overflow: hidden;
111+
text-overflow: ellipsis;
112+
}
113+
108114
#content p.links a.active,
109115
#tables a.active.structure,
110116
#tables a.active + a {

database-admin.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@
1616
* Plugin Name: Database Admin
1717
* Plugin URI: https://wordpress.org/plugins/database-admin/
1818
* Description: Securely manage your website's database with a clean and user-friendly interface.
19-
* Version: 1.0.1
19+
* Version: 1.1.0
2020
* Author: Bowo
2121
* Author URI: https://bowo.io
2222
* License: GPL-2.0+
2323
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
2424
* Text Domain: database-admin
2525
* Domain Path: /languages
26+
* GitHub Plugin URI: qriouslad/database-admin
27+
* GitHub Plugin URI: https://github.com/qriouslad/database-admin
2628
*/
2729

2830
// If this file is called directly, abort.
@@ -35,7 +37,7 @@
3537
* Start at version 1.0.0 and use SemVer - https://semver.org
3638
* Rename this for your plugin and update it as you release new versions.
3739
*/
38-
define( 'DATABASE_ADMIN_VERSION', '1.0.1' );
40+
define( 'DATABASE_ADMIN_VERSION', '1.1.0' );
3941

4042
/**
4143
* The code that runs during plugin activation.

0 commit comments

Comments
 (0)