From 7b9f24c98d324b637d35d7caed5cc07166e615cc Mon Sep 17 00:00:00 2001 From: zekinah Date: Sun, 9 Aug 2020 17:09:26 -0700 Subject: [PATCH] Released 1.0.4 version --- README.md | 4 ++-- README.txt | 8 ++++++-- admin/css/pandemic-covid19-admin.css | 4 ++-- includes/class-pandemic-covid19.php | 2 +- pandemic-covid19.php | 4 ++-- 5 files changed, 13 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index c518e89..dad2277 100644 --- a/README.md +++ b/README.md @@ -9,11 +9,11 @@ ![WordPress Plugin Downloads](https://img.shields.io/wordpress/plugin/dm/zone-pandemic-covid-19) ![GitHub](https://img.shields.io/github/license/zekinah/zone-pandemic-covid19) -Tags: covid19, covid-19, corona, status, report +Tags: covid19, covid-19, corona virus, coronavirus, report Requires at least: 3.0.1 Tested up to: 5.5 Requires PHP: 5.6 or higher -Stable tag: 1.0.3 +Stable tag: 1.0.4 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html diff --git a/README.txt b/README.txt index 3e20b4f..4195c0b 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ === Zone Pandemic Covid19 === Contributors: zekinah Donate link: https://www.buymeacoffee.com/zekinah -Tags: covid19, covid-19, corona virus, status, report +Tags: covid19, covid-19, corona virus, coronavirus, report Requires at least: 3.0.1 Tested up to: 5.5 Requires PHP: 5.6 or higher @@ -60,7 +60,7 @@ The plugin is simple to install: = What are the scope of API ? = -The API provides the world global data of Covid19 and updates every 10 minutes. +The API provides the global data of Covid19 cases including active, tested, recovered and deaths. and it all updates every 10 minutes. = The plugin didn't work when Im in Russia? = @@ -85,6 +85,10 @@ The API that we are using on this plugin was blocked in Russian Government Regul 8. Result of the Shortcode for the World Heat Map. == Changelog == += 1.0.4 = +* Fixed minor bugs for showing Single Country +* Fixed minor bugs for showing Single continent + = 1.0.3 = * Added Historical Graph ShortCode * Added World Heat Map Cases ShortCode diff --git a/admin/css/pandemic-covid19-admin.css b/admin/css/pandemic-covid19-admin.css index c76ef4d..b829a3d 100644 --- a/admin/css/pandemic-covid19-admin.css +++ b/admin/css/pandemic-covid19-admin.css @@ -146,8 +146,8 @@ table#tbl-reviewlinks td.url-link { animation: 1s blink ease infinite; } -@keyframes "blink" { - from, to { +@keyframes blink { + 0% { opacity: 0; } 50% { diff --git a/includes/class-pandemic-covid19.php b/includes/class-pandemic-covid19.php index 87063d5..e1a40b0 100644 --- a/includes/class-pandemic-covid19.php +++ b/includes/class-pandemic-covid19.php @@ -75,7 +75,7 @@ public function __construct() { if ( defined( 'PANDEMIC_COVID19_VERSION' ) ) { $this->version = PANDEMIC_COVID19_VERSION; } else { - $this->version = '1.0.3'; + $this->version = '1.0.4'; } $this->plugin_name = 'pandemic-covid19'; diff --git a/pandemic-covid19.php b/pandemic-covid19.php index d16e7cf..f6745bd 100644 --- a/pandemic-covid19.php +++ b/pandemic-covid19.php @@ -16,7 +16,7 @@ * Plugin Name: Zone Pandemic Covid-19 * Plugin URI: https://github.com/zekinah/wp-pandemic-covid19 * Description: This plugin provides shortcode that displays the live recorded data of the covid19 in the whole world. - * Version: 1.0.3 + * Version: 1.0.4 * Author: Zekinah Lecaros * Author URI: zekinahlecaros.com * License: GPL-2.0+ @@ -35,7 +35,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( 'PANDEMIC_COVID19_VERSION', '1.0.0' ); +define( 'PANDEMIC_COVID19_VERSION', '1.0.4' ); /** * The code that runs during plugin activation.