Genesis Responsive Slider - Version 0.9.4

Version Description

  • Update POT file.
Download this release

Release Info

Developer nathanrice
Plugin Icon 128x128 Genesis Responsive Slider
Version 0.9.4
Comparing to
See all releases

Code changes from version 0.9.3 to 0.9.4

Gruntfile.js ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 'use strict';
2
+
3
+ module.exports = function(grunt) {
4
+
5
+ // Load tasks
6
+ require('load-grunt-tasks')(grunt);
7
+
8
+ grunt.initConfig({
9
+ pkg: grunt.file.readJSON('package.json'),
10
+
11
+
12
+ // Dependencies
13
+
14
+ // PHP
15
+
16
+ // Lint .php files for syntax errors
17
+ phplint: {
18
+ all: [ '*.php', 'lib/**/*.php' ]
19
+ },
20
+
21
+
22
+ // I18n
23
+
24
+ // Add text domain as last argument of i18n functions
25
+ addtextdomain: {
26
+ php: {
27
+ files: {
28
+ src: [
29
+ '*.php',
30
+ 'lib/**/*.php'
31
+ ]
32
+ }
33
+ }
34
+ },
35
+
36
+ // Check text domain is last argument of i18n functions
37
+ checktextdomain: {
38
+ options: {
39
+ text_domain: '<%= pkg.name %>',
40
+ keywords: [
41
+ '__:1,2d',
42
+ '_e:1,2d',
43
+ '_x:1,2c,3d',
44
+ '_ex:1,2c,3d',
45
+ '_n:1,2,4d',
46
+ '_nx:1,2,4c,5d',
47
+ '_n_noop:1,2,3d',
48
+ '_nx_noop:1,2,3c,4d',
49
+ 'esc_attr__:1,2d',
50
+ 'esc_html__:1,2d',
51
+ 'esc_attr_e:1,2d',
52
+ 'esc_html_e:1,2d',
53
+ 'esc_attr_x:1,2c,3d',
54
+ 'esc_html_x:1,2c,3d'
55
+ ]
56
+ },
57
+ files: {
58
+ expand: true,
59
+ src: [
60
+ '*.php',
61
+ 'lib/**/*.php'
62
+ ]
63
+ }
64
+ },
65
+
66
+
67
+ // Build language .pot file
68
+ makepot: {
69
+ plugin: {
70
+ options: {
71
+ domainPath: '/languages',
72
+ processPot: function( pot ) {
73
+ pot.headers['report-msgid-bugs-to'] = 'StudioPress <translations@studiopress.com>';
74
+ pot.headers['last-translator'] = 'StudioPress <translations@studiopress.com>';
75
+ pot.headers['language-team'] = 'English <translations@studiopress.com>';
76
+ pot.headers['plural-forms'] = 'nplurals=2; plural=n != 1;';
77
+ pot.headers['x-generator'] = 'grunt-wp-i18n 0.4.4';
78
+ pot.headers['x-poedit-basepath'] = '.';
79
+ pot.headers['x-poedit-language'] = 'English';
80
+ pot.headers['x-poedit-country'] = 'UNITED STATES';
81
+ pot.headers['x-poedit-sourcecharset'] = 'utf-8';
82
+ pot.headers['x-poedit-keywordslist'] = '__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;';
83
+ pot.headers['x-poedit-bookmarks'] = '';
84
+ pot.headers['x-poedit-searchpath-0'] = '.';
85
+ pot.headers['x-textdomain-support'] = 'yes';
86
+ return pot;
87
+ },
88
+ type: 'wp-plugin'
89
+ }
90
+ }
91
+ },
92
+
93
+
94
+ });
95
+
96
+ };
README.md ADDED
@@ -0,0 +1,2 @@
 
 
1
+ # genesis-responsive-slider
2
+ Plugin: Genesis Responsive Slider
admin.php CHANGED
@@ -30,7 +30,7 @@ function genesis_responsive_slider_defaults() {
30
  'slideshow_effect' => 'slide',
31
  'slideshow_excerpt_content' => 'excerpts',
32
  'slideshow_excerpt_content_limit' => 150,
33
- 'slideshow_more_text' => '[Continue Reading]',
34
  'slideshow_excerpt_show' => 1,
35
  'slideshow_excerpt_width' => 50,
36
  'location_vertical' => 'bottom',
@@ -347,7 +347,7 @@ function genesis_responsive_slider_options_box() {
347
  <h4><?php _e( 'Content Settings', 'genesis-responsive-slider' ); ?></h4>
348
 
349
  <p>
350
- <input type="checkbox" name="<?php echo GENESIS_RESPONSIVE_SLIDER_SETTINGS_FIELD; ?>[slideshow_no_link]" id="<?php echo GENESIS_SLIDER_SETTINGS_FIELD; ?>[slideshow_title_show]" value="1" <?php checked(1, genesis_get_responsive_slider_option('slideshow_no_link')); ?> /> <label for="<?php echo GENESIS_SLIDER_SETTINGS_FIELD; ?>[slideshow_no_link]"><?php _e( 'Do not link Slider image to Post/Page.', 'genesis-slider' ); ?></label>
351
  </p>
352
 
353
  <p>
30
  'slideshow_effect' => 'slide',
31
  'slideshow_excerpt_content' => 'excerpts',
32
  'slideshow_excerpt_content_limit' => 150,
33
+ 'slideshow_more_text' => __( '[Continue Reading]', 'genesis-responsive-slider' ),
34
  'slideshow_excerpt_show' => 1,
35
  'slideshow_excerpt_width' => 50,
36
  'location_vertical' => 'bottom',
347
  <h4><?php _e( 'Content Settings', 'genesis-responsive-slider' ); ?></h4>
348
 
349
  <p>
350
+ <input type="checkbox" name="<?php echo GENESIS_RESPONSIVE_SLIDER_SETTINGS_FIELD; ?>[slideshow_no_link]" id="<?php echo GENESIS_SLIDER_SETTINGS_FIELD; ?>[slideshow_title_show]" value="1" <?php checked(1, genesis_get_responsive_slider_option('slideshow_no_link')); ?> /> <label for="<?php echo GENESIS_SLIDER_SETTINGS_FIELD; ?>[slideshow_no_link]"><?php _e( 'Do not link Slider image to Post/Page.', 'genesis-responsive-slider' ); ?></label>
351
  </p>
352
 
353
  <p>
genesis-responsive-slider.php CHANGED
@@ -6,7 +6,7 @@
6
  Author: StudioPress
7
  Author URI: http://www.studiopress.com
8
 
9
- Version: 0.9.3
10
 
11
  License: GNU General Public License v2.0 (or later)
12
  License URI: http://www.opensource.org/licenses/gpl-license.php
6
  Author: StudioPress
7
  Author URI: http://www.studiopress.com
8
 
9
+ Version: 0.9.4
10
 
11
  License: GNU General Public License v2.0 (or later)
12
  License URI: http://www.opensource.org/licenses/gpl-license.php
languages/genesis-responsive-slider.pot ADDED
@@ -0,0 +1,306 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 StudioPress
2
+ # This file is distributed under the GNU General Public License v2.0 (or later).
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Genesis Responsive Slider 0.9.3\n"
6
+ "Report-Msgid-Bugs-To: StudioPress <translations@studiopress.com>\n"
7
+ "POT-Creation-Date: 2015-09-28 21:46:50+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=utf-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: StudioPress <translations@studiopress.com>\n"
13
+ "Language-Team: English <translations@studiopress.com>\n"
14
+ "X-Generator: grunt-wp-i18n 0.4.4\n"
15
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "X-Poedit-Language: English\n"
18
+ "X-Poedit-Country: UNITED STATES\n"
19
+ "X-Poedit-SourceCharset: utf-8\n"
20
+ "X-Poedit-KeywordsList: "
21
+ "__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
22
+ "attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
23
+ "X-Poedit-Bookmarks: \n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+ "X-Textdomain-Support: yes\n"
26
+
27
+ #: admin.php:33
28
+ msgid "[Continue Reading]"
29
+ msgstr ""
30
+
31
+ #: admin.php:77
32
+ msgid "Settings reset."
33
+ msgstr ""
34
+
35
+ #: admin.php:79
36
+ msgid "Settings saved."
37
+ msgstr ""
38
+
39
+ #: admin.php:92
40
+ msgid "Slider Settings"
41
+ msgstr ""
42
+
43
+ #: admin.php:114
44
+ msgid "Genesis Responsive Slider Settings"
45
+ msgstr ""
46
+
47
+ #: admin.php:152 genesis-responsive-slider.php:210
48
+ msgid "Genesis - Responsive Slider"
49
+ msgstr ""
50
+
51
+ #: admin.php:153 admin.php:164
52
+ msgid "Save Settings"
53
+ msgstr ""
54
+
55
+ #: admin.php:154 admin.php:165
56
+ msgid "Reset Settings"
57
+ msgstr ""
58
+
59
+ #: admin.php:154
60
+ msgid "Are you sure you want to reset?"
61
+ msgstr ""
62
+
63
+ #: admin.php:194
64
+ msgid "Type of Content"
65
+ msgstr ""
66
+
67
+ #: admin.php:196
68
+ msgid "Would you like to use posts or pages"
69
+ msgstr ""
70
+
71
+ #: admin.php:215
72
+ msgid "By Taxonomy and Terms"
73
+ msgstr ""
74
+
75
+ #: admin.php:215
76
+ msgid "Choose a term to determine what slides to include"
77
+ msgstr ""
78
+
79
+ #: admin.php:219
80
+ msgid "All Taxonomies and Terms"
81
+ msgstr ""
82
+
83
+ #: admin.php:246
84
+ msgid "Include or Exclude by Taxonomy ID"
85
+ msgstr ""
86
+
87
+ #: admin.php:249
88
+ msgid ""
89
+ "List which category, tag or other taxonomy IDs to exclude. (1,2,3,4 for "
90
+ "example)"
91
+ msgstr ""
92
+
93
+ #: admin.php:259
94
+ msgid "Include or Exclude by %s ID"
95
+ msgstr ""
96
+
97
+ #: admin.php:262
98
+ msgid ""
99
+ "Choose the include / exclude slides using their post / page ID in a "
100
+ "comma-separated list. (1,2,3,4 for example)"
101
+ msgstr ""
102
+
103
+ #: admin.php:266
104
+ msgid "Select"
105
+ msgstr ""
106
+
107
+ #: admin.php:267
108
+ msgid "Include"
109
+ msgstr ""
110
+
111
+ #: admin.php:268
112
+ msgid "Exclude"
113
+ msgstr ""
114
+
115
+ #: admin.php:273
116
+ msgid "List which"
117
+ msgstr ""
118
+
119
+ #: admin.php:273 admin.php:293
120
+ msgid "ID"
121
+ msgstr ""
122
+
123
+ #: admin.php:273
124
+ msgid "to include / exclude. (1,2,3,4 for example)"
125
+ msgstr ""
126
+
127
+ #: admin.php:279
128
+ msgid "Number of Slides to Show"
129
+ msgstr ""
130
+
131
+ #: admin.php:284
132
+ msgid "Number of Posts to Offset"
133
+ msgstr ""
134
+
135
+ #: admin.php:289
136
+ msgid "Order By"
137
+ msgstr ""
138
+
139
+ #: admin.php:291
140
+ msgid "Date"
141
+ msgstr ""
142
+
143
+ #: admin.php:292
144
+ msgid "Title"
145
+ msgstr ""
146
+
147
+ #: admin.php:294
148
+ msgid "Random"
149
+ msgstr ""
150
+
151
+ #: admin.php:302
152
+ msgid "Transition Settings"
153
+ msgstr ""
154
+
155
+ #: admin.php:305
156
+ msgid "Time Between Slides (in milliseconds)"
157
+ msgstr ""
158
+
159
+ #: admin.php:310
160
+ msgid "Slide Transition Speed (in milliseconds)"
161
+ msgstr ""
162
+
163
+ #: admin.php:315
164
+ msgid "Slider Effect"
165
+ msgstr ""
166
+
167
+ #: admin.php:316 admin.php:365
168
+ msgid "Select one of the following:"
169
+ msgstr ""
170
+
171
+ #: admin.php:318
172
+ msgid "Slide"
173
+ msgstr ""
174
+
175
+ #: admin.php:319
176
+ msgid "Fade"
177
+ msgstr ""
178
+
179
+ #: admin.php:325
180
+ msgid "Display Settings"
181
+ msgstr ""
182
+
183
+ #: admin.php:328
184
+ msgid "Maximum Slider Width (in pixels)"
185
+ msgstr ""
186
+
187
+ #: admin.php:333
188
+ msgid "Maximum Slider Height (in pixels)"
189
+ msgstr ""
190
+
191
+ #: admin.php:338
192
+ msgid "Display Next / Previous Arrows in Slider?"
193
+ msgstr ""
194
+
195
+ #: admin.php:342
196
+ msgid "Display Pagination in Slider?"
197
+ msgstr ""
198
+
199
+ #: admin.php:347
200
+ msgid "Content Settings"
201
+ msgstr ""
202
+
203
+ #: admin.php:350
204
+ msgid "Do not link Slider image to Post/Page."
205
+ msgstr ""
206
+
207
+ #: admin.php:354
208
+ msgid "Display Post/Page Title in Slider?"
209
+ msgstr ""
210
+
211
+ #: admin.php:357
212
+ msgid "Display Content in Slider?"
213
+ msgstr ""
214
+
215
+ #: admin.php:361
216
+ msgid "Hide Title & Content on Mobile Devices"
217
+ msgstr ""
218
+
219
+ #: admin.php:367
220
+ msgid "Display post content"
221
+ msgstr ""
222
+
223
+ #: admin.php:368
224
+ msgid "Display post excerpts"
225
+ msgstr ""
226
+
227
+ #: admin.php:373
228
+ msgid "More Text (if applicable)"
229
+ msgstr ""
230
+
231
+ #: admin.php:378
232
+ msgid "Limit content to"
233
+ msgstr ""
234
+
235
+ #: admin.php:380
236
+ msgid "characters"
237
+ msgstr ""
238
+
239
+ #: admin.php:383
240
+ msgid ""
241
+ "Using this option will limit the text and strip all formatting from the "
242
+ "text displayed. To use this option, choose \"Display post content\" in the "
243
+ "select box above."
244
+ msgstr ""
245
+
246
+ #: admin.php:386
247
+ msgid "Slider Excerpt Width (in percentage)"
248
+ msgstr ""
249
+
250
+ #: admin.php:391
251
+ msgid "Excerpt Location (vertical)"
252
+ msgstr ""
253
+
254
+ #: admin.php:393
255
+ msgid "Top"
256
+ msgstr ""
257
+
258
+ #: admin.php:394
259
+ msgid "Bottom"
260
+ msgstr ""
261
+
262
+ #: admin.php:399
263
+ msgid "Excerpt Location (horizontal)"
264
+ msgstr ""
265
+
266
+ #: admin.php:401
267
+ msgid "Left"
268
+ msgstr ""
269
+
270
+ #: admin.php:402
271
+ msgid "Right"
272
+ msgstr ""
273
+
274
+ #: admin.php:412
275
+ msgid "Save Changes"
276
+ msgstr ""
277
+
278
+ #: genesis-responsive-slider.php:208
279
+ msgid "Displays a slideshow inside a widget area"
280
+ msgstr ""
281
+
282
+ #: genesis-responsive-slider.php:371
283
+ msgid "Title:"
284
+ msgstr ""
285
+
286
+ #: genesis-responsive-slider.php:374
287
+ msgid ""
288
+ "To configure slider options, please go to the <a href=\"%s\">Slider "
289
+ "Settings</a> page."
290
+ msgstr ""
291
+
292
+ #. Plugin Name of the plugin/theme
293
+ msgid "Genesis Responsive Slider"
294
+ msgstr ""
295
+
296
+ #. Author URI of the plugin/theme
297
+ msgid "http://www.studiopress.com"
298
+ msgstr ""
299
+
300
+ #. Description of the plugin/theme
301
+ msgid "A responsive featured slider for the Genesis Framework."
302
+ msgstr ""
303
+
304
+ #. Author of the plugin/theme
305
+ msgid "StudioPress"
306
+ msgstr ""
package.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "genesis-responsive-slider",
3
+ "description": "Development files for the Genesis Responsive Slider plugin.",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/copyblogger/genesis-responsive-slider"
7
+ },
8
+ "dependencies": {},
9
+ "devDependencies": {
10
+ "grunt": "^0.4.5",
11
+ "grunt-autoprefixer": "^0.8.1",
12
+ "grunt-checktextdomain": "^0.1.1",
13
+ "grunt-contrib-cssmin": "^0.10.0",
14
+ "grunt-contrib-imagemin": "^0.7.1",
15
+ "grunt-contrib-jshint": "^0.10.0",
16
+ "grunt-contrib-uglify": "^0.5.0",
17
+ "grunt-contrib-watch": "^0.6.1",
18
+ "grunt-csscomb": "~2.0.1",
19
+ "grunt-jsbeautifier": "^0.2.7",
20
+ "grunt-jsvalidate": "^0.2.2",
21
+ "grunt-phplint": "0.0.5",
22
+ "grunt-styledocco": "^0.1.4",
23
+ "grunt-wp-i18n": "^0.4.5",
24
+ "load-grunt-tasks": "^0.6.0"
25
+ },
26
+ "plugin": {
27
+ "name": "Genesis Responsive Slider",
28
+ "uri": "https://github.com/copyblogger/genesis-responsive-slider",
29
+ "description": "A responsive featured slider for the Genesis Framework.",
30
+ "author": "StudioPress",
31
+ "authoruri": "http://www.studiopress.com/",
32
+ "version": "0.9.4",
33
+ "license": "GPL-2.0+",
34
+ "licenseuri": "http://www.gnu.org/licenses/gpl-2.0.html",
35
+ "textdomain": "genesis-simple-share"
36
+ }
37
+ }
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: nathanrice, studiopress, wpmuguru
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5553118
4
  Tags: slider, slideshow, responsive, genesis, genesiswp, studiopress
