Gmedia Photo Gallery - Version 1.12.4

Version Description

Download this release

Release Info

Developer pasyuk
Plugin Icon 128x128 Gmedia Photo Gallery
Version 1.12.4
Comparing to
See all releases

Code changes from version 1.12.1 to 1.12.4

admin/admin.php CHANGED
@@ -144,9 +144,9 @@ class GmediaAdmin {
144
  $this->pages[] = add_submenu_page('GrandMedia', __('Gmedia Library', 'grand-media'), __('Gmedia Library', 'grand-media'), 'gmedia_library', 'GrandMedia', array(&$this, 'shell'));
145
  if(current_user_can('gmedia_library')){
146
  $this->pages[] = add_submenu_page('GrandMedia', __('Add Media Files', 'grand-media'), __('Add/Import Files', 'grand-media'), 'gmedia_upload', 'GrandMedia_AddMedia', array(&$this, 'shell'));
147
- $this->pages[] = add_submenu_page('GrandMedia', __('Tags', 'grand-media'), __('Tags', 'grand-media'), 'gmedia_library', 'GrandMedia_Tags', array(&$this, 'shell'));
148
- $this->pages[] = add_submenu_page('GrandMedia', __('Categories', 'grand-media'), __('Categories', 'grand-media'), 'gmedia_library', 'GrandMedia_Categories', array(&$this, 'shell'));
149
- $this->pages[] = add_submenu_page('GrandMedia', __('Albums', 'grand-media'), __('Albums', 'grand-media'), 'gmedia_library', 'GrandMedia_Albums', array(&$this, 'shell'));
150
  $this->pages[] = add_submenu_page('GrandMedia', __('Gmedia Galleries', 'grand-media'), __('Galleries', 'grand-media'), 'gmedia_gallery_manage', 'GrandMedia_Galleries', array(&$this, 'shell'));
151
  $this->pages[] = add_submenu_page('GrandMedia', __('Modules', 'grand-media'), __('Modules', 'grand-media'), 'gmedia_gallery_manage', 'GrandMedia_Modules', array(&$this, 'shell'));
152
  $this->pages[] = add_submenu_page('GrandMedia', __('Gmedia Settings', 'grand-media'), __('Settings', 'grand-media'), 'manage_options', 'GrandMedia_Settings', array(&$this, 'shell'));
@@ -583,6 +583,9 @@ class GmediaAdmin {
583
 
584
  wp_enqueue_style('jquery.minicolors', $gmCore->gmedia_url . '/assets/minicolors/jquery.minicolors.css', array('gmedia-bootstrap'), '0.9.13');
585
  wp_enqueue_script('jquery.minicolors', $gmCore->gmedia_url . '/assets/minicolors/jquery.minicolors.js', array('jquery'), '0.9.13');
 
 
 
586
  }
587
  break;
588
  }
144
  $this->pages[] = add_submenu_page('GrandMedia', __('Gmedia Library', 'grand-media'), __('Gmedia Library', 'grand-media'), 'gmedia_library', 'GrandMedia', array(&$this, 'shell'));
145
  if(current_user_can('gmedia_library')){
146
  $this->pages[] = add_submenu_page('GrandMedia', __('Add Media Files', 'grand-media'), __('Add/Import Files', 'grand-media'), 'gmedia_upload', 'GrandMedia_AddMedia', array(&$this, 'shell'));
147
+ $this->pages[] = add_submenu_page('GrandMedia', __('Tags', 'grand-media'), __('Tags', 'grand-media'), 'gmedia_tag_manage', 'GrandMedia_Tags', array(&$this, 'shell'));
148
+ $this->pages[] = add_submenu_page('GrandMedia', __('Categories', 'grand-media'), __('Categories', 'grand-media'), 'gmedia_category_manage', 'GrandMedia_Categories', array(&$this, 'shell'));
149
+ $this->pages[] = add_submenu_page('GrandMedia', __('Albums', 'grand-media'), __('Albums', 'grand-media'), 'gmedia_album_manage', 'GrandMedia_Albums', array(&$this, 'shell'));
150
  $this->pages[] = add_submenu_page('GrandMedia', __('Gmedia Galleries', 'grand-media'), __('Galleries', 'grand-media'), 'gmedia_gallery_manage', 'GrandMedia_Galleries', array(&$this, 'shell'));
151
  $this->pages[] = add_submenu_page('GrandMedia', __('Modules', 'grand-media'), __('Modules', 'grand-media'), 'gmedia_gallery_manage', 'GrandMedia_Modules', array(&$this, 'shell'));
152
  $this->pages[] = add_submenu_page('GrandMedia', __('Gmedia Settings', 'grand-media'), __('Settings', 'grand-media'), 'manage_options', 'GrandMedia_Settings', array(&$this, 'shell'));
583
 
584
  wp_enqueue_style('jquery.minicolors', $gmCore->gmedia_url . '/assets/minicolors/jquery.minicolors.css', array('gmedia-bootstrap'), '0.9.13');
585
  wp_enqueue_script('jquery.minicolors', $gmCore->gmedia_url . '/assets/minicolors/jquery.minicolors.js', array('jquery'), '0.9.13');
586
+
587
+ wp_enqueue_style('spectrum');
588
+ wp_enqueue_script('spectrum');
589
  }
590
  break;
591
  }
admin/support.php CHANGED
@@ -67,6 +67,10 @@ function gmediaSupport(){
67
  $content .= "{$section}\r\n";
68
  $section = '';
69
  }
 
 
 
 
70
  $content .= "Message: \r\n{$message}\r\n\r\n";
71
  $headers = array(
72
  "From: Gmedia Support <support@gmedia.gallery>",
67
  $content .= "{$section}\r\n";
68
  $section = '';
69
  }
70
+
71
+ $license = empty($gmGallery->options['license_key'])? 'FREE' : $gmGallery->options['license_key'];
72
+ $content .= "License: {$license}\r\n";
73
+
74
  $content .= "Message: \r\n{$message}\r\n\r\n";
