WP Photo Album Plus - Version 8.0.01.001

Version Description

= 8.0.00 =

  • This version addresses various minor bug fixes and feature requests.
Download this release

Release Info

Developer opajaap
Plugin Icon wp plugin WP Photo Album Plus
Version 8.0.01.001
Comparing to
See all releases

Code changes from version 8.0.00.024 to 8.0.01.001

Files changed (4) hide show
  1. changelog.txt +7 -2
  2. readme.txt +2 -2
  3. wppa-init.php +2 -1
  4. wppa.php +2 -2
changelog.txt CHANGED
@@ -1,6 +1,10 @@
1
  WP Photo Album Plus Changelog
2
 
3
- = 8 =
 
 
 
 
4
 
5
  * Restructured and greatly simplified settings page. Removed obsolete and redundant settings. Made the layout more friendly.
6
  * Photo of the day admin page is now in the Settings page under Photos.
@@ -18,7 +22,8 @@ Ajax is always activated, because there can no longer be conflicts due to inacce
18
  [wppa type="photo" photo="#last,12"] or [wppa type="photo" album="12" photo="#last"]. Fixed. Works also for type="mphoto" and type="xphoto".
19
  * Fixed a slideshow filmstrip layout issue for theme twentytwentyone.
20
  * The max simultaneous ajax requests during resequencing photos is now limited to 10. This prevents db errors due to too many open db instances.
21
- * Caching system is simplified. Just on or off. In widgets: checkbox; in shortcodes: '', '0', 'off' or 'no' means no caching; anything else means caching on.
 
22
 
23
  = 7.7.07 =
24
 
1
  WP Photo Album Plus Changelog
2
 
3
+ = 8.0.01 =
4
+
5
+ * Re-added the WPPA+ text widget for backward compatibility.
6
+
7
+ = 8.0.00 =
8
 
9
  * Restructured and greatly simplified settings page. Removed obsolete and redundant settings. Made the layout more friendly.
10
  * Photo of the day admin page is now in the Settings page under Photos.
22
  [wppa type="photo" photo="#last,12"] or [wppa type="photo" album="12" photo="#last"]. Fixed. Works also for type="mphoto" and type="xphoto".
23
  * Fixed a slideshow filmstrip layout issue for theme twentytwentyone.
24
  * The max simultaneous ajax requests during resequencing photos is now limited to 10. This prevents db errors due to too many open db instances.
25
+ * Caching system is simplified. Just on or off. In widgets: checkbox; in shortcodes: '', '0', 'off' or 'no' means no caching; anything else means caching on.
26
+ Although the fact that there are separate cachefiles for logged-in and logged-out visitors, make sure you do nat cache widgets or shortcodes that may display user dependant content.
27
 
28
  = 7.7.07 =
29
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: photo, album, slideshow, video, audio, lightbox, iptc, exif, cloudinary, f
5
  Requires at least: 3.9
6
  Tested up to: 5.8
7
  Requires PHP: 5.5
8
- Stable tag: 7.7.06.007
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -134,7 +134,7 @@ See for the full changelog: <a href="http://www.wppa.nl/changelog/" >The documen
134
 
135
  == Upgrade Notice ==
136
 
137
- = 7.7.07 =
138
 
139
  * This version addresses various minor bug fixes and feature requests.
140
 
5
  Requires at least: 3.9
6
  Tested up to: 5.8
7
  Requires PHP: 5.5
8
+ Stable tag: 8.0.00.024
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
134
 
135
  == Upgrade Notice ==
136
 
137
+ = 8.0.00 =
138
 
139
  * This version addresses various minor bug fixes and feature requests.
140
 
wppa-init.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * This file loads required php files and contains all functions used in init actions.
6
  *
7
- * Version 8.0.00.012
8
  */
9
 
10
  /* LOAD SIDEBAR WIDGETS */
@@ -29,6 +29,7 @@ require_once 'wppa-stereo-widget.php';
29
  require_once 'wppa-admins-choice-widget.php';
30
  require_once 'wppa-stats-widget.php';
31
  require_once 'wppa-notify-widget.php';
 
32
 
33
  /* COMMON FUNCTIONS */
34
  require_once 'wppa-common-functions.php';
4
  *
5
  * This file loads required php files and contains all functions used in init actions.
6
  *
7
+ * Version 8.0.01.001
8
  */
9
 
10
  /* LOAD SIDEBAR WIDGETS */
29
  require_once 'wppa-admins-choice-widget.php';
30
  require_once 'wppa-stats-widget.php';
31
  require_once 'wppa-notify-widget.php';
32
+ require_once 'wppa-gp-widget.php';
33
 
34
  /* COMMON FUNCTIONS */
35
  require_once 'wppa-common-functions.php';
wppa.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * Plugin Name: WP Photo Album Plus
4
  * Description: Easily manage and display your photo albums and slideshows within your WordPress site.
5
- * Version: 8.0.00.024
6
  * Author: J.N. Breetvelt a.k.a. OpaJaap
7
  * Author URI: http://wppa.opajaap.nl/
8
  * Plugin URI: http://wordpress.org/extend/plugins/wp-photo-album-plus/
@@ -24,7 +24,7 @@ global $wp_version;
24
 
25
  /* WPPA GLOBALS */
26
  global $wppa_api_version;
27
- $wppa_api_version = '8.0.00.024'; // WPPA software version
28
  global $wppa_revno;
29
  $wppa_revno = str_replace( '.', '', $wppa_api_version ); // WPPA db version
30
 
2
  /*
3
  * Plugin Name: WP Photo Album Plus
4
  * Description: Easily manage and display your photo albums and slideshows within your WordPress site.
5
+ * Version: 8.0.01.001
6
  * Author: J.N. Breetvelt a.k.a. OpaJaap
7
  * Author URI: http://wppa.opajaap.nl/
8
  * Plugin URI: http://wordpress.org/extend/plugins/wp-photo-album-plus/
24
 
25
  /* WPPA GLOBALS */
26
  global $wppa_api_version;
27
+ $wppa_api_version = '8.0.01.001'; // WPPA software version
28
  global $wppa_revno;
29
  $wppa_revno = str_replace( '.', '', $wppa_api_version ); // WPPA db version
30