Gallery – Photo Gallery and Images Gallery - Version 2.4.3

Version Description

  • Added new Express Panel for fast settings save
  • Scroll effect for Express Panel
Download this release

Release Info

Developer robosoft
Plugin Icon 128x128 Gallery – Photo Gallery and Images Gallery
Version 2.4.3
Comparing to
See all releases

Code changes from version 2.4.2 to 2.4.3

cmb2/fields/toolbox/cmb-field-toolbox.php CHANGED
@@ -1,4 +1,4 @@
1
- <?php
2
  /*
3
  * Robo Gallery
4
  * Version: 1.0
@@ -23,9 +23,27 @@ class RBS_TOOLBOX {
23
  }
24
 
25
  public function rbs_setup_admin_script(){
26
- echo '<script>'
27
- .'var ROBO_GALLERY_PRO = '.ROBO_GALLERY_PRO.';'
28
- .'</script>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  }
30
 
31
  public function rbs_setup_admin_header(){
1
+ <!-- --><?php
2
  /*
3
  * Robo Gallery
4
  * Version: 1.0
23
  }
24
 
25
  public function rbs_setup_admin_script(){
26
+ echo '<script type="text/javascript"> var ROBO_GALLERY_PRO = '.ROBO_GALLERY_PRO.';</script>';
27
+ if(isset($_GET['post'])){
28
+ echo '
29
+ <div id="robo_gallery_savebutton_dialog_id" class="robo_gallery_savebutton_dialog_hide">
30
+ <h3>Express Panel</h3>
31
+ <p>
32
+ click update button to save your changes rigth away
33
+ </p>
34
+ <p>
35
+ <button id="robo_gallery_update_button" class="button button-primary button-large">Update</button>
36
+ </p>
37
+ </div>
38
+ <script type="text/javascript">
39
+
40
+ var panelDiv = document.getElementById("robo_gallery_savebutton_dialog_id");
41
+ document.body.appendChild(panelDiv);
42
+ panelDiv.className = "robo_gallery_savebutton_dialog";
43
+ var buttonRoboGallerySave = document.getElementById("robo_gallery_update_button");
44
+ buttonRoboGallerySave.onclick = function(){ document.getElementById("publish").click(); return false };
45
+ </script>';
46
+ }
47
  }
48
 
49
  public function rbs_setup_admin_header(){
css/admin/edit.css CHANGED
@@ -1 +1 @@
1
- /*
2
  z-index: 1000;
3
  opacity: 0.4;
4
  pointer-events: none;
5
  z-index: 1000;
6
  opacity: 0.1;
7
  pointer-events: none;
8
  padding-top: 7px;
9
  text-align: right;
10
  cursor: pointer;
 
11
  z-index: 1000;
12
  opacity: 0.4;
13
  pointer-events: none;
14
  z-index: 1000;
15
  opacity: 0.1;
16
  pointer-events: none;
17
  padding-top: 7px;
18
  text-align: right;
19
  cursor: pointer;
 
1
  z-index: 1000;
2
  opacity: 0.4;
3
  pointer-events: none;
4
  z-index: 1000;
5
  opacity: 0.1;
6
  pointer-events: none;
7
  padding-top: 7px;
8
  text-align: right;
9
  cursor: pointer;
10
+ /*
11
  z-index: 1000;
12
  opacity: 0.4;
13
  pointer-events: none;
14
  z-index: 1000;
15
  opacity: 0.1;
16
  pointer-events: none;
17
  padding-top: 7px;
18
  text-align: right;
19
  cursor: pointer;
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: robosoft
3
  Tags: gallery, Gallery Plugin, photo gallery, images gallery, responsive gallery, categories gallery, Polaroid gallery, gallery lightbox, pictures, images, portfolio gallery, video gallery
4
  Requires at least: 3.3
5
  Tested up to: 4.6
6
- Stable tag: 2.4.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -201,6 +201,10 @@ If any problem occurs, please contact us.
201
 
202
  == Changelog ==
203
 
 
 
 
 
204
  = 2.4.2 =
205
  * Updated statistics, added new reset button
206
  * Small code fixes
@@ -847,6 +851,10 @@ If any problem occurs, please contact us.
847
 
848
  == Upgrade Notice ==
849
 
 
 
 
 
850
  = 2.4.2 =
851
  Updated statistics, added new reset button
852
  Small code fixes
3
  Tags: gallery, Gallery Plugin, photo gallery, images gallery, responsive gallery, categories gallery, Polaroid gallery, gallery lightbox, pictures, images, portfolio gallery, video gallery
4
  Requires at least: 3.3
5
  Tested up to: 4.6
6
+ Stable tag: 2.4.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
201
 
202
  == Changelog ==
203
 
204
+ = 2.4.3 =
205
+ * Added new Express Panel for fast settings save
206
+ * Scroll effect for Express Panel
207
+
208
  = 2.4.2 =
209
  * Updated statistics, added new reset button
210
  * Small code fixes
851
 
852
  == Upgrade Notice ==
853
 
854
+ = 2.4.3 =
855
+ Added new Express Panel for fast settings save
856
+ Scroll effect for Express Panel
857
+
858
  = 2.4.2 =
859
  Updated statistics, added new reset button
860
  Small code fixes
robogallery.php CHANGED
@@ -3,8 +3,8 @@
3
  /*
4
  Plugin Name: Robo Gallery
5
  Plugin URI: http://robosoft.co/gallery
6
- Description: Gallery with flexible and simple design. Wide range of the gallery functionality. Fully responsive gallery and mobility support.
7
- Version: 2.4.2
8
  Author: RoboSoft (c)
9
  Author URI: http://robosoft.co/gallery
10
  License: GPL-2.0+
@@ -16,9 +16,9 @@
16
  if ( ! defined( 'WPINC' ) ) die;
17
 
18
  define("ROBO_GALLERY", 1);
19
- define("ROBO_GALLERY_VERSION", '2.4.2');
20
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
21
- define("ROBO_GALLERY_SPECIAL", 1);
22
 
23
  add_action( 'plugins_loaded', 'rbs_gallery_load_textdomain' );
24
  function rbs_gallery_load_textdomain() {
3
  /*
4
  Plugin Name: Robo Gallery
5
  Plugin URI: http://robosoft.co/gallery
6
+ Description: A responsive, easy and elegant way to show gallery.
7
+ Version: 2.4.3
8
  Author: RoboSoft (c)
9
  Author URI: http://robosoft.co/gallery
10
  License: GPL-2.0+
16
  if ( ! defined( 'WPINC' ) ) die;
17
 
18
  define("ROBO_GALLERY", 1);
19
+ define("ROBO_GALLERY_VERSION", '2.4.3');
20
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
21
+ define("ROBO_GALLERY_SPECIAL", 0);
22
 
23
  add_action( 'plugins_loaded', 'rbs_gallery_load_textdomain' );
24
  function rbs_gallery_load_textdomain() {