75
  $headers = array(
76
  "From: Gmedia Support <support@gmedia.gallery>",
changelog.txt CHANGED
@@ -1,3 +1,265 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  = 1.8.24 =
2
  * Fixed: Screen Settings on pages
3
  * Fixed: Preview of changed module
1
+
2
+ = v1.8.99 =
3
+ * Added: New free module - Cubik Lite (3D Cube Gallery)
4
+ * Added: Settings for Author profile page
5
+ * Added: Show Related Gmedia Metabox for Posts
6
+ * Added: Back button on Upload page
7
+ * Added: Show term description on standalone post
8
+ * Updated: Latest version of Lightbox script
9
+ * Improved: Compatibility with ajax themes
10
+ * Improved: Compatibility with JetPack plugin
11
+ * Fixed: Cover change error on Edit Item
12
+ * Fixed: Library Grid Mode on Safari
13
+ * Fixed: Refresh after edit item in popup
14
+ * Fixed: Actions on Edit Term page
15
+ * Fixed: Add/Edit comments for roles lower than editor
16
+ * Fixed: Error on servers with 'mbstring' disabled
17
+
18
+ = v1.8.98 =
19
+ * Fixed: Compatibility with "All in One SEO Pack" plugin
20
+ * Fixed: Load registered styles only once if there are few different gallery modules on the page
21
+ * Fixed: Module styles doesn't load when Raw output enabled in settings
22
+ * Fixed: Notice in Media Upload popup
23
+
24
+ = v1.8.97 =
25
+ * Changed: Shortcode css output
26
+ * Changed: Shortcode js output to avoid cache for new versions
27
+
28
+ = v1.8.96 =
29
+ * Added: Message "Upload complete" on Add Media page
30
+ * Fixed: Library grid on Safari
31
+ * Fixed: Minima module
32
+ * Improved: Shortcode output
33
+
34
+ = v1.8.95 =
35
+ * Added: Setting "Delete original images"
36
+ * Added: Setting to show Related Media for WP tags and categories archive pages
37
+ * Added: Setting to show Related Media for WP Posts based on tag names
38
+ * Fixed: Gallery Share button in the admin linked to wrong post
39
+ * Improved: Load module styles before the module content
40
+ * Improved: Clear cache after module update
41
+ * Improved: Do not show Reset Filter for author if there is only one author who can not view others media
42
+
43
+ = v1.8.94 =
44
+ * Fixed: Compatibility with Wordpress less than 4.4
45
+
46
+ = v1.8.93 =
47
+ * Added: Update Modules badge indicator
48
+ * Added: Widget for Gmedia Galleries
49
+ * Added: Show Albums on Menu page
50
+ * Added: Order By: "comment count", "created date", "views", "likes", "file size"
51
+ * Added: In "Batch Edit" renaming files with {index:0001} now keep leading zeroes
52
+ * Added: Option to disable "Title Case" for titles converted from filenames
53
+ * Fixed: Save Filename to Title when non English letters
54
+ * Fixed: Do not show non-published albums for images on the front-end
55
+ * Fixed: Gallery comments popup template for some themes
56
+ * Updated: Phantom gallery module to support gallery pagination, terms
57
+ * Updated: Other gallery modules
58
+ * Fixes and improvements
59
+
60
+ = v1.8.90 =
61
+ * Added: Alt Text field for image
62
+ * Added: Editor quick tag buttons for items description fields
63
+ * Added: "Add from Library" button on Edit Term page
64
+ * Added: "Upload to term" button on Edit Term page
65
+ * Added: Modal window to easily set link for items from existing content
66
+ * Added: Share, Delete actions on Edit Term page
67
+ * Added: Links to view "GmediaCloud Page" and "Term's WP Post" on Edit Term page
68
+ * Fixes and improvements
69
+
70
+
71
+ = v1.8.89 =
72
+ * Fixed: Auth redirect for ajaxurl loaded files on the front-end
73
+ * Added: When changing cover for item you'll see change immediately
74
+ * Added: Modal window to easily choose file cover, album cover and category cover
75
+ * Added: Modal window to easily set link for items from existing content
76
+ * Changed: Excluded gmedia items from WP Link query
77
+ * Small fixes and improvements
78
+
79
+ = v1.8.88 =
80
+ * Fixed: Upload when edit post
81
+ * Fixed: Compatibility with PHP 5.2
82
+
83
+ = v1.8.86 =
84
+ * Fixed: Fatal error bug on WP Media page
85
+
86
+ = v1.8.85 =
87
+ * Changed: Click on Thumbnail now open edit item
88
+ * Changed: To select item use checkboxes
89
+ * Improved: Library like view on edit Album page
90
+ * Improved: Library like view on edit Category page
91
+ * Improved: Storage of selected items
92
+ * Added: Field for Item order (custom order) in Album
93
+ * Other fixes and improvements
94
+
95
+ = v1.8.80 =
96
+ * Added: edit items in popup
97
+ * Added: tags dropdown list in Edit Mode
98
+ * Added: tooltips for admin elements
99
+ * Added: "Duplicate Gmedia Item" action
100
+ * Changed: grid mode view
101
+ * Fixed: waveplayer in admin
102
+ * Fixed: Add Album in Edit Mode
103
+ * Updated: Phantom gallery module new version
104
+
105
+ = v1.8.71 =
106
+ * Fixed: Compatibility with some plugins, which manipulate posts meta
107
+ * Fixed: Saving custom presets on Edit Gallery pages.
108
+ * Improvements for future iOS app version.
109
+
110
+ = v1.8.70 =
111
+ * Added: New Action to re-create selected images in Library
112
+ * Fixed: Author filter in Gmedia Library
113
+ * Fixed: Fatal error for some images without EXIF
114
+ * Updated: New compact look for comments in Phantom image gallery module
115
+ * Other fixes and improvements
116
+
117
+ = v1.8.63 =
118
+ * Fixed: admin background
119
+ * Fixed: Notice on Build Gallery Query popup
120
+ * Fixed: database error if photos have unknown characters in EXIF
121
+ * Fixed: Hide Gmedia Gallery button if it is not active for current post type
122
+ * Small fixes and improvements
123
+
124
+ = v1.8.62 =
125
+ * Added: Ability to change gallery preview background color
126
+ * Added: Global preset for modules (admin only)
127
+ * Fixed: Upload for sites with Punycode url
128
+ * Small fixes and improvements
129
+
130
+ = v1.8.61 =
131
+ * Fixed: Internal Server Error on some servers
132
+ * Fixed: Increased upload chunk size
133
+ * Fixed: Notice in Build Gallery Query popup, when MimeType chosen
134
+ * Added: Class for manipulating hex colors with PHP
135
+
136
+ = v1.8.60 =
137
+ * Fixed: Preset Preview
138
+ * Soon: New music module with waveform
139
+
140
+ = v1.8.59 =
141
+ * Fixed: Modules install not worked
142
+ * Fixed: Google Maps not worked on some servers
143
+ * Changed: Hide Presets for not installed modules
144
+ * Improved: wavesurfer.js script
145
+
146
+ = v1.8.58 =
147
+ * Added: Waveform for music files
148
+ * Added: Waveform music player in admin
149
+ * Added: Spinner on item edit
150
+ * Added: Clean cache of all major cache plugins when do some actions in Gmedia Gallery plugin
151
+ * Fixed: Database creation on some servers
152
+
153
+ = v1.8.57 =
154
+ * Updated: Compatibility with latest Gmedia Gallery iOS application version
155
+ * Fixed: Notice in Music Player playlist module
156
+
157
+ = v1.8.56 =
158
+ * Fixed: Apply preset for gallery
159
+ * Updated Music Player audio playlist module
160
+
161
+ = v1.8.55 =
162
+ * Added: Show Duplicates in Gmedia Library
163
+ * Added: Prevent duplicates been import
164
+ * Added: Open in Gmedia Library button to Edit Album/Category page
165
+ * Added: Login by email in Gmedia Gallery iOS app
166
+ * Fixes and Improvements
167
+
168
+ = v1.8.51 =
169
+ * New: PhotoTravlr image gallery module on Modules page
170
+ * Fixed: delete presets on Modules page
171
+
172
+ = v1.8.50 =
173
+ * Added: Page for creating Presets
174
+ * New: Modules page now shows also available presets for each module
175
+ * New: You can set global Module/Preset for terms
176
+ * New: You can set Module/Preset individual for each album or category
177
+ * Added: Tips for creating gallery's Query Args.
178
+ * Added: Shortcode preview for each term
179
+ * Bug Fixes & Improvements
180
+
181
+ = v1.8.27 =
182
+ * Added Open Graph Meta Image for Gmedia Posts
183
+ * Added more info about item on Gmedia Post page (exif, map, terms)
184
+ * Added 'style' parameter to shortcode, so user can add inline styles for gallery container
185
+ * Added 'class' parameter for shortcode, so user can add own classes to gallery container
186
+ * Fixes & improvements
187
+
188
+ = v1.8.26 =
189
+ * Enable/disable archive page option in Settings for gmedia library, albums, galleries.
190
+ * Fixes for iOS app
191
+
192
+ = v1.8.25 =
193
+ * Fixed: Compatibility with Ajax themes
194
+
195
+ = v1.8.24 =
196
+ * Fixed: Screen Settings on pages
197
+ * Fixed: Preview of changed module
198
+ * Fixed: Google Maps JS error in admin on some installations
199
+
200
+ = v1.8.23 =
201
+ * Fixed: If gallery source is album, then set order from album (with ability to overwrite by query parameter)
202
+
203
+ = v1.8.22 =
204
+ * Fixed: Quick Galleries items order
205
+
206
+ = v1.8.21 =
207
+ * Fixed: Fatal Error on album sort
208
+
209
+ = v1.8.20 =
210
+ * Compatibility with WP 4.5
211
+ * Changed: Removed Custom Filters
212
+ * Changed: Taxonomies are now separate pages (Albums, Categories, Tags)
213
+ * Changed: Galleries are now have query builder (like in custom filters) to make custom queries
214
+ * Improved: Gallery Preview now resizable
215
+ * Improved: Isolation Mode
216
+ * Added: Custom Fields to Galleries
217
+ * Added: Settings for default albums 'status', 'order', 'orderby'
218
+ * Added: Setting for Default Module
219
+ * Added: 'category__and' query parameter
220
+ * Fixed: bugfixes
221
+ * Code refactoring and other improvements
222
+
223
+ = v1.8.14 =
224
+ * Fixed: Multiple categories in Edit Mode
225
+
226
+ = v1.8.12 =
227
+ * New: Ability to create own categories
228
+ * New: Ability to assign few categories to one item
229
+ * New: Ability to assign categories to non images
230
+ * Added: New capability for managing categories
231
+
232
+ = v1.8.10 =
233
+ * Added: Stack for Gmedia Items
234
+ * New: Selected items now cleared automatically after Action
235
+ * Changed: Numeric title from EXIF will be saved to DB
236
+
237
+ = v1.8.08 =
238
+ * Improved Phantom gallery module
239
+ * Improved installations of modules
240
+ * Fixed Install module ZIP
241
+ * Fixed loading comments on some themes
242
+ * Removed Font-Awesome from GmediaCloud page to improve loading speed
243
+
244
+ = v1.8.07 =
245
+ * Fixed: Modules update
246
+ * Updated: Phantom photo gallery module (fixed few settings)
247
+
248
+ = v1.8.06 =
249
+ * Fixed: Notice on first install
250
+ * Fixed: Ignored uninstall settings and gallery plugin doesn't delete database records and delete all files
251
+
252
+ = v1.8.05 =
253
+ * Improved: update process
254
+ * Fixed: access point for Gmedia Gallery iOS app
255
+ * Fixed: comments in Phantom photo gallery module not worked on some themes
256
+
257
+ = v1.8.0 =
258
+ * Added: Comments for Gmedia Items
259
+ * Added: WP search integration for gmedia items, albums, galleries, filters
260
+ * New: Phantom gallery module with comments support
261
+ * Fixed: gallery search in admin and a lot of other bugs that I don't remember
262
+
263
  = 1.8.24 =
264
  * Fixed: Screen Settings on pages
265
  * Fixed: Preview of changed module
grand-media.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Gmedia Gallery
4
  * Plugin URI: http://wordpress.org/extend/plugins/grand-media/
5
  * Description: Gmedia Gallery - powerful media library plugin for creating beautiful galleries and managing files.
6
- * Version: 1.12.1
7
  * Author: Rattus
8
  * Author URI: https://codeasily.com/
9
  * Requires at least: 3.7
@@ -42,7 +42,7 @@ if( !class_exists('Gmedia')){
42
  */
43
  class Gmedia {
44
 
45
- var $version = '1.12.1';
46
  var $dbversion = '1.8.0';
47
  var $minium_WP = '3.7';
48
  var $options = '';
3
  * Plugin Name: Gmedia Gallery
4
  * Plugin URI: http://wordpress.org/extend/plugins/grand-media/
5
  * Description: Gmedia Gallery - powerful media library plugin for creating beautiful galleries and managing files.
6
+ * Version: 1.12.4
7
  * Author: Rattus
8
  * Author URI: https://codeasily.com/
9
  * Requires at least: 3.7
42
  */
43
  class Gmedia {
44
 
45
+ var $version = '1.12.4';
46
  var $dbversion = '1.8.0';
47
  var $minium_WP = '3.7';
48
  var $options = '';
inc/frontend.filters.php CHANGED
@@ -784,6 +784,7 @@ function gmedia_post_type__the_content($content){
784
  $output = '';
785
  $gmedia_term = $gmDB->get_term($post->term_id);
786
  if($gmedia_term && !is_wp_error($gmedia_term)){
 
787
  $current_filter = current_filter();
788
  if('get_the_excerpt' == $current_filter){
789
  $cover_id = $gmDB->get_metadata('gmedia_term', $post->term_id, '_cover', true);
784
  $output = '';
785
  $gmedia_term = $gmDB->get_term($post->term_id);
786
  if($gmedia_term && !is_wp_error($gmedia_term)){
787
+ add_filter( 'comments_open', '__return_false' );
788
  $current_filter = current_filter();
789
  if('get_the_excerpt' == $current_filter){
790
  $cover_id = $gmDB->get_metadata('gmedia_term', $post->term_id, '_cover', true);
module/phantom/init.php CHANGED
@@ -130,11 +130,6 @@ if(!isset($shortcode_raw)){
130
  $item_data['post_link'] = get_permalink($item->post_id);
131
  }
132
 
133
- if($allsettings['show_download_button']){
134
- $item_data['download'] = $download_link;
135
- $item_data['filename'] = $item->gmuid;
136
- }
137
-
138
  if($item->link){
139
  $item_data['link'] = $item->link;
140
  $item_data['target'] = $link_target;
130
  $item_data['post_link'] = get_permalink($item->post_id);
131
  }
132
 
 
 
 
 
 
133
  if($item->link){
134
  $item_data['link'] = $item->link;
135
  $item_data['target'] = $link_target;
module/phantom/settings.php CHANGED
@@ -51,7 +51,6 @@ $default_options = array(
51
  'show_tags' => '1',
52
  'show_categories' => '1',
53
  'show_albums' => '1',
54
- 'show_download_button' => '1',
55
  'initRPdelay' => '200',
56
  'customCSS' => ''
57
  );
@@ -199,12 +198,6 @@ $options_tree = array(
199
  'attr' => '',
200
  'text' => ''
201
  ),
202
- 'show_download_button' => array(
203
- 'label' => __('Show Download Button', 'grand-media'),
204
- 'tag' => 'checkbox',
205
- 'attr' => '',
206
- 'text' => ''
207
- ),
208
  )
209
  ),
210
  array(
51
  'show_tags' => '1',
52
  'show_categories' => '1',
53
  'show_albums' => '1',
 
54
  'initRPdelay' => '200',
55
  'customCSS' => ''
56
  );
198
  'attr' => '',
199
  'text' => ''
200
  ),
 
 
 
 
 
 
201
  )
202
  ),
203
  array(
module/photomania/index.php CHANGED
@@ -3,7 +3,7 @@ $module_info = array(
3
  'base' => 'photomania',
4
  'name' => 'photomania',
5
  'title' => 'PhotoMania',
6
- 'version' => '1.4',
7
  'author' => 'CodEasily.com',
8
  'description' => __('Responsive Gallery based on jQuery with keyboard control, displaying thumbs, author, title and optional description, download, link button, like button, full window and full screen mode', 'grand-media'),
9
  'type' => 'gallery',
3
  'base' => 'photomania',
4
  'name' => 'photomania',
5
  'title' => 'PhotoMania',
6
+ 'version' => '1.5',
7
  'author' => 'CodEasily.com',
8
  'description' => __('Responsive Gallery based on jQuery with keyboard control, displaying thumbs, author, title and optional description, download, link button, like button, full window and full screen mode', 'grand-media'),
9
  'type' => 'gallery',
module/photomania/init.php CHANGED
@@ -232,10 +232,11 @@ if ( ! $is_bot ) {
232
  <?php } ?>
233
  <div class="gmpm_title_author">
234
  <div class="gmpm_title"><?php echo $content['data'][ $iSlide ]['title']; ?></div>
235
-
236
  <div class="gmpm_author_name">
237
  <a class="gmpm_author_link" href="<?php echo urldecode( $content['data'][ $iSlide ]['author']['posts_link'] ); ?>"><?php echo $content['data'][ $iSlide ]['author']['name']; ?></a>
238
  </div>
 
239
  </div>
240
  </div>
241
  <div class="gmpm_actions gmpm_clearfix">
232
  <?php } ?>
233
  <div class="gmpm_title_author">
234
  <div class="gmpm_title"><?php echo $content['data'][ $iSlide ]['title']; ?></div>
235
+ <?php if ( ! empty( $allsettings['show_author_name'] ) ) { ?>
236
  <div class="gmpm_author_name">
237
  <a class="gmpm_author_link" href="<?php echo urldecode( $content['data'][ $iSlide ]['author']['posts_link'] ); ?>"><?php echo $content['data'][ $iSlide ]['author']['name']; ?></a>
238
  </div>
239
+ <?php } ?>
240
  </div>
241
  </div>
242
  <div class="gmpm_actions gmpm_clearfix">
module/photomania/js/photomania.js CHANGED
@@ -62,6 +62,7 @@
62
  show_comments: true,
63
  show_description: true,
64
  show_author_avatar: true,
 
65
  show_share_button: true,
66
  show_like_button: true
67
  },
@@ -364,7 +365,9 @@
364
  if (self.opts.show_author_avatar) {
365
  $('.gmpm_user_avatar_link', photo_show).attr('href', decodeURIComponent(item.author.posts_link)).html($('<img />').attr('src', item.author.avatar));
366
  }
367
- $('.gmpm_author_link', photo_show).attr('href', decodeURIComponent(item.author.posts_link)).text(item.author.name);
 
 
368
 
369
  $('.gmpm_title', photo_show).text(item.title);
370
  if (self.opts.show_download_button) {
62
  show_comments: true,
63
  show_description: true,
64
  show_author_avatar: true,
65
+ show_author_name: true,
66
  show_share_button: true,
67
  show_like_button: true
68
  },
365
  if (self.opts.show_author_avatar) {
366
  $('.gmpm_user_avatar_link', photo_show).attr('href', decodeURIComponent(item.author.posts_link)).html($('<img />').attr('src', item.author.avatar));
367
  }
368
+ if (self.opts.show_author_name){
369
+ $('.gmpm_author_link', photo_show).attr('href', decodeURIComponent(item.author.posts_link)).text(item.author.name);
370
+ }
371
 
372
  $('.gmpm_title', photo_show).text(item.title);
373
  if (self.opts.show_download_button) {
module/photomania/settings.php CHANGED
@@ -17,6 +17,7 @@ $default_options = array(
17
  'link_button_target' => '_self',
18
  'show_description' => '1',
19
  'show_author_avatar' => '1',
 
20
  'show_share_button' => '1',
21
  'show_like_button' => '1',
22
  'link_color' => '0099e5',
@@ -125,6 +126,12 @@ $options_tree = array(
125
  'attr' => '',
126
  'text' => '',
127
  ),
 
 
 
 
 
 
128
  'show_share_button' => array(
129
  'label' => __('Show Share Button', 'grand-media'),
130
  'tag' => 'checkbox',
17
  'link_button_target' => '_self',
18
  'show_description' => '1',
19
  'show_author_avatar' => '1',
20
+ 'show_author_name' => '1',
21
  'show_share_button' => '1',
22
  'show_like_button' => '1',
23
  'link_color' => '0099e5',
126
  'attr' => '',
127
  'text' => '',
128
  ),
129
+ 'show_author_name' => array(
130
+ 'label' => __('Show Author Name', 'grand-media'),
131
+ 'tag' => 'checkbox',
132
+ 'attr' => '',
133
+ 'text' => '',
134
+ ),
135
  'show_share_button' => array(
136
  'label' => __('Show Share Button', 'grand-media'),
137
  'tag' => 'checkbox',
readme.txt CHANGED
@@ -1,4 +1,4 @@
1
- === Gallery - Gmedia Photo Gallery. Music Player, Video Gallery, Media Library ===
2
  Contributors: pasyuk
3
  Donate link: https://codeasily.com/donate/
4
  Tags: gallery, albums, photo gallery, gallery lightbox, gallery comments
@@ -8,11 +8,11 @@ Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
11
- Gallery Gmedia - photo gallery with comments, gallery with EXIF & Metadata, gallery with map geolocation (GPS), private galleries, music gallery & video gallery.
12
 
13
  == Description ==
14
 
15
- #### Gallery - Gmedia Photo Gallery
16
 
17
  Manage files, show image galleries and photo slideshows, play music on your site with Gmedia Gallery plugin. Gmedia Gallery plugin provides a comprehensive interface for handling galleries, images, video & audio files.
18
 
@@ -21,12 +21,13 @@ Manage files, show image galleries and photo slideshows, play music on your site
21
  > Now You can upload and manage your Gmedia Library (images, tags, albums) anywhere!!!
22
  > Get new **[Gmedia Gallery application for iPhone](https://codeasily.com/gmedia-ios-app/)**
23
 
24
- With Gmedia Gallery plugin you can upload an unlimited number of photo and audio files, create dozens of galleries and playlists, group pictures and other files in albums, andadd tags for each file.
25
  Handle any file format and link any files with images in few clicks. You can import images with captions from Worpress Media Library, Flagallery plugin and from NextGen Gallery plugin right to Gmedia Library.
26
 
27
  #### Demos:
28
 
29
- * [AlbumsList](https://codeasily.com/portfolio/gmedia-gallery-modules/albumslist/) - Splash Slider Gallery with custom lightbox.
 
30
  * [WoowSlider](https://codeasily.com/portfolio/gmedia-gallery-modules/woowslider/) - unique responsive Slider.
31
  * [AlbumsGrid](https://codeasily.com/portfolio/gmedia-gallery-modules/albumsgrid/) - Splash Gallery for your Albums (terms).
32
  * [PhotoCluster](https://codeasily.com/portfolio/gmedia-gallery-modules/photocluster/) - Accordeon Splash Slider for your Albums.
@@ -41,9 +42,9 @@ Handle any file format and link any files with images in few clicks. You can imp
41
  * [Music Player](https://codeasily.com/portfolio/gmedia-gallery-modules/music-player/) - audio player with playlist.
42
  * [More Galleries...](https://codeasily.com/portfolio/gmedia-gallery-modules/)
43
 
44
- = Gallery Links =
45
 
46
- **[Gallery Home Page](https://codeasily.com/)**, **[Gallery Skins Portfolio](https://codeasily.com/portfolio/gmedia-gallery-modules/)**, **[Gmedia Gallery Support Forum](https://codeasily.com/community/forum/gmedia-gallery-wordpress-plugin/)**
47
 
48
  = How to create FREE responsive photo gallery =
49
 
@@ -53,15 +54,13 @@ https://www.youtube.com/watch?v=0ZBb9H4CG8U
53
 
54
  Friendly for iPad and iPhone. Doesn’t slow down your website. **Unlimited galleries** on your website with **unlimited customizations** for each gallery.
55
 
56
- Help me make it **best gallery** plugin: test it and [write suggestions](https://codeasily.com/community/forum/gmedia-gallery-wordpress-plugin/) how it could be improved in feature versions.
57
-
58
  #### Gallery Features
59
 
60
  * New in 1.9.*: **New free gallery module: Cubik Lite - 3D Cube Gallery (HTML5, CSS3, JS, responsive)**
61
  * New in 1.9.*: **Option to show own Gmedia Albums on Author Pofile page**
62
  * New in 1.9.*: **[Option to automatically create gallery in Post with related images (images with the same tags as in Post)](https://codeasily.com/portfolio/gmedia-gallery-modules/)**
63
  * New in 1.9.*: **Show Related Media for WP tags and categories archive pages**
64
- * **Widget for Album and Gallery widget**
65
  * **Comments for Gmedia Items**
66
  * **Integration with WordPress Search. Gmedia items looks like a regular post with comments. Also you can search for albums and galleries**
67
  * **Music player & WaveForm for music. Create and save music waveforms & display them nicely with WaveSurfer music module**
@@ -70,7 +69,6 @@ Help me make it **best gallery** plugin: test it and [write suggestions](https:/
70
  * **Full Page Gallery Template - "GmediaCloud" pages with permalink support**
71
  * **Share Images, Albums, Tags, Galleries via admin panel**
72
  * **Create custom gallery query filters with selected parameters**
73
- * **Custom fields for Files and Albums, so developers can create their own unique gallery modules**
74
  * **Cover for Album**
75
  * **Mobile friendly, responsive gallery**
76
  * **Add tags, assign categories and group images in albums**
@@ -92,29 +90,21 @@ Help me make it **best gallery** plugin: test it and [write suggestions](https:/
92
  * **Batch operations with selected Gmedia items**
93
 
94
 
95
- = Gallery TODO List =
96
-
97
- * More Batch operations with selected Gmedia items (work in progress..)
98
- * Related Post images on Edit Post (work in progress..)
99
- * Share albums to socials from admin panel (in queue)
100
- * More modules for creating photo gallery, audio playlist, video playlist
101
- * Watermark/Crop image feature
102
-
103
  Create Slideshow Galleries with using tags and automatically add images to several galleries by assigning these tags to uploaded photos.
104
 
105
- Easily add photos from Gmedia Gallery Library to the Post by using Add Media -> Gmedia Gallery tab MetaBox. One click for inserting image or gallery right in your page.
106
 
107
- Set Post Featured Image (Post Thumbnail) from Gmedia Gallery Library.
108
 
109
  With our versatile plugin you can magically change the look and feel of your photo gallery, a huge selection of modules will help you embed the gallery in your posts and web pages making them feel complete. You will appreciate user friendly interface of admin panel, making the creation of unique and contemporary style gallery an easy and fun process, and attracting increasing attention from viewers.
110
 
111
  Gmedia Gallery is the result of hundreds of hours of working to bring you the ultimate photo managing tool. With a lot of features, flexible options and a wide range of customizations, editing and publishing galleries, Gmedia Gallery is a smart addition to any blogger's arsenal. Whether you're photographer or a blogger, you'll like the Gmedia Gallery plugin.
112
 
113
- **[Gallery Translations](https://translate.wordpress.org/projects/wp-plugins/grand-media)**
114
 
115
  == Installation ==
116
 
117
- 1. To install gallery plugin upload `grand-media` folder to the `/wp-content/plugins/` directory or install Gmedia Gallery via WP Dashboard
118
  2. Activate the gallery plugin through the 'Plugins' menu in WordPress
119
  3. Go to Gmedia Gallery Add / Import Files and upload images (assign tags or album to uploaded images right in place)
120
  4. Go to Create / Manage Galleries... -> click Create Gallery button -> choose module for the gallery -> click Build Query and choose albums or tags to grab images from -> Save
@@ -124,31 +114,23 @@ Gmedia Gallery is the result of hundreds of hours of working to bring you the ul
124
 
125
  = Where I can ask support question about gallery? =
126
 
127
- Use [Gmedia Gallery support forum](https://codeasily.com/community/forum/gmedia-gallery-wordpress-plugin/) If you have any troubles with gmedia gallery plugin. I'll try to answer ASAP
128
 
129
  == Screenshots ==
130
 
131
- 1. Gmedia Gallery Module - WaveSurfer Music Gallery
132
- 2. Gmedia Gallery iOS App - Home page
133
- 3. Gmedia Gallery iOS App - Album View
134
- 4. Gmedia Gallery iOS App - Image Edit
135
- 5. Gmedia Gallery iOS App - List of Albums
136
- 6. Gmedia Gallery Admin Area - Gmedia Library Edit Mode
137
- 7. Gmedia Gallery Admin Area - Create Gallery with Afflux Module
138
- 8. Gmedia Gallery Admin Area - Add shortcode to Post - Gmedia MetaBox
139
- 9. Gmedia Gallery Admin Area - Upload images to Gmedia Library
140
- 10. Gmedia Gallery Admin Area - Import galleries from Flagallery plugin
141
- 11. Gmedia Gallery Admin Area - Process of import galleries from Flagallery plugin
142
- 12. Gmedia Gallery Admin Area - Gmedia Library
143
- 13. Gmedia Gallery Admin Area - Gmedia Library Filters
144
-
145
- == Other Notes ==
146
-
147
- [Gmedia Gallery plugin with wide range of functionality. Responsive gallery, gallery with multi categories, gallery with tags, gallery with geolocation, gallery with comments, advanced gallery images management tools](https://codeasily.com/).
148
-
149
- **Gallery Gmedia it's very useful and beautiful element of website interface. Gmedia Gallery one of the most powerful wordpress photo gallery plugin with comments, geolocation. Gmedia Gallery interface implemented with full set of settings for managing files (like in Media Library only better) and creating mixed galleries. All image galleries have a variety of options that could be easily changed, as result you can make gallery perfectly fit your website.**
150
-
151
- Gmedia Gallery - is Grand Media Gallery (photo gallery, image gallery, music gallery, video gallery, music player, music playlist, media library, gallery portfolio, gallery slider, photo slider, photogallery, imagegallery, slideshow gallery, gallery with comments, gallery with map, gallery with iOS application, gallery with categories, gallery with tags, album gallery, gallery with EXIF info)
152
 
153
  = Minimum requirements for Gmedia Gallery =
154
 
@@ -158,41 +140,51 @@ Gmedia Gallery - is Grand Media Gallery (photo gallery, image gallery, music gal
158
  == Changelog ==
159
 
160
  = Modules Updated =
161
- * Go to Gmedia Gallery Modules page and update installed premium modules to latest versions
 
 
 
 
 
 
162
 
163
- = Gmedia Gallery v1.12.1 =
 
 
 
 
164
  * Added related media for Gmedia Items (support in modules will be added in the future).
165
  * Updated mediaelements.js library to the latest version.
166
  * Added Update button for CodeCanyon's modules.
167
  * Fixed default order for gmedia__in query.
168
 
169
- = Gmedia Gallery v1.11.7 =
170
  * Added new color picker with rgba support.
171
  * Fixed JS error on edit album page.
172
 
173
- = Gmedia Gallery v1.11.6 =
174
  * Added functionality for the future module.
175
 
176
- = Gmedia Gallery v1.11.5 =
177
  * Removed debug info on admin page
178
  * Added "Date" field on Edit Album page
179
 
180
- = Gmedia Gallery v1.11.4 =
181
  * Compatible with WP v4.9
182
  * Fixed CSS for JQ Music Player module.
183
 
184
- = Gmedia Gallery v1.11.3 =
185
  * Small fixes and improvements
186
 
187
- = Gmedia Gallery v1.11.2 =
188
  * Fixed iOS app service activation on some servers
189
  * Added premium gallery module
190
 
191
- = Gmedia Gallery v1.11.1 =
192
  * Fixed Modules update
193
  * Fixed PHP Notice
194
 
195
- = Gmedia Gallery v1.11.0 =
196
  * Added Support page
197
  * Added user permission to enable GmediaService
198
  * Added user feedback form before deactivate plugin
@@ -200,379 +192,118 @@ Gmedia Gallery - is Grand Media Gallery (photo gallery, image gallery, music gal
200
  * Hide flash modules from the list of available modules
201
  * Small fixes and improvements
202
 
203
- = Gmedia Gallery v1.10.07 =
204
  * Added files in the import tree view
205
  * Added logging of views and likes from iOS app
206
  * Fixed links to home website
207
  * Fixed PHP Notice when original image is not available on the server
208
 
209
- = Gmedia Gallery v1.10.06 =
210
  * Fixed iOS app service activation on some servers
211
  * Fixed non-images single posts was empty
212
 
213
- = Gmedia Gallery v1.10.05 =
214
  * Fixed compatibility with WP-SpamShield
215
  * Modules admin page new layout with filters by feature
216
 
217
- = Gmedia Gallery v1.10.04 =
218
  * Added option to disable Gmedia Logger
219
  * Added compatibility with the future gallery module
220
 
221
- = Gmedia Gallery v1.10.03 =
222
  * Added Gmedia Logger as a premium option
223
  * Fixed ENTER key on pagination
224
  * Other small improvements
225
 
226
- = Gmedia Gallery v1.9.20 =
227
  * Added few action hooks for developers
228
 
229
- = Gmedia Gallery v1.9.19 =
230
  * Query Builder modal small fix
231
  * Fixed PHP Notice
232
  * Fixed sort order in AlbumsGrid module
233
 
234
- = Gmedia Gallery v1.9.18 =
235
  * Added Settings to hide sidebar sections
236
  * Modules functions improvements
237
 
238
- = Gmedia Gallery v1.9.17 =
239
  * Use Album Covers as default artwork for non-image files
240
  * Preparations for the new gallery module
241
 
242
- = Gmedia Gallery v1.9.15 =
243
  * Build Query fixes
244
  * Minor bug fixes
245
 
246
- = Gmedia Gallery v1.9.14 =
247
  * Update if you have some issues with installing premium modules
248
 
249
- = Gmedia Gallery v1.9.13 =
250
  * Fixed: "Add from Library" button on edit term page
251
 
252
- = Gmedia Gallery v1.9.12 =
253
  * Fixed: iOS application upload to Album (Category, tag)
254
 
255
- = Gmedia Gallery v1.9.11 =
256
  * Fixed: Save WaveForm for music files not worked
257
 
258
- = Gmedia Gallery v1.9.10 =
259
  * Fixed: Compatibility with StarBox plugin
260
  * Fixed: iOS app not worked on some servers configurations
261
 
262
- = Gmedia Gallery v1.9.9 =
263
  * Fixed: FlipGrid module not worked if GmediaService disabled
264
 
265
- = Gmedia Gallery v1.9.8 =
266
  * Fixed: Modules remote XML error
267
  * Added: FlipGrid module
268
 
269
- = Gmedia Gallery v1.9.7 =
270
  * Fixed: Upload of TIFF files
271
  * Added: Cover field for non editable images
272
 
273
- = Gmedia Gallery v1.9.6 =
274
  * Added: Visual media select in Query Builder
275
  * Fixed: minor bug fixes
276
 
277
- = Gmedia Gallery v1.9.5 =
278
  * Added: og: meta tags for Facebook and Google+ share
279
  * Updated Modules
280
 
281
- = Gmedia Gallery v1.9.4 =
282
  * Added: Reset button to Build Query
283
  * Updated: Single Gmedia Post
284
  * Updated: Modules: Cubik Lite, Phantom
285
  * Other small improvements
286
 
287
- = Gmedia Gallery v1.9.3 =
288
  * Updated: Phantom module
289
  * Updated: Third party JS libraries
290
  * Improved: Duplicate item now copy all meta and terms too
291
  * Improved: Gmedia permalink changing
292
 
293
- = Gmedia Gallery v1.9.2 =
294
  * Updated: Phantom, Phantom Pro, Cubik Lite, Cubik gallery modules now support youtube/vimeo videos and google maps embed in lightbox
295
  * Updated: Music modules compatibility with some themes
296
  * Compatible with Wordpress 4.7
297
 
298
- = Gmedia Gallery v1.9.1 =
299
  * Fixed: Tag edit
300
  * Fixed: Gmedia iOS app compatibility with WP-SpamShield plugin
301
  * Fixed: Compatibility Gmedia Terms archive pages with some themes
302
  * Fixed: Author profile page not shows Posts
303
  * Fixed: Change gallery module doesn't load default/global preset
304
 
305
- = Gmedia Gallery v1.9.0 =
306
  * Added: Batch edit Module/Preset for selected Galleries
307
  * Fixed: Notice in compatibility.php
308
  * Fixed: subscribers now can leave comments for private gmedia items
309
  * Updated: Phantom gallery module
310
  * Updated: PhotoMania gallery module
311
 
312
- = Gmedia Gallery v1.8.99 =
313
- * Added: New free module - Cubik Lite (3D Cube Gallery)
314
- * Added: Settings for Author profile page
315
- * Added: Show Related Gmedia Metabox for Posts
316
- * Added: Back button on Upload page
317
- * Added: Show term description on standalone post
318
- * Updated: Latest version of Lightbox script
319
- * Improved: Compatibility with ajax themes
320
- * Improved: Compatibility with JetPack plugin
321
- * Fixed: Cover change error on Edit Item
322
- * Fixed: Library Grid Mode on Safari
323
- * Fixed: Refresh after edit item in popup
324
- * Fixed: Actions on Edit Term page
325
- * Fixed: Add/Edit comments for roles lower than editor
326
- * Fixed: Error on servers with 'mbstring' disabled
327
-
328
- = Gmedia Gallery v1.8.98 =
329
- * Fixed: Compatibility with "All in One SEO Pack" plugin
330
- * Fixed: Load registered styles only once if there are few different gallery modules on the page
331
- * Fixed: Module styles doesn't load when Raw output enabled in settings
332
- * Fixed: Notice in Media Upload popup
333
-
334
- = Gmedia Gallery v1.8.97 =
335
- * Changed: Shortcode css output
336
- * Changed: Shortcode js output to avoid cache for new versions
337
-
338
- = Gmedia Gallery v1.8.96 =
339
- * Added: Message "Upload complete" on Add Media page
340
- * Fixed: Library grid on Safari
341
- * Fixed: Minima module
342
- * Improved: Shortcode output
343
-
344
- = Gmedia Gallery v1.8.95 =
345
- * Added: Setting "Delete original images"
346
- * Added: Setting to show Related Media for WP tags and categories archive pages
347
- * Added: Setting to show Related Media for WP Posts based on tag names
348
- * Fixed: Gallery Share button in the admin linked to wrong post
349
- * Improved: Load module styles before the module content
350
- * Improved: Clear cache after module update
351
- * Improved: Do not show Reset Filter for author if there is only one author who can not view others media
352
-
353
- = Gmedia Gallery v1.8.94 =
354
- * Fixed: Compatibility with Wordpress less than 4.4
355
-
356
- = Gmedia Gallery v1.8.93 =
357
- * Added: Update Modules badge indicator
358
- * Added: Widget for Gmedia Galleries
359
- * Added: Show Albums on Menu page
360
- * Added: Order By: "comment count", "created date", "views", "likes", "file size"
361
- * Added: In "Batch Edit" renaming files with {index:0001} now keep leading zeroes
362
- * Added: Option to disable "Title Case" for titles converted from filenames
363
- * Fixed: Save Filename to Title when non English letters
364
- * Fixed: Do not show non-published albums for images on the front-end
365
- * Fixed: Gallery comments popup template for some themes
366
- * Updated: Phantom gallery module to support gallery pagination, terms
367
- * Updated: Other gallery modules
368
- * Fixes and improvements
369
-
370
- = Gmedia Gallery v1.8.90 =
371
- * Added: Alt Text field for image
372
- * Added: Editor quick tag buttons for items description fields
373
- * Added: "Add from Library" button on Edit Term page
374
- * Added: "Upload to term" button on Edit Term page
375
- * Added: Modal window to easily set link for items from existing content
376
- * Added: Share, Delete actions on Edit Term page
377
- * Added: Links to view "GmediaCloud Page" and "Term's WP Post" on Edit Term page
378
- * Fixes and improvements
379
-
380
-
381
- = Gmedia Gallery v1.8.89 =
382
- * Fixed: Auth redirect for ajaxurl loaded files on the front-end
383
- * Added: When changing cover for item you'll see change immediately
384
- * Added: Modal window to easily choose file cover, album cover and category cover
385
- * Added: Modal window to easily set link for items from existing content
386
- * Changed: Excluded gmedia items from WP Link query
387
- * Small fixes and improvements
388
-
389
- = Gmedia Gallery v1.8.88 =
390
- * Fixed: Upload when edit post
391
- * Fixed: Compatibility with PHP 5.2
392
-
393
- = Gmedia Gallery v1.8.86 =
394
- * Fixed: Fatal error bug on WP Media page
395
-
396
- = Gmedia Gallery v1.8.85 =
397
- * Changed: Click on Thumbnail now open edit item
398
- * Changed: To select item use checkboxes
399
- * Improved: Library like view on edit Album page
400
- * Improved: Library like view on edit Category page
401
- * Improved: Storage of selected items
402
- * Added: Field for Item order (custom order) in Album
403
- * Other fixes and improvements
404
-
405
- = Gmedia Gallery v1.8.80 =
406
- * Added: edit items in popup
407
- * Added: tags dropdown list in Edit Mode
408
- * Added: tooltips for admin elements
409
- * Added: "Duplicate Gmedia Item" action
410
- * Changed: grid mode view
411
- * Fixed: waveplayer in admin
412
- * Fixed: Add Album in Edit Mode
413
- * Updated: Phantom gallery module new version
414
-
415
- = Gmedia Gallery v1.8.71 =
416
- * Fixed: Compatibility with some plugins, which manipulate posts meta
417
- * Fixed: Saving custom presets on Edit Gallery pages.
418
- * Improvements for future iOS app version.
419
-
420
- = Gmedia Gallery v1.8.70 =
421
- * Added: New Action to re-create selected images in Library
422
- * Fixed: Author filter in Gmedia Library
423
- * Fixed: Fatal error for some images without EXIF
424
- * Updated: New compact look for comments in Phantom image gallery module
425
- * Other fixes and improvements
426
-
427
- = Gmedia Gallery v1.8.63 =
428
- * Fixed: admin background
429
- * Fixed: Notice on Build Gallery Query popup
430
- * Fixed: database error if photos have unknown characters in EXIF
431
- * Fixed: Hide Gmedia Gallery button if it is not active for current post type
432
- * Small fixes and improvements
433
-
434
- = Gmedia Gallery v1.8.62 =
435
- * Added: Ability to change gallery preview background color
436
- * Added: Global preset for modules (admin only)
437
- * Fixed: Upload for sites with Punycode url
438
- * Small fixes and improvements
439
-
440
- = Gmedia Gallery v1.8.61 =
441
- * Fixed: Internal Server Error on some servers
442
- * Fixed: Increased upload chunk size
443
- * Fixed: Notice in Build Gallery Query popup, when MimeType chosen
444
- * Added: Class for manipulating hex colors with PHP
445
-
446
- = Gmedia Gallery v1.8.60 =
447
- * Fixed: Preset Preview
448
- * Soon: New music module with waveform
449
-
450
- = Gmedia Gallery v1.8.59 =
451
- * Fixed: Modules install not worked
452
- * Fixed: Google Maps not worked on some servers
453
- * Changed: Hide Presets for not installed modules
454
- * Improved: wavesurfer.js script
455
-
456
- = Gmedia Gallery v1.8.58 =
457
- * Added: Waveform for music files
458
- * Added: Waveform music player in admin
459
- * Added: Spinner on item edit
460
- * Added: Clean cache of all major cache plugins when do some actions in Gmedia Gallery plugin
461
- * Fixed: Database creation on some servers
462
-
463
- = Gmedia Gallery v1.8.57 =
464
- * Updated: Compatibility with latest Gmedia Gallery iOS application version
465
- * Fixed: Notice in Music Player playlist module
466
-
467
- = Gmedia Gallery v1.8.56 =
468
- * Fixed: Apply preset for gallery
469
- * Updated Music Player audio playlist module
470
-
471
- = Gmedia Gallery v1.8.55 =
472
- * Added: Show Duplicates in Gmedia Library
473
- * Added: Prevent duplicates been import
474
- * Added: Open in Gmedia Library button to Edit Album/Category page
475
- * Added: Login by email in Gmedia Gallery iOS app
476
- * Fixes and Improvements
477
-
478
- = Gmedia Gallery v1.8.51 =
479
- * New: PhotoTravlr image gallery module on Modules page
480
- * Fixed: delete presets on Modules page
481
-
482
- = Gmedia Gallery v1.8.50 =
483
- * Added: Page for creating Presets
484
- * New: Modules page now shows also available presets for each module
485
- * New: You can set global Module/Preset for terms
486
- * New: You can set Module/Preset individual for each album or category
487
- * Added: Tips for creating gallery's Query Args.
488
- * Added: Shortcode preview for each term
489
- * Bug Fixes & Improvements
490
-
491
- = Gmedia Gallery v1.8.27 =
492
- * Added Open Graph Meta Image for Gmedia Posts
493
- * Added more info about item on Gmedia Post page (exif, map, terms)
494
- * Added 'style' parameter to shortcode, so user can add inline styles for gallery container
495
- * Added 'class' parameter for shortcode, so user can add own classes to gallery container
496
- * Fixes & improvements
497
-
498
- = Gmedia Gallery v1.8.26 =
499
- * Enable/disable archive page option in Settings for gmedia library, albums, galleries.
500
- * Fixes for iOS app
501
-
502
- = Gmedia Gallery v1.8.25 =
503
- * Fixed: Compatibility with Ajax themes
504
-
505
- = Gmedia Gallery v1.8.24 =
506
- * Fixed: Screen Settings on pages
507
- * Fixed: Preview of changed module
508
- * Fixed: Google Maps JS error in admin on some installations
509
-
510
- = Gmedia Gallery v1.8.23 =
511
- * Fixed: If gallery source is album, then set order from album (with ability to overwrite by query parameter)
512
-
513
- = Gmedia Gallery v1.8.22 =
514
- * Fixed: Quick Galleries items order
515
-
516
- = Gmedia Gallery v1.8.21 =
517
- * Fixed: Fatal Error on album sort
518
-
519
- = Gmedia Gallery v1.8.20 =
520
- * Compatibility with WP 4.5
521
- * Changed: Removed Custom Filters
522
- * Changed: Taxonomies are now separate pages (Albums, Categories, Tags)
523
- * Changed: Galleries are now have query builder (like in custom filters) to make custom queries
524
- * Improved: Gallery Preview now resizable
525
- * Improved: Isolation Mode
526
- * Added: Custom Fields to Galleries
527
- * Added: Settings for default albums 'status', 'order', 'orderby'
528
- * Added: Setting for Default Module
529
- * Added: 'category__and' query parameter
530
- * Fixed: bugfixes
531
- * Code refactoring and other improvements
532
-
533
- = Gmedia Gallery v1.8.14 =
534
- * Fixed: Multiple categories in Edit Mode
535
-
536
- = Gmedia Gallery v1.8.12 =
537
- * New: Ability to create own categories
538
- * New: Ability to assign few categories to one item
539
- * New: Ability to assign categories to non images
540
- * Added: New capability for managing categories
541
-
542
- = Gmedia Gallery v1.8.10 =
543
- * Added: Stack for Gmedia Items
544
- * New: Selected items now cleared automatically after Action
545
- * Changed: Numeric title from EXIF will be saved to DB
546
-
547
- = Gmedia Gallery v1.8.08 =
548
- * Improved Phantom gallery module
549
- * Improved installations of modules
550
- * Fixed Install module ZIP
551
- * Fixed loading comments on some themes
552
- * Removed Font-Awesome from GmediaCloud page to improve loading speed
553
-
554
- = Gmedia Gallery v1.8.07 =
555
- * Fixed: Modules update
556
- * Updated: Phantom photo gallery module (fixed few settings)
557
-
558
- = Gmedia Gallery v1.8.06 =
559
- * Fixed: Notice on first install
560
- * Fixed: Ignored uninstall settings and gallery plugin doesn't delete database records and delete all files
561
-
562
- = Gmedia Gallery v1.8.05 =
563
- * Improved: update process
564
- * Fixed: access point for Gmedia Gallery iOS app
565
- * Fixed: comments in Phantom photo gallery module not worked on some themes
566
-
567
- = Gmedia Gallery v1.8.0 =
568
- * Added: Comments for Gmedia Items
569
- * Added: WP search integration for gmedia items, albums, galleries, filters
570
- * New: Phantom gallery module with comments support
571
- * Fixed: gallery search in admin and a lot of other bugs that I don't remember
572
-
573
  == Upgrade Notice ==
574
 
575
- = Gmedia Gallery v1.8.0 =
576
  Database changed. Backup before updating.
577
 
578
  = Grand Media Gallery v1.5.5 =
1
+ === Gmedia Photo Gallery ===
2
  Contributors: pasyuk
3
  Donate link: https://codeasily.com/donate/
4
  Tags: gallery, albums, photo gallery, gallery lightbox, gallery comments
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
11
+ Gmedia Gallery - photo gallery with comments, show EXIF & Metadata, gallery with map geolocation (GPS), private galleries, music player, video support.
12
 
13
  == Description ==
14
 
15
+ #### Gmedia Photo Gallery
16
 
17
  Manage files, show image galleries and photo slideshows, play music on your site with Gmedia Gallery plugin. Gmedia Gallery plugin provides a comprehensive interface for handling galleries, images, video & audio files.
18
 
21
  > Now You can upload and manage your Gmedia Library (images, tags, albums) anywhere!!!
22
  > Get new **[Gmedia Gallery application for iPhone](https://codeasily.com/gmedia-ios-app/)**
23
 
24
+ With Gmedia Gallery plugin you can upload an unlimited number of photo and audio files, create dozens of galleries and playlists, group pictures and other files in albums, add tags for each file.
25
  Handle any file format and link any files with images in few clicks. You can import images with captions from Worpress Media Library, Flagallery plugin and from NextGen Gallery plugin right to Gmedia Library.
26
 
27
  #### Demos:
28
 
29
+ * [AlbumsList Masonry](https://codeasily.com/portfolio/gmedia-gallery-modules/albumslist-masonry/) - Splash Slider with custom lightbox and masonry collection view.
30
+ * [AlbumsList](https://codeasily.com/portfolio/gmedia-gallery-modules/albumslist/) - Splash Slider with custom lightbox.
31
  * [WoowSlider](https://codeasily.com/portfolio/gmedia-gallery-modules/woowslider/) - unique responsive Slider.
32
  * [AlbumsGrid](https://codeasily.com/portfolio/gmedia-gallery-modules/albumsgrid/) - Splash Gallery for your Albums (terms).
33
  * [PhotoCluster](https://codeasily.com/portfolio/gmedia-gallery-modules/photocluster/) - Accordeon Splash Slider for your Albums.
42
  * [Music Player](https://codeasily.com/portfolio/gmedia-gallery-modules/music-player/) - audio player with playlist.
43
  * [More Galleries...](https://codeasily.com/portfolio/gmedia-gallery-modules/)
44
 
45
+ = Links =
46
 
47
+ **[Home Page](https://codeasily.com/)**, **[Skins Portfolio](https://codeasily.com/portfolio/gmedia-gallery-modules/)**, **[Forum](https://codeasily.com/community/forum/gmedia-gallery-wordpress-plugin/)**
48
 
49
  = How to create FREE responsive photo gallery =
50
 
54
 
55
  Friendly for iPad and iPhone. Doesn’t slow down your website. **Unlimited galleries** on your website with **unlimited customizations** for each gallery.
56
 
 
 
57
  #### Gallery Features
58
 
59
  * New in 1.9.*: **New free gallery module: Cubik Lite - 3D Cube Gallery (HTML5, CSS3, JS, responsive)**
60
  * New in 1.9.*: **Option to show own Gmedia Albums on Author Pofile page**
61
  * New in 1.9.*: **[Option to automatically create gallery in Post with related images (images with the same tags as in Post)](https://codeasily.com/portfolio/gmedia-gallery-modules/)**
62
  * New in 1.9.*: **Show Related Media for WP tags and categories archive pages**
63
+ * **Widget for Album and for Gallery**
64
  * **Comments for Gmedia Items**
65
  * **Integration with WordPress Search. Gmedia items looks like a regular post with comments. Also you can search for albums and galleries**
66
  * **Music player & WaveForm for music. Create and save music waveforms & display them nicely with WaveSurfer music module**
69
  * **Full Page Gallery Template - "GmediaCloud" pages with permalink support**
70
  * **Share Images, Albums, Tags, Galleries via admin panel**
71
  * **Create custom gallery query filters with selected parameters**
 
72
  * **Cover for Album**
73
  * **Mobile friendly, responsive gallery**
74
  * **Add tags, assign categories and group images in albums**
90
  * **Batch operations with selected Gmedia items**
91
 
92
 
 
 
 
 
 
 
 
 
93
  Create Slideshow Galleries with using tags and automatically add images to several galleries by assigning these tags to uploaded photos.
94
 
95
+ Easily add photos from Gmedia Library to the Post by using Add Media -> Gmedia Gallery tab MetaBox. One click for inserting image or gallery right in your page.
96
 
97
+ Set Post Featured Image (Post Thumbnail) from Gmedia Library.
98
 
99
  With our versatile plugin you can magically change the look and feel of your photo gallery, a huge selection of modules will help you embed the gallery in your posts and web pages making them feel complete. You will appreciate user friendly interface of admin panel, making the creation of unique and contemporary style gallery an easy and fun process, and attracting increasing attention from viewers.
100
 
101
  Gmedia Gallery is the result of hundreds of hours of working to bring you the ultimate photo managing tool. With a lot of features, flexible options and a wide range of customizations, editing and publishing galleries, Gmedia Gallery is a smart addition to any blogger's arsenal. Whether you're photographer or a blogger, you'll like the Gmedia Gallery plugin.
102
 
103
+ **[Translations](https://translate.wordpress.org/projects/wp-plugins/grand-media)**
104
 
105
  == Installation ==
106
 
107
+ 1. To install Gmedia plugin upload `grand-media` folder to the `/wp-content/plugins/` directory or install Gmedia Gallery via WP Dashboard
108
  2. Activate the gallery plugin through the 'Plugins' menu in WordPress
109
  3. Go to Gmedia Gallery Add / Import Files and upload images (assign tags or album to uploaded images right in place)
110
  4. Go to Create / Manage Galleries... -> click Create Gallery button -> choose module for the gallery -> click Build Query and choose albums or tags to grab images from -> Save
114
 
115
  = Where I can ask support question about gallery? =
116
 
117
+ Use [Gmedia Support Forum](https://codeasily.com/community/forum/gmedia-gallery-wordpress-plugin/) If you have any troubles with gmedia gallery plugin. I'll try to answer ASAP
118
 
119
  == Screenshots ==
120
 
121
+ 1. Module - WaveSurfer Music Gallery
122
+ 2. iOS App - Home page
123
+ 3. iOS App - Album View
124
+ 4. iOS App - Image Edit
125
+ 5. iOS App - List of Albums
126
+ 6. Admin Area - Gmedia Library Edit Mode
127
+ 7. Admin Area - Create Gallery with Afflux Module
128
+ 8. Admin Area - Add shortcode to Post - Gmedia MetaBox
129
+ 9. Admin Area - Upload images to Gmedia Library
130
+ 10. Admin Area - Import galleries from Flagallery plugin
131
+ 11. Admin Area - Process of import galleries from Flagallery plugin
132
+ 12. Admin Area - Gmedia Library
133
+ 13. Admin Area - Gmedia Library Filters
 
 
 
 
 
 
 
 
134
 
135
  = Minimum requirements for Gmedia Gallery =
136
 
140
  == Changelog ==
141
 
142
  = Modules Updated =
143
+ * Go to Gmedia Modules page and update installed premium modules to latest versions
144
+
145
+ = v1.12.4 =
146
+ * Fixed JS error on Module Preset Edit page
147
+
148
+ = v1.12.3 =
149
+ * PhotoMania module updated (added option to hide author name)
150
 
151
+ = v1.12.2 =
152
+ * Disable comments on Albums Posts
153
+ * Hide admin Terms pages if no capability to manage them.
154
+
155
+ = v1.12.1 =
156
  * Added related media for Gmedia Items (support in modules will be added in the future).
157
  * Updated mediaelements.js library to the latest version.
158
  * Added Update button for CodeCanyon's modules.
159
  * Fixed default order for gmedia__in query.
160
 
161
+ = v1.11.7 =
162
  * Added new color picker with rgba support.
163
  * Fixed JS error on edit album page.
164
 
165
+ = v1.11.6 =
166
  * Added functionality for the future module.
167
 
168
+ = v1.11.5 =
169
  * Removed debug info on admin page
170
  * Added "Date" field on Edit Album page
171
 
172
+ = v1.11.4 =
173
  * Compatible with WP v4.9
174
  * Fixed CSS for JQ Music Player module.
175
 
176
+ = v1.11.3 =
177
  * Small fixes and improvements
178
 
179
+ = v1.11.2 =
180
  * Fixed iOS app service activation on some servers
181
  * Added premium gallery module
182
 
183
+ = v1.11.1 =
184
  * Fixed Modules update
185
  * Fixed PHP Notice
186
 
187
+ = v1.11.0 =
188
  * Added Support page
189
  * Added user permission to enable GmediaService
190
  * Added user feedback form before deactivate plugin
192
  * Hide flash modules from the list of available modules
193
  * Small fixes and improvements
194
 
195
+ = v1.10.07 =
196
  * Added files in the import tree view
197
  * Added logging of views and likes from iOS app
198
  * Fixed links to home website
199
  * Fixed PHP Notice when original image is not available on the server
200
 
201
+ = v1.10.06 =
202
  * Fixed iOS app service activation on some servers
203
  * Fixed non-images single posts was empty
204
 
205
+ = v1.10.05 =
206
  * Fixed compatibility with WP-SpamShield
207
  * Modules admin page new layout with filters by feature
208
 
209
+ = v1.10.04 =
210
  * Added option to disable Gmedia Logger
211
  * Added compatibility with the future gallery module
212
 
213
+ = v1.10.03 =
214
  * Added Gmedia Logger as a premium option
215
  * Fixed ENTER key on pagination
216
  * Other small improvements
217
 
218
+ = v1.9.20 =
219
  * Added few action hooks for developers
220
 
221
+ = v1.9.19 =
222
  * Query Builder modal small fix
223
  * Fixed PHP Notice
224
  * Fixed sort order in AlbumsGrid module
225
 
226
+ = v1.9.18 =
227
  * Added Settings to hide sidebar sections
228
  * Modules functions improvements
229
 
230
+ = v1.9.17 =
231
  * Use Album Covers as default artwork for non-image files
232
  * Preparations for the new gallery module
233
 
234
+ = v1.9.15 =
235
  * Build Query fixes
236
  * Minor bug fixes
237
 
238
+ = v1.9.14 =
239
  * Update if you have some issues with installing premium modules
240
 
241
+ = v1.9.13 =
242
  * Fixed: "Add from Library" button on edit term page
243
 
244
+ = v1.9.12 =
245
  * Fixed: iOS application upload to Album (Category, tag)
246
 
247
+ = v1.9.11 =
248
  * Fixed: Save WaveForm for music files not worked
249
 
250
+ = v1.9.10 =
251
  * Fixed: Compatibility with StarBox plugin
252
  * Fixed: iOS app not worked on some servers configurations
253
 
254
+ = v1.9.9 =
255
  * Fixed: FlipGrid module not worked if GmediaService disabled
256
 
257
+ = v1.9.8 =
258
  * Fixed: Modules remote XML error
259
  * Added: FlipGrid module
260
 
261
+ = v1.9.7 =
262
  * Fixed: Upload of TIFF files
263
  * Added: Cover field for non editable images
264
 
265
+ = v1.9.6 =
266
  * Added: Visual media select in Query Builder
267
  * Fixed: minor bug fixes
268
 
269
+ = v1.9.5 =
270
  * Added: og: meta tags for Facebook and Google+ share
271
  * Updated Modules
272
 
273
+ = v1.9.4 =
274
  * Added: Reset button to Build Query
275
  * Updated: Single Gmedia Post
276
  * Updated: Modules: Cubik Lite, Phantom
277
  * Other small improvements
278
 
279
+ = v1.9.3 =
280
  * Updated: Phantom module
281
  * Updated: Third party JS libraries
282
  * Improved: Duplicate item now copy all meta and terms too
283
  * Improved: Gmedia permalink changing
284
 
285
+ = v1.9.2 =
286
  * Updated: Phantom, Phantom Pro, Cubik Lite, Cubik gallery modules now support youtube/vimeo videos and google maps embed in lightbox
287
  * Updated: Music modules compatibility with some themes
288
  * Compatible with Wordpress 4.7
289
 
290
+ = v1.9.1 =
291
  * Fixed: Tag edit
292
  * Fixed: Gmedia iOS app compatibility with WP-SpamShield plugin
293
  * Fixed: Compatibility Gmedia Terms archive pages with some themes
294
  * Fixed: Author profile page not shows Posts
295
  * Fixed: Change gallery module doesn't load default/global preset
296
 
297
+ = v1.9.0 =
298
  * Added: Batch edit Module/Preset for selected Galleries
299
  * Fixed: Notice in compatibility.php
300
  * Fixed: subscribers now can leave comments for private gmedia items
301
  * Updated: Phantom gallery module
302
  * Updated: PhotoMania gallery module
303
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
304
  == Upgrade Notice ==
305
 
306
+ = v1.8.0 =
307
  Database changed. Backup before updating.
308
 
309
  = Grand Media Gallery v1.5.5 =