Skip to content

Commit

Permalink
Released 1.0.4 version
Browse files Browse the repository at this point in the history
  • Loading branch information
zekinah committed Aug 10, 2020
1 parent 7a34089 commit 7b9f24c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 6 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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? =

Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions admin/css/pandemic-covid19-admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -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% {
Expand Down
2 changes: 1 addition & 1 deletion includes/class-pandemic-covid19.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
4 changes: 2 additions & 2 deletions pandemic-covid19.php
Original file line number Diff line number Diff line change
Expand Up @@ -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+
Expand All @@ -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.
Expand Down

0 comments on commit 7b9f24c

Please sign in to comment.