diff --git a/README.md b/README.md index 02a7341..6e11c4a 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 diff --git a/admin/lib/custom.css b/admin/lib/custom.css index 4dc6896..32d3cee 100644 --- a/admin/lib/custom.css +++ b/admin/lib/custom.css @@ -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 { diff --git a/database-admin.php b/database-admin.php index b4b53e5..fab770e 100644 --- a/database-admin.php +++ b/database-admin.php @@ -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. @@ -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.