Skip to content

Commit

Permalink
Merge branch 'release/v1.1.0' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
qriouslad committed May 31, 2022
2 parents ab14054 + a1299e4 commit 3b04a92
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Contributors: qriouslad
Donate link: https://paypal.me/qriouslad
Tags: database manager, adminer, mysql, mariadb, sql
Requires at least: 4.8
Tested up to: 5.9.3
Stable tag: 1.0.1
Tested up to: 6.0
Stable tag: 1.1.0
Requires PHP: 5.6
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -42,6 +42,11 @@ System Dashboard was built with: [WordPress Plugin Boilerplate](https://github.c

## Changelog

### 1.1.0 (2022.05.31)

* Fix text overflow issue in DB structure panel
* Enable plugin updates via [Git Updater](https://github.com/afragen/git-updater)

### 1.0.1 (2022.04.30)

* Fix: deprecated sanitize_url() function
Expand Down
6 changes: 6 additions & 0 deletions admin/lib/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@ h3#indexes {
background: transparent;
}

#tables .structure {
max-width: 300px;
overflow: hidden;
text-overflow: ellipsis;
}

#content p.links a.active,
#tables a.active.structure,
#tables a.active + a {
Expand Down
6 changes: 4 additions & 2 deletions database-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@
* Plugin Name: Database Admin
* Plugin URI: https://wordpress.org/plugins/database-admin/
* Description: Securely manage your website's database with a clean and user-friendly interface.
* Version: 1.0.1
* Version: 1.1.0
* Author: Bowo
* Author URI: https://bowo.io
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: database-admin
* Domain Path: /languages
* GitHub Plugin URI: qriouslad/database-admin
* GitHub Plugin URI: https://github.com/qriouslad/database-admin
*/

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

/**
* The code that runs during plugin activation.
Expand Down

0 comments on commit 3b04a92

Please sign in to comment.