Version Description
- Include missing file: upgrade-notice.php.
Download this release
Release Info
Developer | pderksen |
Plugin | Simple Calendar – Google Calendar Plugin |
Version | 0.7.3.1 |
Comparing to | |
See all releases |
Code changes from version 0.7.3 to 0.7.3.1
- google-calendar-events.php +1 -1
- inc/upgrade-notice.php +31 -0
- readme.txt +3 -0
google-calendar-events.php
CHANGED
@@ -13,7 +13,7 @@
|
|
13 |
* Plugin Name: Google Calendar Events
|
14 |
* Plugin URI: http://philderksen.com/google-calendar-events-version-2/
|
15 |
* Description: Parses Google Calendar feeds and displays the events as a calendar grid or list on a page, post or widget.
|
16 |
-
* Version: 0.7.3
|
17 |
* Author: Phil Derksen
|
18 |
* Author URI: http://philderksen.com
|
19 |
* License: GPL-2.0+
|
13 |
* Plugin Name: Google Calendar Events
|
14 |
* Plugin URI: http://philderksen.com/google-calendar-events-version-2/
|
15 |
* Description: Parses Google Calendar feeds and displays the events as a calendar grid or list on a page, post or widget.
|
16 |
+
* Version: 0.7.3.1
|
17 |
* Author: Phil Derksen
|
18 |
* Author URI: http://philderksen.com
|
19 |
* License: GPL-2.0+
|
inc/upgrade-notice.php
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Show notice after plugin install/activate in admin dashboard until user acknowledges.
|
4 |
+
*
|
5 |
+
* @package PIB
|
6 |
+
* @subpackage Views
|
7 |
+
* @author Phil Derksen <pderksen@gmail.com>, Nick Young <mycorpweb@gmail.com>
|
8 |
+
*/
|
9 |
+
|
10 |
+
// Exit if accessed directly.
|
11 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
12 |
+
exit;
|
13 |
+
}
|
14 |
+
|
15 |
+
?>
|
16 |
+
|
17 |
+
<style>
|
18 |
+
#gce-install-notice .button-primary,
|
19 |
+
#gce-install-notice .button-secondary {
|
20 |
+
margin-left: 15px;
|
21 |
+
line-height: 2;
|
22 |
+
}
|
23 |
+
</style>
|
24 |
+
|
25 |
+
<div id="gce-install-notice" class="updated">
|
26 |
+
<p>
|
27 |
+
<?php _e( 'Major updates are coming to Google Calendar Events on August 23, 2014. ', 'gce' ); ?>
|
28 |
+
<a href="http://philderksen.com/google-calendar-events-version-2/" target="_blank">Read more about the changes.</a>
|
29 |
+
<a href="<?php echo add_query_arg( 'gce-dismiss-install-nag', 1 ); ?>" class="button-secondary"><?php _e( 'Hide this', 'gce' ); ?></a>
|
30 |
+
</p>
|
31 |
+
</div>
|
readme.txt
CHANGED
@@ -49,6 +49,9 @@ You can now start adding feeds. Visit the [plugin homepage](http://www.rhanney.c
|
|
49 |
|
50 |
== Changelog ==
|
51 |
|
|
|
|
|
|
|
52 |
= 0.7.3 =
|
53 |
* Added warning about upcoming version 2.0 release.
|
54 |
* Added option to save settings upon uninstall.
|
49 |
|
50 |
== Changelog ==
|
51 |
|
52 |
+
= 0.7.3.1 =
|
53 |
+
* Include missing file: upgrade-notice.php.
|
54 |
+
|
55 |
= 0.7.3 =
|
56 |
* Added warning about upcoming version 2.0 release.
|
57 |
* Added option to save settings upon uninstall.
|