Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
* Fix CSS for admin form.
* Fix JS for front-end.
  • Loading branch information
ve3 committed Mar 7, 2019
1 parent 7c3474c commit 19a9aad
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion App/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class App
*/
private function checkRequirement()
{
$wordpress_required_version = '4.0';
$wordpress_required_version = '4.6';
$php_required_version = '5.5';
$php_version = (defined('PHP_VERSION') ? PHP_VERSION : (function_exists('phpversion') ? phpversion() : '4'));

Expand Down
2 changes: 1 addition & 1 deletion assets/css/admin/rd-events.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
width: 160px;
}
.rd-events-time-field {
width: 80px;
width: 110px;
}


Expand Down
7 changes: 7 additions & 0 deletions assets/js/front/rd-events-map.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ function rdEventsInitMap(map_id) {
var rdevents_default_location_bangkok = {lat: 13.736717, lng: 100.523186};
var rdevents_map_html = document.getElementById(map_id);
var rdevents_map_zoom = 12;

if (typeof(rdevents_map_html) === 'undefined' || rdevents_map_html === null || rdevents_map_html === '') {
// if no map showup, no more works here.
console.log('no maps here.');
return ;
}

if (
typeof(rdevents_map_html) !== 'undefined' &&
typeof(rdevents_map_html.dataset) !== 'undefined' &&
Expand Down
2 changes: 1 addition & 1 deletion rd-events.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Rundiz Events
* Plugin URI: https://rundiz.com/?p=319
* Description: Manage your events and display in the calendar or list.
* Version: 1.0
* Version: 1.0.1
* Author: Vee Winch
* Author URI: http://rundiz.com
* License: MIT
Expand Down
10 changes: 8 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: okvee
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9HQE4GVV4KTZE
Tags: events, meeting, plans, calendar
Requires at least: 4.6.0
Tested up to: 5.0.3
Stable tag: 1.0
Tested up to: 5.1
Stable tag: 1.0.1
Requires PHP: 5.5
License: MIT
License URI: http://opensource.org/licenses/MIT
Expand Down Expand Up @@ -52,6 +52,12 @@ Please ask your question in support section and add mention to @okvee.

== Changelog ==

= 1.0.1 =
2019-03-07

* Fix CSS for admin form.
* Fix JS for front-end.

= 1.0 =
2019-01-23

Expand Down

0 comments on commit 19a9aad

Please sign in to comment.