5
  Requires at least: 3.2
6
- Tested up to: 4.2.2
7
- Stable tag: 0.9.3
8
 
9
  This plugin allows you to create a simple responsive slider that displays the featured image, along with the title and excerpt from each post.
10
 
@@ -65,18 +65,20 @@ function my_child_theme_responsive_slider_defaults( $defaults ) {
65
  `
66
 
67
  == Changelog ==
68
-
69
- = 0.9.0 =
70
- * Beta Release
71
-
 
 
 
 
72
  = 0.9.1 =
73
  * Fix slider HTML markup for validation
74
  * Fix SSL mixed cotent warning
75
  * Add setting to turn off image links
76
  * Fix Excerpt More filter to only apply to slides
77
- * UI text changes
78
 
79
-
80
- = 0.9.2 =
81
- * add alt attribute to images for validation
82
- * Fix image links
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5553118
4
  Tags: slider, slideshow, responsive, genesis, genesiswp, studiopress
5
  Requires at least: 3.2
6
+ Tested up to: 4.3.1
7
+ Stable tag: 0.9.4
8
 
9
  This plugin allows you to create a simple responsive slider that displays the featured image, along with the title and excerpt from each post.
10
 
65
  `
66
 
67
  == Changelog ==
68
+
69
+ = 0.9.4 =
70
+ * Update POT file.
71
+
72
+ = 0.9.2 =
73
+ * add alt attribute to images for validation
74
+ * Fix image links
75
+
76
  = 0.9.1 =
77
  * Fix slider HTML markup for validation
78
  * Fix SSL mixed cotent warning
79
  * Add setting to turn off image links
80
  * Fix Excerpt More filter to only apply to slides
81
+ * UI text changes
82
 
83
+ = 0.9.0 =
84
+ * Beta Release