Version Description
- Small UI tweaks
- Renamed to EZP Maintenance Mode
- Changed references to Snap Creek Software
Download this release
Release Info
Developer | bobriley |
Plugin | EZP Maintenance Mode |
Version | 1.0.0 |
Comparing to | |
See all releases |
Code changes from version 0.6.7 to 1.0.0
- classes/class-easy-pie-mm-constants.php +9 -8
- classes/class-easy-pie-mm-utility.php +6 -6
- classes/class-easy-pie-mm.php +8 -8
- classes/class-easy-pie-plugin-base.php +6 -6
- classes/class-easy-pie-utility.php +6 -6
- easy-pie-maintenance-mode.php +9 -9
- js/functions.js +4 -4
- languages/easy-pie-maintenance-mode.mo +0 -0
- languages/easy-pie-maintenance-mode.po +47 -49
- mini-themes/plain/index.html +2 -2
- mini-themes/plain/manifest.json +5 -5
- mini-themes/sawhorse-black/index.html +3 -3
- mini-themes/sawhorse-black/manifest.json +5 -5
- mini-themes/sawhorse-yellow/index.html +3 -3
- mini-themes/sawhorse-yellow/manifest.json +4 -4
- mini-themes/temporarily-closed/index.html +2 -2
- mini-themes/temporarily-closed/manifest.json +5 -5
- pages/page-options.php +5 -17
- readme.txt +16 -18
classes/class-easy-pie-mm-constants.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
|
5 |
-
Copyright (C)
|
6 |
-
website:
|
7 |
|
8 |
-
|
9 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
10 |
St, Fifth Floor, Boston, MA 02110, USA
|
11 |
|
@@ -24,18 +24,19 @@
|
|
24 |
if (!class_exists('Easy_Pie_MM_Constants')) {
|
25 |
|
26 |
/**
|
27 |
-
* Constants for
|
28 |
*
|
29 |
-
* @author
|
30 |
* @copyright 2013 Synthetic Thought LLC
|
31 |
*/
|
32 |
-
class Easy_Pie_MM_Constants
|
|
|
33 |
//const OPTIONS_GROUP_NAME = 'easy-pie-mm-options-group';
|
34 |
|
35 |
const OPTION_NAME = 'easy-pie-mm-options';
|
36 |
const MAIN_PAGE_KEY = 'easy-pie-mm-main-page';
|
37 |
const PLUGIN_SLUG = 'easy-pie-maintenance-mode';
|
38 |
-
const PLUGIN_VERSION = "0.
|
39 |
|
40 |
/* Pseudo constants */
|
41 |
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
EZP Maintenance Mode Plugin
|
5 |
+
Copyright (C) 2016, Snap Creek LLC
|
6 |
+
website: snapcreek.com contact: support@snapcreek.com
|
7 |
|
8 |
+
EZP Maintenance Mode Plugin is distributed under the GNU General Public License, Version 3,
|
9 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
10 |
St, Fifth Floor, Boston, MA 02110, USA
|
11 |
|
24 |
if (!class_exists('Easy_Pie_MM_Constants')) {
|
25 |
|
26 |
/**
|
27 |
+
* Constants for EZP Maintenance Mode Plugin
|
28 |
*
|
29 |
+
* @author Snap Creek Software <support@snapcreek.com>
|
30 |
* @copyright 2013 Synthetic Thought LLC
|
31 |
*/
|
32 |
+
class Easy_Pie_MM_Constants
|
33 |
+
{
|
34 |
//const OPTIONS_GROUP_NAME = 'easy-pie-mm-options-group';
|
35 |
|
36 |
const OPTION_NAME = 'easy-pie-mm-options';
|
37 |
const MAIN_PAGE_KEY = 'easy-pie-mm-main-page';
|
38 |
const PLUGIN_SLUG = 'easy-pie-maintenance-mode';
|
39 |
+
const PLUGIN_VERSION = "1.0.0"; // RSR Version
|
40 |
|
41 |
/* Pseudo constants */
|
42 |
|
classes/class-easy-pie-mm-utility.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
|
5 |
-
Copyright (C)
|
6 |
-
website:
|
7 |
|
8 |
-
|
9 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
10 |
St, Fifth Floor, Boston, MA 02110, USA
|
11 |
|
@@ -26,9 +26,9 @@ require_once("class-easy-pie-mm-constants.php");
|
|
26 |
if (!class_exists('Easy_Pie_MM_Utility')) {
|
27 |
|
28 |
/**
|
29 |
-
* Utility methods for
|
30 |
*
|
31 |
-
* @author
|
32 |
* @copyright 2013 Synthetic Thought LLC
|
33 |
*/
|
34 |
class Easy_Pie_MM_Utility {
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
EZP Maintenance Mode Plugin
|
5 |
+
Copyright (C) 2016, Snap Creek LLC
|
6 |
+
website: snapcreek.com contact: support@snapcreek.com
|
7 |
|
8 |
+
EZP Maintenance Mode Plugin is distributed under the GNU General Public License, Version 3,
|
9 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
10 |
St, Fifth Floor, Boston, MA 02110, USA
|
11 |
|
26 |
if (!class_exists('Easy_Pie_MM_Utility')) {
|
27 |
|
28 |
/**
|
29 |
+
* Utility methods for EZP Maintenance Mode Plugin
|
30 |
*
|
31 |
+
* @author Snap Creek Software <support@snapcreek.com>
|
32 |
* @copyright 2013 Synthetic Thought LLC
|
33 |
*/
|
34 |
class Easy_Pie_MM_Utility {
|
classes/class-easy-pie-mm.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
|
4 |
-
Copyright (C)
|
5 |
-
website:
|
6 |
|
7 |
-
|
8 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
9 |
St, Fifth Floor, Boston, MA 02110, USA
|
10 |
|
@@ -28,9 +28,9 @@ require_once("class-easy-pie-mm-utility.php");
|
|
28 |
if (!class_exists('Easy_Pie_MM')) {
|
29 |
|
30 |
/**
|
31 |
-
* Main class of
|
32 |
*
|
33 |
-
* @author
|
34 |
* @copyright 2013 Synthetic Thought LLC
|
35 |
*/
|
36 |
class Easy_Pie_MM extends Easy_Pie_Plugin_Base {
|
@@ -546,8 +546,8 @@ if (!class_exists('Easy_Pie_MM')) {
|
|
546 |
public function add_to_admin_menu() {
|
547 |
|
548 |
// RSR TODO: Localize main page title and menu entry
|
549 |
-
//$page_hook_suffix = add_options_page("
|
550 |
-
$page_hook_suffix = add_options_page("
|
551 |
|
552 |
add_action('admin_print_scripts-' . $page_hook_suffix, array($this, 'enqueue_scripts'));
|
553 |
|
1 |
<?php
|
2 |
/*
|
3 |
+
EZP Maintenance Mode Plugin
|
4 |
+
Copyright (C) 2016, Snap Creek LLC
|
5 |
+
website: snapcreek.com contact: support@snapcreek.com
|
6 |
|
7 |
+
EZP Maintenance Mode Plugin is distributed under the GNU General Public License, Version 3,
|
8 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
9 |
St, Fifth Floor, Boston, MA 02110, USA
|
10 |
|
28 |
if (!class_exists('Easy_Pie_MM')) {
|
29 |
|
30 |
/**
|
31 |
+
* Main class of EZP Maintenance Mode Plugin
|
32 |
*
|
33 |
+
* @author Snap Creek Software <support@snapcreek.com>
|
34 |
* @copyright 2013 Synthetic Thought LLC
|
35 |
*/
|
36 |
class Easy_Pie_MM extends Easy_Pie_Plugin_Base {
|
546 |
public function add_to_admin_menu() {
|
547 |
|
548 |
// RSR TODO: Localize main page title and menu entry
|
549 |
+
//$page_hook_suffix = add_options_page("EZP Maintenance Mode", "Maintenance Mode", "manage_options", Easy_Pie_MM_Constants::MAIN_PAGE_KEY, array($this, 'display_options_page'));
|
550 |
+
$page_hook_suffix = add_options_page("EZP Maintenance Mode", "Maintenance Mode", "manage_options", Easy_Pie_MM_Constants::PLUGIN_SLUG, array($this, 'display_options_page'));
|
551 |
|
552 |
add_action('admin_print_scripts-' . $page_hook_suffix, array($this, 'enqueue_scripts'));
|
553 |
|
classes/class-easy-pie-plugin-base.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
|
5 |
-
Copyright (C)
|
6 |
-
website:
|
7 |
|
8 |
-
|
9 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
10 |
St, Fifth Floor, Boston, MA 02110, USA
|
11 |
|
@@ -24,9 +24,9 @@
|
|
24 |
if (!class_exists('Easy_Pie_Plugin_Base')) {
|
25 |
|
26 |
/**
|
27 |
-
* Base class of
|
28 |
*
|
29 |
-
* @author
|
30 |
* @copyright 2013 Synthetic Thought LLC
|
31 |
*/
|
32 |
class Easy_Pie_Plugin_Base {
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
EZP Maintenance Mode Plugin
|
5 |
+
Copyright (C) 2016, Snap Creek LLC
|
6 |
+
website: snapcreek.com contact: support@snapcreek.com
|
7 |
|
8 |
+
EZP Maintenance Mode Plugin is distributed under the GNU General Public License, Version 3,
|
9 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
10 |
St, Fifth Floor, Boston, MA 02110, USA
|
11 |
|
24 |
if (!class_exists('Easy_Pie_Plugin_Base')) {
|
25 |
|
26 |
/**
|
27 |
+
* Base class of EZP plugins
|
28 |
*
|
29 |
+
* @author Snap Creek Software <support@snapcreek.com>
|
30 |
* @copyright 2013 Synthetic Thought LLC
|
31 |
*/
|
32 |
class Easy_Pie_Plugin_Base {
|
classes/class-easy-pie-utility.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
|
5 |
-
Copyright (C)
|
6 |
-
website:
|
7 |
|
8 |
-
|
9 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
10 |
St, Fifth Floor, Boston, MA 02110, USA
|
11 |
|
@@ -24,9 +24,9 @@
|
|
24 |
if (!class_exists('Easy_Pie_Utility')) {
|
25 |
|
26 |
/**
|
27 |
-
* Utility class for
|
28 |
*
|
29 |
-
* @author
|
30 |
* @copyright 2013 Synthetic Thought LLC
|
31 |
*/
|
32 |
class Easy_Pie_Utility {
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
EZP Maintenance Mode Plugin
|
5 |
+
Copyright (C) 2016, Snap Creek LLC
|
6 |
+
website: snapcreek.com contact: support@snapcreek.com
|
7 |
|
8 |
+
EZP Maintenance Mode Plugin is distributed under the GNU General Public License, Version 3,
|
9 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
10 |
St, Fifth Floor, Boston, MA 02110, USA
|
11 |
|
24 |
if (!class_exists('Easy_Pie_Utility')) {
|
25 |
|
26 |
/**
|
27 |
+
* Utility class for EZP plugins
|
28 |
*
|
29 |
+
* @author Snap Creek Software <support@snapcreek.com>
|
30 |
* @copyright 2013 Synthetic Thought LLC
|
31 |
*/
|
32 |
class Easy_Pie_Utility {
|
easy-pie-maintenance-mode.php
CHANGED
@@ -1,21 +1,21 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Plugin Name:
|
4 |
-
Plugin URI:
|
5 |
Description: Lets people know that your site is temporarily down.
|
6 |
-
Version: 0.
|
7 |
-
Author:
|
8 |
-
Author URI:
|
9 |
Text Domain: easy-pie-maintenance-mode
|
10 |
License: GPL v3
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
-
|
15 |
-
Copyright (C)
|
16 |
-
website:
|
17 |
|
18 |
-
|
19 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
20 |
St, Fifth Floor, Boston, MA 02110, USA
|
21 |
|
1 |
<?php
|
2 |
/*
|
3 |
+
Plugin Name: EZP Maintenance Mode
|
4 |
+
Plugin URI: https://snapcreek.com/ezp-coming-soon/docs/faq-maintenance-mode/
|
5 |
Description: Lets people know that your site is temporarily down.
|
6 |
+
Version: 1.0.0
|
7 |
+
Author: Snap Creek Software
|
8 |
+
Author URI: https://snapcreek.com
|
9 |
Text Domain: easy-pie-maintenance-mode
|
10 |
License: GPL v3
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
+
EZP Maintenance Mode Plugin
|
15 |
+
Copyright (C) 2016, Snap Creek LLC
|
16 |
+
website: snapcreek.com contact: support@snapcreek.com
|
17 |
|
18 |
+
EZP Maintenance Mode Plugin is distributed under the GNU General Public License, Version 3,
|
19 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
20 |
St, Fifth Floor, Boston, MA 02110, USA
|
21 |
|
js/functions.js
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
/*
|
2 |
-
|
3 |
-
Copyright (C)
|
4 |
-
website:
|
5 |
|
6 |
-
|
7 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
8 |
St, Fifth Floor, Boston, MA 02110, USA
|
9 |
|
1 |
/*
|
2 |
+
EZP Maintenance Mode Plugin
|
3 |
+
Copyright (C) 2016, Snap Creek LLC
|
4 |
+
website: snapcreek.com contact: support@snapcreek.com
|
5 |
|
6 |
+
EZP Maintenance Mode Plugin is distributed under the GNU General Public License, Version 3,
|
7 |
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
8 |
St, Fifth Floor, Boston, MA 02110, USA
|
9 |
|
languages/easy-pie-maintenance-mode.mo
CHANGED
Binary file
|
languages/easy-pie-maintenance-mode.po
CHANGED
@@ -1,132 +1,130 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
-
"Last-Translator:
|
7 |
-
"Language-Team:
|
8 |
-
"Language:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
-
"X-Poedit-Basepath:
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Poedit-SearchPath-0:
|
17 |
-
"pie-maintenance-mode\n"
|
18 |
|
19 |
-
#:
|
20 |
msgid "problem reading manifest in "
|
21 |
msgstr "Logo"
|
22 |
|
23 |
-
#:
|
24 |
msgid "Maintenance Mode is On"
|
25 |
msgstr "Maintenance Mode is On"
|
26 |
|
27 |
-
#:
|
28 |
msgid "Problem reading template "
|
29 |
msgstr "Problem reading template "
|
30 |
|
31 |
-
#:
|
32 |
msgid "Tried to create "
|
33 |
msgstr "Tried to create "
|
34 |
|
35 |
-
#:
|
36 |
msgid "Enabled"
|
37 |
msgstr "Enabled"
|
38 |
|
39 |
-
#:
|
40 |
msgid "Visuals"
|
41 |
msgstr "Visuals"
|
42 |
|
43 |
-
#:
|
44 |
msgid "Mini-theme"
|
45 |
msgstr "Mini-theme"
|
46 |
|
47 |
-
#:
|
48 |
msgid "Fields"
|
49 |
msgstr "Fields"
|
50 |
|
51 |
-
#:
|
52 |
msgid "Title"
|
53 |
msgstr "Title"
|
54 |
|
55 |
-
#:
|
56 |
msgid "Header"
|
57 |
msgstr "Header"
|
58 |
|
59 |
-
#:
|
60 |
msgid "Headline"
|
61 |
msgstr "Headline"
|
62 |
|
63 |
-
#:
|
64 |
msgid "Message"
|
65 |
msgstr "Message"
|
66 |
|
67 |
-
#:
|
68 |
msgid "Logo"
|
69 |
msgstr "Logo"
|
70 |
|
71 |
-
#:
|
72 |
msgid "HTML tags are allowed. e.g. Add <br/> for break."
|
73 |
msgstr "HTML tags are allowed. e.g. Add <br/> for break."
|
74 |
|
75 |
-
#:
|
76 |
msgid "All fields are optional"
|
77 |
msgstr "All fields are optional"
|
78 |
|
79 |
-
#:
|
80 |
msgid "User Defined:"
|
81 |
msgstr "User Defined:"
|
82 |
|
83 |
-
#:
|
84 |
msgid "by"
|
85 |
msgstr "by"
|
86 |
|
87 |
-
#:
|
88 |
msgid "If you have a caching plugin, be sure to clear the cache!"
|
89 |
msgstr "If you have a caching plugin, be sure to clear the cache!"
|
90 |
|
91 |
-
#:
|
92 |
msgid "Advanced Settings"
|
93 |
msgstr "Advanced Settings"
|
94 |
|
95 |
-
#:
|
96 |
msgid "Custom CSS"
|
97 |
msgstr "Custom CSS"
|
98 |
|
99 |
-
#:
|
100 |
msgid "Page styling varies greatly. "
|
101 |
msgstr "Page styling varies greatly. "
|
102 |
|
103 |
-
#:
|
104 |
msgid "Update custom CSS when switching mini-themes."
|
105 |
msgstr "Update custom CSS when switching mini-themes."
|
106 |
|
107 |
-
#:
|
108 |
-
msgid "How to create a mini-theme for yourself or the community"
|
109 |
-
msgstr "How to create a mini-theme for yourself or the community"
|
110 |
-
|
111 |
-
#: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/pages/page-options.php:54
|
112 |
msgid "Plugin FAQ"
|
113 |
msgstr "Plugin FAQ"
|
114 |
|
115 |
-
#:
|
116 |
-
msgid "
|
117 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
|
119 |
-
|
120 |
-
|
121 |
-
msgstr "Report Bug"
|
122 |
|
123 |
-
|
124 |
-
|
125 |
-
msgstr "Write Review"
|
126 |
|
127 |
-
|
128 |
-
|
129 |
-
msgstr "Contact Bob"
|
130 |
|
131 |
#~ msgid "Comment or question?"
|
132 |
#~ msgstr "Comment or question?"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: EZP Maintenance Mode\n"
|
4 |
+
"POT-Creation-Date: 2016-09-14 10:06-0700\n"
|
5 |
+
"PO-Revision-Date: 2016-09-14 10:06-0700\n"
|
6 |
+
"Last-Translator: Snap Creek Software <support@snapcreek.com>\n"
|
7 |
+
"Language-Team: EZP WP <support@snapcreek.com>\n"
|
8 |
+
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.9\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
|
|
17 |
|
18 |
+
#: classes/class-easy-pie-mm-utility.php:131
|
19 |
msgid "problem reading manifest in "
|
20 |
msgstr "Logo"
|
21 |
|
22 |
+
#: classes/class-easy-pie-mm.php:81
|
23 |
msgid "Maintenance Mode is On"
|
24 |
msgstr "Maintenance Mode is On"
|
25 |
|
26 |
+
#: classes/class-easy-pie-mm.php:129
|
27 |
msgid "Problem reading template "
|
28 |
msgstr "Problem reading template "
|
29 |
|
30 |
+
#: classes/class-easy-pie-mm.php:258
|
31 |
msgid "Tried to create "
|
32 |
msgstr "Tried to create "
|
33 |
|
34 |
+
#: classes/class-easy-pie-mm.php:296
|
35 |
msgid "Enabled"
|
36 |
msgstr "Enabled"
|
37 |
|
38 |
+
#: classes/class-easy-pie-mm.php:299
|
39 |
msgid "Visuals"
|
40 |
msgstr "Visuals"
|
41 |
|
42 |
+
#: classes/class-easy-pie-mm.php:300
|
43 |
msgid "Mini-theme"
|
44 |
msgstr "Mini-theme"
|
45 |
|
46 |
+
#: classes/class-easy-pie-mm.php:303
|
47 |
msgid "Fields"
|
48 |
msgstr "Fields"
|
49 |
|
50 |
+
#: classes/class-easy-pie-mm.php:304
|
51 |
msgid "Title"
|
52 |
msgstr "Title"
|
53 |
|
54 |
+
#: classes/class-easy-pie-mm.php:305
|
55 |
msgid "Header"
|
56 |
msgstr "Header"
|
57 |
|
58 |
+
#: classes/class-easy-pie-mm.php:306
|
59 |
msgid "Headline"
|
60 |
msgstr "Headline"
|
61 |
|
62 |
+
#: classes/class-easy-pie-mm.php:307
|
63 |
msgid "Message"
|
64 |
msgstr "Message"
|
65 |
|
66 |
+
#: classes/class-easy-pie-mm.php:308
|
67 |
msgid "Logo"
|
68 |
msgstr "Logo"
|
69 |
|
70 |
+
#: classes/class-easy-pie-mm.php:338
|
71 |
msgid "HTML tags are allowed. e.g. Add <br/> for break."
|
72 |
msgstr "HTML tags are allowed. e.g. Add <br/> for break."
|
73 |
|
74 |
+
#: classes/class-easy-pie-mm.php:409
|
75 |
msgid "All fields are optional"
|
76 |
msgstr "All fields are optional"
|
77 |
|
78 |
+
#: classes/class-easy-pie-mm.php:444
|
79 |
msgid "User Defined:"
|
80 |
msgstr "User Defined:"
|
81 |
|
82 |
+
#: classes/class-easy-pie-mm.php:447
|
83 |
msgid "by"
|
84 |
msgstr "by"
|
85 |
|
86 |
+
#: pages/page-options.php:17
|
87 |
msgid "If you have a caching plugin, be sure to clear the cache!"
|
88 |
msgstr "If you have a caching plugin, be sure to clear the cache!"
|
89 |
|
90 |
+
#: pages/page-options.php:30
|
91 |
msgid "Advanced Settings"
|
92 |
msgstr "Advanced Settings"
|
93 |
|
94 |
+
#: pages/page-options.php:33
|
95 |
msgid "Custom CSS"
|
96 |
msgstr "Custom CSS"
|
97 |
|
98 |
+
#: pages/page-options.php:36
|
99 |
msgid "Page styling varies greatly. "
|
100 |
msgstr "Page styling varies greatly. "
|
101 |
|
102 |
+
#: pages/page-options.php:36
|
103 |
msgid "Update custom CSS when switching mini-themes."
|
104 |
msgstr "Update custom CSS when switching mini-themes."
|
105 |
|
106 |
+
#: pages/page-options.php:50
|
|
|
|
|
|
|
|
|
107 |
msgid "Plugin FAQ"
|
108 |
msgstr "Plugin FAQ"
|
109 |
|
110 |
+
#: pages/page-options.php:52
|
111 |
+
msgid "Contact"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#~ msgid "How to create a mini-theme for yourself or the community"
|
115 |
+
#~ msgstr "How to create a mini-theme for yourself or the community"
|
116 |
+
|
117 |
+
#~ msgid "Feature Request"
|
118 |
+
#~ msgstr "Feature Request"
|
119 |
|
120 |
+
#~ msgid "Report Bug"
|
121 |
+
#~ msgstr "Report Bug"
|
|
|
122 |
|
123 |
+
#~ msgid "Write Review"
|
124 |
+
#~ msgstr "Write Review"
|
|
|
125 |
|
126 |
+
#~ msgid "Contact Bob"
|
127 |
+
#~ msgstr "Contact Bob"
|
|
|
128 |
|
129 |
#~ msgid "Comment or question?"
|
130 |
#~ msgstr "Comment or question?"
|
mini-themes/plain/index.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
2 |
<!--
|
3 |
-
'Plain Jane' Mini-Theme running on
|
4 |
-
|
5 |
-->
|
6 |
<head>
|
7 |
<title>{{title}}</title>
|
1 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
2 |
<!--
|
3 |
+
'Plain Jane' Mini-Theme running on EZP Maintenance Mode Plugin
|
4 |
+
snapcreek.com
|
5 |
-->
|
6 |
<head>
|
7 |
<title>{{title}}</title>
|
mini-themes/plain/manifest.json
CHANGED
@@ -2,13 +2,13 @@
|
|
2 |
"page": "index.html",
|
3 |
"title": "Plain Jane",
|
4 |
"description": "A very plain theme.",
|
5 |
-
"author_name": "
|
6 |
-
"website_url": "
|
7 |
"screenshot": "images/screenshot.png",
|
8 |
-
"google_plus_author_url": "https://plus.google.com/+
|
9 |
"original_release_date": "2013/10/20",
|
10 |
-
"latest_version_date": "
|
11 |
-
"version": "1.1.
|
12 |
"release_notes": "Updated the metadata",
|
13 |
"autodownload" : true,
|
14 |
"responsive" : true,
|
2 |
"page": "index.html",
|
3 |
"title": "Plain Jane",
|
4 |
"description": "A very plain theme.",
|
5 |
+
"author_name": "Snap Creek Software",
|
6 |
+
"website_url": "https://snapcreek.com/support/",
|
7 |
"screenshot": "images/screenshot.png",
|
8 |
+
"google_plus_author_url": "https://plus.google.com/+Snapcreek/posts",
|
9 |
"original_release_date": "2013/10/20",
|
10 |
+
"latest_version_date": "2016/09/14",
|
11 |
+
"version": "1.1.1",
|
12 |
"release_notes": "Updated the metadata",
|
13 |
"autodownload" : true,
|
14 |
"responsive" : true,
|
mini-themes/sawhorse-black/index.html
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
3 |
<!--
|
4 |
-
'Sawhorse Black' Mini-Theme running on
|
5 |
-
|
6 |
-->
|
7 |
<head>
|
8 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
@@ -49,7 +49,7 @@
|
|
49 |
</div>
|
50 |
|
51 |
<!-- <div class="footer">
|
52 |
-
©
|
53 |
</div>-->
|
54 |
</div>
|
55 |
|
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
3 |
<!--
|
4 |
+
'Sawhorse Black' Mini-Theme running on EZP Maintenance Mode Plugin
|
5 |
+
snapcreek.com
|
6 |
-->
|
7 |
<head>
|
8 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
49 |
</div>
|
50 |
|
51 |
<!-- <div class="footer">
|
52 |
+
© 2016 Snap Creek LLC. All Rights Reserved. <a href="https://snapcreek.com" target="_blank">Designed by: Snap Creek Software</a>
|
53 |
</div>-->
|
54 |
</div>
|
55 |
|
mini-themes/sawhorse-black/manifest.json
CHANGED
@@ -3,12 +3,12 @@
|
|
3 |
"title": "Black Sawhorse",
|
4 |
"description": "Simple sign on black background that shows your site as temporarily down.",
|
5 |
"screenshot": "images/screenshot.png",
|
6 |
-
"author_name": "
|
7 |
-
"website_url": "
|
8 |
-
"google_plus_author_url": "https://plus.google.com/+
|
9 |
"original_release_date": "2013/10/20",
|
10 |
-
"latest_version_date": "
|
11 |
-
"version": "1.1.
|
12 |
"release_notes": "Updated the metadata.",
|
13 |
"autodownload" : true,
|
14 |
"responsive" : true,
|
3 |
"title": "Black Sawhorse",
|
4 |
"description": "Simple sign on black background that shows your site as temporarily down.",
|
5 |
"screenshot": "images/screenshot.png",
|
6 |
+
"author_name": "Snap Creek Software",
|
7 |
+
"website_url": "https://snapcreek.com/support",
|
8 |
+
"google_plus_author_url": "https://plus.google.com/+Snapcreek/posts",
|
9 |
"original_release_date": "2013/10/20",
|
10 |
+
"latest_version_date": "2016/9/14",
|
11 |
+
"version": "1.1.1",
|
12 |
"release_notes": "Updated the metadata.",
|
13 |
"autodownload" : true,
|
14 |
"responsive" : true,
|
mini-themes/sawhorse-yellow/index.html
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
3 |
<!--
|
4 |
-
'Sawhorse Yellow' Mini-Theme running on
|
5 |
-
|
6 |
-->
|
7 |
<head>
|
8 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
@@ -51,7 +51,7 @@
|
|
51 |
</div>
|
52 |
|
53 |
<!-- <div class="footer">
|
54 |
-
©
|
55 |
</div>-->
|
56 |
</div>
|
57 |
|
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
3 |
<!--
|
4 |
+
'Sawhorse Yellow' Mini-Theme running on EZP Maintenance Mode Plugin
|
5 |
+
snapcreek.com
|
6 |
-->
|
7 |
<head>
|
8 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
51 |
</div>
|
52 |
|
53 |
<!-- <div class="footer">
|
54 |
+
© 2016 Snap Creek LLC. All Rights Reserved. <a href="https://snapcreek.com" target="_blank">Designed by: Snap Creek Software</a>
|
55 |
</div>-->
|
56 |
</div>
|
57 |
|
mini-themes/sawhorse-yellow/manifest.json
CHANGED
@@ -3,12 +3,12 @@
|
|
3 |
"title": "Yellow Sawhorse",
|
4 |
"description": "Simple sign on yellow/green showing your site is temporarily down.",
|
5 |
"screenshot": "images/screenshot.png",
|
6 |
-
"author_name": "
|
7 |
-
"website_url": "
|
8 |
-
"google_plus_author_url": "https://plus.google.com/+
|
9 |
"original_release_date": "2013/10/20",
|
10 |
"latest_version_date": "2013/11/11",
|
11 |
-
"version": "1.1.
|
12 |
"release_notes": "Updated metadata",
|
13 |
"autodownload" : true,
|
14 |
"responsive" : true,
|
3 |
"title": "Yellow Sawhorse",
|
4 |
"description": "Simple sign on yellow/green showing your site is temporarily down.",
|
5 |
"screenshot": "images/screenshot.png",
|
6 |
+
"author_name": "Snap Creek Software",
|
7 |
+
"website_url": "https://snapcreek.com/support/",
|
8 |
+
"google_plus_author_url": "https://plus.google.com/+Snapcreek/posts",
|
9 |
"original_release_date": "2013/10/20",
|
10 |
"latest_version_date": "2013/11/11",
|
11 |
+
"version": "1.1.1",
|
12 |
"release_notes": "Updated metadata",
|
13 |
"autodownload" : true,
|
14 |
"responsive" : true,
|
mini-themes/temporarily-closed/index.html
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
3 |
<!--
|
4 |
-
'Temporarily Closed' Mini-Theme running on
|
5 |
-
|
6 |
-->
|
7 |
<head>
|
8 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
3 |
<!--
|
4 |
+
'Temporarily Closed' Mini-Theme running on EZP Maintenance Mode Plugin
|
5 |
+
snapcreek.com
|
6 |
-->
|
7 |
<head>
|
8 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
mini-themes/temporarily-closed/manifest.json
CHANGED
@@ -2,13 +2,13 @@
|
|
2 |
"page": "index.html",
|
3 |
"title": "Temporarily Closed",
|
4 |
"description": "Shop window sign showing your site is temporarily down.",
|
5 |
-
"author_name": "
|
6 |
-
"website_url": "
|
7 |
"screenshot": "images/screenshot.png",
|
8 |
-
"google_plus_author_url": "https://plus.google.com/+
|
9 |
"original_release_date": "2013/10/20",
|
10 |
-
"latest_version_date": "2013/
|
11 |
-
"version": "1.1.
|
12 |
"release_notes": "Updated the metadata.",
|
13 |
"autodownload" : true,
|
14 |
"responsive" : true,
|
2 |
"page": "index.html",
|
3 |
"title": "Temporarily Closed",
|
4 |
"description": "Shop window sign showing your site is temporarily down.",
|
5 |
+
"author_name": "Snap Creek Software",
|
6 |
+
"website_url": "https://snapcreek.com/support/",
|
7 |
"screenshot": "images/screenshot.png",
|
8 |
+
"google_plus_author_url": "https://plus.google.com/+Snapcreek/posts",
|
9 |
"original_release_date": "2013/10/20",
|
10 |
+
"latest_version_date": "2013/9/14",
|
11 |
+
"version": "1.1.1",
|
12 |
"release_notes": "Updated the metadata.",
|
13 |
"autodownload" : true,
|
14 |
"responsive" : true,
|
pages/page-options.php
CHANGED
@@ -11,7 +11,7 @@
|
|
11 |
<div class="wrap">
|
12 |
|
13 |
<?php screen_icon(Easy_Pie_MM_Constants::PLUGIN_SLUG); ?>
|
14 |
-
<h2>
|
15 |
<?php
|
16 |
if (isset($_GET['settings-updated'])) {
|
17 |
echo "<div class='updated'><p>" . Easy_Pie_MM_Utility::__('If you have a caching plugin, be sure to clear the cache!') . "</p></div>";
|
@@ -36,32 +36,20 @@
|
|
36 |
<p><small><strong><?php Easy_Pie_MM_Utility::_e("Page styling varies greatly. ")?></strong><?php Easy_Pie_MM_Utility::_e("Update custom CSS when switching mini-themes."); ?></small></p>
|
37 |
</div>
|
38 |
</td>
|
39 |
-
</tr>
|
40 |
-
<tr>
|
41 |
-
|
42 |
-
<td colspan="2">
|
43 |
-
<?php
|
44 |
-
$format = "<p><a style='font-size:11px' target='_blank' href='%s'>%s</a></p>";
|
45 |
-
|
46 |
-
$resolved = sprintf($format, "http://easypiewp.com/how-to-create-maintenance-mode-theme/", Easy_Pie_MM_Utility::__('How to create a mini-theme for yourself or the community') );
|
47 |
-
|
48 |
-
Easy_Pie_MM_Utility::_e($resolved);
|
49 |
-
?>
|
50 |
-
</td>
|
51 |
-
</tr>
|
52 |
</table>
|
53 |
</div>
|
54 |
|
55 |
-
<div style="margin-top:30px; margin-bottom:25px; border-radius:4px; box-shadow: 1px 6px 36px -5px rgba(34,34,34,1);width:
|
56 |
</div>
|
57 |
|
58 |
<?php
|
59 |
submit_button();
|
60 |
?>
|
61 |
|
62 |
-
<a href="
|
63 |
|
|
64 |
-
<a href="mailto:
|
65 |
</form>
|
66 |
</div>
|
67 |
</div>
|
11 |
<div class="wrap">
|
12 |
|
13 |
<?php screen_icon(Easy_Pie_MM_Constants::PLUGIN_SLUG); ?>
|
14 |
+
<h2>EZP Maintenance Mode</h2>
|
15 |
<?php
|
16 |
if (isset($_GET['settings-updated'])) {
|
17 |
echo "<div class='updated'><p>" . Easy_Pie_MM_Utility::__('If you have a caching plugin, be sure to clear the cache!') . "</p></div>";
|
36 |
<p><small><strong><?php Easy_Pie_MM_Utility::_e("Page styling varies greatly. ")?></strong><?php Easy_Pie_MM_Utility::_e("Update custom CSS when switching mini-themes."); ?></small></p>
|
37 |
</div>
|
38 |
</td>
|
39 |
+
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
</table>
|
41 |
</div>
|
42 |
|
43 |
+
<div style="margin-top:30px; margin-bottom:25px; border-radius:4px; box-shadow: 1px 6px 36px -5px rgba(34,34,34,1);width: 694px; color: rgb(200, 22, 22); background-color: white;font-weight: bold;border: red solid 1px;padding: 5px;">Set custom backgrounds, collect emails, grant site access, add social media links and more <a href="https://snapcreek.com/ezp-coming-soon/" target="_blank">in our Pro product!</a>
|
44 |
</div>
|
45 |
|
46 |
<?php
|
47 |
submit_button();
|
48 |
?>
|
49 |
|
50 |
+
<a href="https://snapcreek.com/ezp-coming-soon/docs/faq-maintenance-mode/" target="_blank"><?php $this->_e('Plugin FAQ'); ?></a>
|
51 |
|
|
52 |
+
<a href="mailto:support@snapcreek.com" target="_blank"><?php $this->_e('Contact'); ?></a>
|
53 |
</form>
|
54 |
</div>
|
55 |
</div>
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
===
|
2 |
Contributors: bobriley
|
3 |
Donate link: http://easypiewp.com/donate/
|
4 |
Tags: maintenance, admin, administration, construction, under construction, maintenance mode, offline, unavailable, launch, wordpress maintenance mode, site maintenance
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.1.1
|
7 |
-
Stable tag: 0.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -12,7 +12,7 @@ Easily let website visitors know your site is undergoing maintenance.
|
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
Need to let your visitors know your site is undergoing maintenance?
|
16 |
|
17 |
### Maintenance Mode Basic Features
|
18 |
* **Simple.** No confusing options or complex setup.
|
@@ -25,9 +25,9 @@ Need to let your visitors know your site is undergoing maintenance? Easy Pie Mai
|
|
25 |
* **User Mini Themes.** Greatly customize Maintenance Mode by creating your own mini-theme.
|
26 |
|
27 |
### Overview
|
28 |
-
|
29 |
|
30 |
-
In this way, both beginners and pros will find
|
31 |
|
32 |
|
33 |
Thanks to the developers of [bxSlider](http://bxslider.com) for their cool image viewer.
|
@@ -58,21 +58,11 @@ Thanks to the developers of [bxSlider](http://bxslider.com) for their cool image
|
|
58 |
|
59 |
== Frequently Asked Questions ==
|
60 |
|
61 |
-
= How can I create a new mini-theme? =
|
62 |
-
|
63 |
-
The page ['How to create a Maintenance Mode Theme'](http://easypiewp.com/how-to-create-maintenance-mode-theme) describes the process.
|
64 |
-
|
65 |
= Why is my site is still viewable? =
|
66 |
Maintenance mode is only shown to visitors who are not logged in. The easiest way to check things yourself is view your site with a different browser type than the one you're logged in with (i.e. if you're logged in with Chrome, view the site in Firefox or Internet Explorer or vice versa).
|
67 |
|
68 |
Alternatively, you can log out or view the site in incognito/private mode with an instance of the same browser type.
|
69 |
|
70 |
-
= My custom theme changed after plugin upgrade!? =
|
71 |
-
|
72 |
-
Make sure your theme is in the user theme directory and not in the plugins directory where the built-in themes are. Maintenance Mode pulls themes from both the plugins directory AND the user theme directory, however only the user theme directory is preserved between updates.
|
73 |
-
|
74 |
-
Therefore, if you want to doctor a theme you'll need to first copy it from the plugins directory into the user theme directory, as explained in ['How to create a Maintenance Mode Theme'](http://easypiewp.com/how-to-create-maintenance-mode-theme).
|
75 |
-
|
76 |
= What happens if a search engine hits my site while it's in maintenance mode? =
|
77 |
|
78 |
The plugin returns a '503' status with 'retry later' HTTP header when in maintenance mode. This lets search engines know that your site is temporarily down and to come back 24 hours later.
|
@@ -87,12 +77,12 @@ Simply add the following line to your wp-config.php file:
|
|
87 |
|
88 |
Afterward either uninstall or reconfigure the conflicting plugins.
|
89 |
|
90 |
-
If you aren't comfortable doing this or are unsure how to do this, [please contact me](mailto:
|
91 |
|
92 |
= How do I report a bug? =
|
93 |
|
94 |
-
Please capture as much information you can about your system, specifically use the error log to gather new information if you are comfortable. The [
|
95 |
-
Then, please [let me know](mailto:
|
96 |
|
97 |
== Screenshots ==
|
98 |
|
@@ -101,6 +91,11 @@ Then, please [let me know](mailto:bob@easypiewp.com) what's going on, with as mu
|
|
101 |
|
102 |
== Changelog ==
|
103 |
|
|
|
|
|
|
|
|
|
|
|
104 |
= 0.6.7 =
|
105 |
* UI tweaks
|
106 |
|
@@ -140,6 +135,9 @@ Then, please [let me know](mailto:bob@easypiewp.com) what's going on, with as mu
|
|
140 |
|
141 |
== Upgrade Notice ==
|
142 |
|
|
|
|
|
|
|
143 |
= 0.6.7 =
|
144 |
UI tweaks
|
145 |
|
1 |
+
=== EZP Maintenance Mode ===
|
2 |
Contributors: bobriley
|
3 |
Donate link: http://easypiewp.com/donate/
|
4 |
Tags: maintenance, admin, administration, construction, under construction, maintenance mode, offline, unavailable, launch, wordpress maintenance mode, site maintenance
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.1.1
|
7 |
+
Stable tag: 1.0.0
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
Need to let your visitors know your site is undergoing maintenance? EZP Maintenance Mode makes it easy!
|
16 |
|
17 |
### Maintenance Mode Basic Features
|
18 |
* **Simple.** No confusing options or complex setup.
|
25 |
* **User Mini Themes.** Greatly customize Maintenance Mode by creating your own mini-theme.
|
26 |
|
27 |
### Overview
|
28 |
+
EZP Maintenance Mode was designed to let you get to the important work of improving your site while visitors know you are performing maintenance in the shortest time possible. We've supplied four very nice looking themes to display when your site is undergoing maintenance. Additionally, you can easily cator these to your tastes using CSS. For the advanced users, you can create your own mini theme to be displayed when the site is undergoing maintenance.
|
29 |
|
30 |
+
In this way, both beginners and pros will find EZP Maintenance Mode not only easy to use but highly flexible as well.
|
31 |
|
32 |
|
33 |
Thanks to the developers of [bxSlider](http://bxslider.com) for their cool image viewer.
|
58 |
|
59 |
== Frequently Asked Questions ==
|
60 |
|
|
|
|
|
|
|
|
|
61 |
= Why is my site is still viewable? =
|
62 |
Maintenance mode is only shown to visitors who are not logged in. The easiest way to check things yourself is view your site with a different browser type than the one you're logged in with (i.e. if you're logged in with Chrome, view the site in Firefox or Internet Explorer or vice versa).
|
63 |
|
64 |
Alternatively, you can log out or view the site in incognito/private mode with an instance of the same browser type.
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
= What happens if a search engine hits my site while it's in maintenance mode? =
|
67 |
|
68 |
The plugin returns a '503' status with 'retry later' HTTP header when in maintenance mode. This lets search engines know that your site is temporarily down and to come back 24 hours later.
|
77 |
|
78 |
Afterward either uninstall or reconfigure the conflicting plugins.
|
79 |
|
80 |
+
If you aren't comfortable doing this or are unsure how to do this, [please contact me](mailto:support@snapcreek.com) and I'll be happy to walk you through the process.
|
81 |
|
82 |
= How do I report a bug? =
|
83 |
|
84 |
+
Please capture as much information you can about your system, specifically use the error log to gather new information if you are comfortable. The [EZP Error Log Guide](http://easypiewp.com/quickly-diagnose-wordpress-problems-using-error-log/) outlines how to do this.
|
85 |
+
Then, please [let me know](mailto:support@snapcreek.com) what's going on, with as much detail as you have.
|
86 |
|
87 |
== Screenshots ==
|
88 |
|
91 |
|
92 |
== Changelog ==
|
93 |
|
94 |
+
= 1.0.0 =
|
95 |
+
* Small UI tweaks
|
96 |
+
* Renamed to EZP Maintenance Mode
|
97 |
+
* Changed references to Snap Creek Software
|
98 |
+
|
99 |
= 0.6.7 =
|
100 |
* UI tweaks
|
101 |
|
135 |
|
136 |
== Upgrade Notice ==
|
137 |
|
138 |
+
= 1.0.0 =
|
139 |
+
Small UI tweaks, renamed to EZP Maintenance Mode, changed references to Snap Creek Software
|
140 |
+
|
141 |
= 0.6.7 =
|
142 |
UI tweaks
|
143 |
|