From 70fb5d84e069f41ae722dd1ac70700c24109c40c Mon Sep 17 00:00:00 2001 From: Bowo Date: Tue, 31 May 2022 18:01:42 +0700 Subject: [PATCH 1/3] Add Github updater header --- database-admin.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/database-admin.php b/database-admin.php index b4b53e5..971d287 100644 --- a/database-admin.php +++ b/database-admin.php @@ -23,6 +23,8 @@ * 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. From b9f2521f0b5be3d7c0c6da02f37350213cb87ce1 Mon Sep 17 00:00:00 2001 From: Bowo Date: Tue, 31 May 2022 18:01:58 +0700 Subject: [PATCH 2/3] Fix db structure panel overlow issue --- admin/lib/custom.css | 6 ++++++ 1 file changed, 6 insertions(+) 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 { From a1299e45308565ef1575a6d2af9d21eaf999ae3e Mon Sep 17 00:00:00 2001 From: Bowo Date: Tue, 31 May 2022 18:04:40 +0700 Subject: [PATCH 3/3] v1.1.0 release --- README.md | 9 +++++++-- database-admin.php | 4 ++-- 2 files changed, 9 insertions(+), 4 deletions(-) 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/database-admin.php b/database-admin.php index 971d287..fab770e 100644 --- a/database-admin.php +++ b/database-admin.php @@ -16,7 +16,7 @@ * 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+ @@ -37,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.