Gallery – Photo Gallery – Image Gallery - Version 1.1.9

Version Description

  • Minor change in backend UI
Download this release

Release Info

Developer GreenTreeLabs
Plugin Icon wp plugin Gallery – Photo Gallery – Image Gallery
Version 1.1.9
Comparing to
See all releases

Code changes from version 1.1.8 to 1.1.9

Files changed (4) hide show
  1. Modula.php +7 -7
  2. README.txt +3 -0
  3. admin/css/style.css +1 -1
  4. admin/edit-gallery.php +1 -1
Modula.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Gallery - A WordPress Modula Gallery
4
  Plugin URI: http://modula.greentreelabs.net
5
  Description: The Most Creative Grid Wordpress Gallery.
6
  Author: GreenTreeLabs
7
- Version: 1.1.8
8
  Author URI: http://modula.greentreelabs.net
9
  */
10
 
@@ -20,7 +20,7 @@ if (!class_exists("ModulaLite"))
20
  {
21
  private $loadedData;
22
 
23
- private $version = "1.1.8";
24
 
25
  private $defaultValues = array(
26
  'width' => 100,
@@ -922,7 +922,7 @@ if (!class_exists("ModulaLite"))
922
  ),
923
  "randomFactor" => array(
924
  "name" => "Random factor",
925
- "type" => "slider",
926
  "description" => "",
927
  "min" => 0,
928
  "max" => 100,
@@ -1063,7 +1063,7 @@ if (!class_exists("ModulaLite"))
1063
  "loadedScale" => array(
1064
  "name" => "Scale",
1065
  "description" => "Choose a value below 100% for a zoom-in effect. Choose a value over 100% for a zoom-out effect",
1066
- "type" => "slider",
1067
  "min" => 0,
1068
  "max" => 200,
1069
  "mu" => "%",
@@ -1119,7 +1119,7 @@ if (!class_exists("ModulaLite"))
1119
  "fields" => array(
1120
  "borderSize" => array(
1121
  "name" => "Border Size",
1122
- "type" => "slider",
1123
  "description" => "",
1124
  "mu" => "px",
1125
  "min" => 0,
@@ -1129,7 +1129,7 @@ if (!class_exists("ModulaLite"))
1129
  ),
1130
  "borderRadius" => array(
1131
  "name" => "Border Radius",
1132
- "type" => "slider",
1133
  "description" => "",
1134
  "mu" => "px",
1135
  "min" => 0,
@@ -1146,7 +1146,7 @@ if (!class_exists("ModulaLite"))
1146
  ),
1147
  "shadowSize" => array(
1148
  "name" => "Shadow Size",
1149
- "type" => "slider",
1150
  "description" => "",
1151
  "mu" => "px",
1152
  "min" => 0,
4
  Plugin URI: http://modula.greentreelabs.net
5
  Description: The Most Creative Grid Wordpress Gallery.
6
  Author: GreenTreeLabs
7
+ Version: 1.1.9
8
  Author URI: http://modula.greentreelabs.net
9
  */
10
 
20
  {
21
  private $loadedData;
22
 
23
+ private $version = "1.1.9";
24
 
25
  private $defaultValues = array(
26
  'width' => 100,
922
  ),
923
  "randomFactor" => array(
924
  "name" => "Random factor",
925
+ "type" => "ui-slider",
926
  "description" => "",
927
  "min" => 0,
928
  "max" => 100,
1063
  "loadedScale" => array(
1064
  "name" => "Scale",
1065
  "description" => "Choose a value below 100% for a zoom-in effect. Choose a value over 100% for a zoom-out effect",
1066
+ "type" => "ui-slider",
1067
  "min" => 0,
1068
  "max" => 200,
1069
  "mu" => "%",
1119
  "fields" => array(
1120
  "borderSize" => array(
1121
  "name" => "Border Size",
1122
+ "type" => "ui-slider",
1123
  "description" => "",
1124
  "mu" => "px",
1125
  "min" => 0,
1129
  ),
1130
  "borderRadius" => array(
1131
  "name" => "Border Radius",
1132
+ "type" => "ui-slider",
1133
  "description" => "",
1134
  "mu" => "px",
1135
  "min" => 0,
1146
  ),
1147
  "shadowSize" => array(
1148
  "name" => "Shadow Size",
1149
+ "type" => "ui-slider",
1150
  "description" => "",
1151
  "mu" => "px",
1152
  "min" => 0,
README.txt CHANGED
@@ -110,6 +110,9 @@ Free support is included only with a PRO license: http://modula.greentreelabs.ne
110
 
111
  == Changelog ==
112
 
 
 
 
113
  = 1.1.8 =
114
  * Fixed broken css for backends under SSL
115
 
110
 
111
  == Changelog ==
112
 
113
+ = 1.1.9 =
114
+ * Minor change in backend UI
115
+
116
  = 1.1.8 =
117
  * Fixed broken css for backends under SSL
118
 
admin/css/style.css CHANGED
@@ -644,7 +644,7 @@ strong {
644
  width: 200px;
645
  padding-top: 30px;
646
  }
647
- .collapsible li tr.slider {
648
  height: auto;
649
  }
650
  .collapsible li tr.filter {
644
  width: 200px;
645
  padding-top: 30px;
646
  }
647
+ .collapsible li tr.ui-slider {
648
  height: auto;
649
  }
650
  .collapsible li tr.filter {
admin/edit-gallery.php CHANGED
@@ -143,7 +143,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die(_e('Y
143
  <label for="ftg_<?php print $f ?>"><?php _e($data["description"]); ?></label>
144
  </div>
145
 
146
- <?php elseif($data["type"] == "slider") : ?>
147
  <div class="text">
148
  <label class="effect-description"><?php print $data['description'] ?></label>
149
  <p class="range-field">
143
  <label for="ftg_<?php print $f ?>"><?php _e($data["description"]); ?></label>
144
  </div>
145
 
146
+ <?php elseif($data["type"] == "ui-slider") : ?>
147
  <div class="text">
148
  <label class="effect-description"><?php print $data['description'] ?></label>
149
  <p class="range-field">