FEEDZY RSS Feeds Lite - Version 3.0.7

Version Description

Download this release

Release Info

Developer codeinwp
Plugin Icon 128x128 FEEDZY RSS Feeds Lite
Version 3.0.7
Comparing to
See all releases

Code changes from version 3.0.6 to 3.0.7

CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
 
 
 
 
2
- Fixed is_new when pro is active.
3
- Fixed redundant auto options.
4
- Fixed auto option in widget for image option.
5
 
6
 
7
 
8
-
1
 
2
+
3
+
4
+
5
+
6
+
7
+
8
 
9
 
10
 
 
css/feedzy-rss-feeds.css CHANGED
@@ -2,7 +2,7 @@
2
  * feedzy-rss-feeds.css
3
  * Feedzy RSS Feed
4
  * Copyright: (c) 2016 Themeisle, themeisle.com
5
- * Version: 3.0.6
6
  * Plugin Name: FEEDZY RSS Feeds
7
  * Plugin URI: http://themeisle.com/plugins/feedzy-rss-feeds/
8
  * Author: Themeisle
2
  * feedzy-rss-feeds.css
3
  * Feedzy RSS Feed
4
  * Copyright: (c) 2016 Themeisle, themeisle.com
5
+ * Version: 3.0.7
6
  * Plugin Name: FEEDZY RSS Feeds
7
  * Plugin URI: http://themeisle.com/plugins/feedzy-rss-feeds/
8
  * Author: Themeisle
feedzy-rss-feed.php CHANGED
@@ -15,7 +15,7 @@
15
  * Plugin Name: Feedzy RSS Feeds Lite
16
  * Plugin URI: https://themeisle.com/plugins/feedzy-rss-feeds-lite/
17
  * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.
18
- * Version: 3.0.6
19
  * Author: Themeisle
20
  * Author URI: http://themeisle.com
21
  * License: GPL-2.0+
15
  * Plugin Name: Feedzy RSS Feeds Lite
16
  * Plugin URI: https://themeisle.com/plugins/feedzy-rss-feeds-lite/
17
  * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.
18
+ * Version: 3.0.7
19
  * Author: Themeisle
20
  * Author URI: http://themeisle.com
21
  * License: GPL-2.0+
includes/admin/feedzy-rss-feeds-ui-lang.php CHANGED
@@ -124,10 +124,6 @@ class Feedzy_Rss_Feeds_Ui_Lang {
124
  'type' => 'select',
125
  'value' => '',
126
  'opts' => array(
127
- 'auto' => array(
128
- 'label' => __( 'Auto', 'feedzy-rss-feeds' ),
129
- 'value' => '',
130
- ),
131
  'yes' => array(
132
  'label' => __( 'Yes', 'feedzy-rss-feeds' ),
133
  'value' => 'yes',
@@ -185,10 +181,6 @@ class Feedzy_Rss_Feeds_Ui_Lang {
185
  'type' => 'select',
186
  'value' => '',
187
  'opts' => array(
188
- 'auto' => array(
189
- 'label' => __( 'Auto', 'feedzy-rss-feeds' ),
190
- 'value' => '',
191
- ),
192
  'yes' => array(
193
  'label' => __( 'Yes', 'feedzy-rss-feeds' ),
194
  'value' => 'yes',
@@ -204,10 +196,6 @@ class Feedzy_Rss_Feeds_Ui_Lang {
204
  'type' => 'select',
205
  'value' => '',
206
  'opts' => array(
207
- 'auto' => array(
208
- 'label' => __( 'Auto', 'feedzy-rss-feeds' ),
209
- 'value' => '',
210
- ),
211
  'yes' => array(
212
  'label' => __( 'Yes', 'feedzy-rss-feeds' ),
213
  'value' => 'yes',
@@ -289,10 +277,6 @@ class Feedzy_Rss_Feeds_Ui_Lang {
289
  'disabled' => true,
290
  'value' => '',
291
  'opts' => array(
292
- 'auto' => array(
293
- 'label' => __( 'Auto', 'feedzy-rss-feeds' ),
294
- 'value' => '',
295
- ),
296
  'yes' => array(
297
  'label' => __( 'Yes', 'feedzy-rss-feeds' ),
298
  'value' => 'yes',
124
  'type' => 'select',
125
  'value' => '',
126
  'opts' => array(
 
 
 
 
127
  'yes' => array(
128
  'label' => __( 'Yes', 'feedzy-rss-feeds' ),
129
  'value' => 'yes',
181
  'type' => 'select',
182
  'value' => '',
183
  'opts' => array(
 
 
 
 
184
  'yes' => array(
185
  'label' => __( 'Yes', 'feedzy-rss-feeds' ),
186
  'value' => 'yes',
196
  'type' => 'select',
197
  'value' => '',
198
  'opts' => array(
 
 
 
 
199
  'yes' => array(
200
  'label' => __( 'Yes', 'feedzy-rss-feeds' ),
201
  'value' => 'yes',
277
  'disabled' => true,
278
  'value' => '',
279
  'opts' => array(
 
 
 
 
280
  'yes' => array(
281
  'label' => __( 'Yes', 'feedzy-rss-feeds' ),
282
  'value' => 'yes',
includes/admin/feedzy-wp-widget.php CHANGED
@@ -157,10 +157,12 @@ class feedzy_wp_widget extends WP_Widget {
157
  if ( $value == '1' || $value == 'true' ) {
158
  return 'yes';
159
  }
160
- if ( $value == '0' || $value == 'false' || $value == '' ) {
161
  return 'no';
162
  }
163
-
 
 
164
  return $value;
165
 
166
  }
157
  if ( $value == '1' || $value == 'true' ) {
158
  return 'yes';
159
  }
160
+ if ( $value == '0' || $value == 'false' ) {
161
  return 'no';
162
  }
163
+ if ( $value == '' ) {
164
+ return 'auto';
165
+ }
166
  return $value;
167
 
168
  }
includes/feedzy-rss-feeds-feed-tweaks.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- * The file that alter the main blog feed
4
  *
5
  * @link http://themeisle.com
6
  * @since 3.0.0
@@ -8,17 +8,6 @@
8
  * @package feedzy-rss-feeds
9
  * @subpackage feedzy-rss-feeds/includes
10
  */
11
- /**
12
- *
13
- * Insert cover picture to main rss feed content
14
- *
15
- * @since 3.0.0
16
- * @access public
17
- *
18
- * @param string $content The item feed content.
19
- *
20
- * @return string
21
- */
22
  // @codingStandardsIgnoreStart
23
  /**
24
  * @param string $content
@@ -64,7 +53,7 @@ function feedzy_options() {
64
  * @return bool If the users is before 3.0.3 or after
65
  */
66
  function feedzy_is_new() {
67
- return feedzy_options()->get_var( 'is_new' ) === 'yes';
68
  }
69
 
70
  /**
1
  <?php
2
  /**
3
+ * Useful helper functions for plugin.
4
  *
5
  * @link http://themeisle.com
6
  * @since 3.0.0
8
  * @package feedzy-rss-feeds
9
  * @subpackage feedzy-rss-feeds/includes
10
  */
 
 
 
 
 
 
 
 
 
 
 
11
  // @codingStandardsIgnoreStart
12
  /**
13
  * @param string $content
53
  * @return bool If the users is before 3.0.3 or after
54
  */
55
  function feedzy_is_new() {
56
+ return feedzy_options()->get_var( 'is_new' ) === 'yes' && ! feedzy_is_pro();
57
  }
58
 
59
  /**
includes/feedzy-rss-feeds.php CHANGED
@@ -104,7 +104,7 @@ class Feedzy_Rss_Feeds {
104
  */
105
  public function init() {
106
  self::$plugin_name = 'feedzy-rss-feeds';
107
- self::$version = '3.0.6';
108
  self::$instance->load_dependencies();
109
  self::$instance->set_locale();
110
  self::$instance->define_admin_hooks();
104
  */
105
  public function init() {
106
  self::$plugin_name = 'feedzy-rss-feeds';
107
+ self::$version = '3.0.7';
108
  self::$instance->load_dependencies();
109
  self::$instance->set_locale();
110
  self::$instance->define_admin_hooks();
languages/feedzy-rss-feeds.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the GPL-2.0+.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Feedzy RSS Feeds Lite 3.0.5\n"
6
  "Report-Msgid-Bugs-To: https://github.com/Codeinwp/feedzy-rss-feeds/issues\n"
7
- "POT-Creation-Date: 2017-01-27 10:26:59+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -109,174 +109,170 @@ msgid "Should we display the RSS title?"
109
  msgstr ""
110
 
111
  #: includes/admin/feedzy-rss-feeds-ui-lang.php:128
112
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:152
113
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:189
114
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:208
115
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:252
116
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:293
117
- msgid "Auto"
118
- msgstr ""
119
-
120
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:132
121
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:193
122
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:212
123
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:256
124
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:297
125
  msgid "Yes"
126
  msgstr ""
127
 
128
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:136
129
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:197
130
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:216
131
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:260
132
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:301
133
  msgid "No"
134
  msgstr ""
135
 
136
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:144
137
  msgid "Item Options"
138
  msgstr ""
139
 
140
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:147
141
  msgid "Links may be opened in the same window or a new tab."
142
  msgstr ""
143
 
144
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:156
 
 
 
 
 
145
  msgid "_blank"
146
  msgstr ""
147
 
148
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:160
149
  msgid "_self"
150
  msgstr ""
151
 
152
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:164
153
  msgid "_parent"
154
  msgstr ""
155
 
156
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:168
157
  msgid "_top"
158
  msgstr ""
159
 
160
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:172
161
  msgid "framename"
162
  msgstr ""
163
 
164
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:178
165
  msgid "Trim the title of the item after X characters."
166
  msgstr ""
167
 
168
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:179
169
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:224
170
  msgid "(eg: 160)"
171
  msgstr ""
172
 
173
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:184
174
  msgid "Should we display the date of publication and the author name?"
175
  msgstr ""
176
 
177
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:203
178
  msgid "Should we display a description (abstract) of the retrieved item?"
179
  msgstr ""
180
 
181
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:222
182
  msgid "Crop description (summary) of the element after X characters."
183
  msgstr ""
184
 
185
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:228
186
  msgid ""
187
  "Only display item if title contains specific keyword(s) (comma-separated "
188
  "list/case sensitive)."
189
  msgstr ""
190
 
191
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:229
192
  msgid "(eg: news, sports etc.)"
193
  msgstr ""
194
 
195
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:235
196
  msgid ""
197
  "Exclude items if title or content contains specific keyword(s) "
198
  "(comma-separated list/case sensitive). "
199
  msgstr ""
200
 
201
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:236
202
  msgid "(eg: politics, gossip etc.)"
203
  msgstr ""
204
 
205
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:244
206
  msgid "Item Image Options"
207
  msgstr ""
208
 
209
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:247
210
  msgid "Should we display the first image of the content if it is available?"
211
  msgstr ""
212
 
213
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:266
214
  msgid "Default thumbnail URL if no image is found."
215
  msgstr ""
216
 
217
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:267
218
  msgid "Image URL"
219
  msgstr ""
220
 
221
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:271
222
  msgid "Select from Gallery"
223
  msgstr ""
224
 
225
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:275
226
  msgid "Thumblails dimension. Do not include \"px\". Eg: 150"
227
  msgstr ""
228
 
229
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:276
230
  msgid "(eg: 150)"
231
  msgstr ""
232
 
233
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:283
234
  msgid "PRO Options"
235
  msgstr ""
236
 
237
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:284
238
  msgid ""
239
  "Get access to more options and customizations with full version of Feedzy "
240
  "RSS Feeds . Use existing templates or extend them and make them your own."
241
  msgstr ""
242
 
243
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:284
244
  msgid "See more features of Feedzy RSS Feeds "
245
  msgstr ""
246
 
247
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:287
248
  msgid "Should we display the price from the feed if it is available?"
249
  msgstr ""
250
 
251
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:307
252
  msgid "Referral URL parameters (w/o \"?\")."
253
  msgstr ""
254
 
255
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:308
256
  msgid "(eg. promo_code=feedzy_is_awesome)"
257
  msgstr ""
258
 
259
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:314
260
  msgid "How many columns we should use to display the feed items"
261
  msgstr ""
262
 
263
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:315
264
  msgid "(eg. 1, 2, ..., 6)"
265
  msgstr ""
266
 
267
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:321
268
  msgid "Template to use when displaying the feed."
269
  msgstr ""
270
 
271
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:327
272
  msgid "Default"
273
  msgstr ""
274
 
275
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:331
276
  msgid "Style 1"
277
  msgstr ""
278
 
279
- #: includes/admin/feedzy-rss-feeds-ui-lang.php:335
280
  msgid "Style 2"
281
  msgstr ""
282
 
2
  # This file is distributed under the GPL-2.0+.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Feedzy RSS Feeds Lite 3.0.7\n"
6
  "Report-Msgid-Bugs-To: https://github.com/Codeinwp/feedzy-rss-feeds/issues\n"
7
+ "POT-Creation-Date: 2017-02-03 12:00:17+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
109
  msgstr ""
110
 
111
  #: includes/admin/feedzy-rss-feeds-ui-lang.php:128
112
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:185
113
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:200
114
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:244
115
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:281
 
 
 
 
 
 
 
 
 
116
  msgid "Yes"
117
  msgstr ""
118
 
119
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:132
120
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:189
121
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:204
122
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:248
123
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:285
124
  msgid "No"
125
  msgstr ""
126
 
127
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:140
128
  msgid "Item Options"
129
  msgstr ""
130
 
131
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:143
132
  msgid "Links may be opened in the same window or a new tab."
133
  msgstr ""
134
 
135
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:148
136
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:240
137
+ msgid "Auto"
138
+ msgstr ""
139
+
140
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:152
141
  msgid "_blank"
142
  msgstr ""
143
 
144
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:156
145
  msgid "_self"
146
  msgstr ""
147
 
148
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:160
149
  msgid "_parent"
150
  msgstr ""
151
 
152
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:164
153
  msgid "_top"
154
  msgstr ""
155
 
156
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:168
157
  msgid "framename"
158
  msgstr ""
159
 
160
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:174
161
  msgid "Trim the title of the item after X characters."
162
  msgstr ""
163
 
164
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:175
165
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:212
166
  msgid "(eg: 160)"
167
  msgstr ""
168
 
169
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:180
170
  msgid "Should we display the date of publication and the author name?"
171
  msgstr ""
172
 
173
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:195
174
  msgid "Should we display a description (abstract) of the retrieved item?"
175
  msgstr ""
176
 
177
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:210
178
  msgid "Crop description (summary) of the element after X characters."
179
  msgstr ""
180
 
181
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:216
182
  msgid ""
183
  "Only display item if title contains specific keyword(s) (comma-separated "
184
  "list/case sensitive)."
185
  msgstr ""
186
 
187
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:217
188
  msgid "(eg: news, sports etc.)"
189
  msgstr ""
190
 
191
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:223
192
  msgid ""
193
  "Exclude items if title or content contains specific keyword(s) "
194
  "(comma-separated list/case sensitive). "
195
  msgstr ""
196
 
197
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:224
198
  msgid "(eg: politics, gossip etc.)"
199
  msgstr ""
200
 
201
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:232
202
  msgid "Item Image Options"
203
  msgstr ""
204
 
205
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:235
206
  msgid "Should we display the first image of the content if it is available?"
207
  msgstr ""
208
 
209
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:254
210
  msgid "Default thumbnail URL if no image is found."
211
  msgstr ""
212
 
213
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:255
214
  msgid "Image URL"
215
  msgstr ""
216
 
217
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:259
218
  msgid "Select from Gallery"
219
  msgstr ""
220
 
221
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:263
222
  msgid "Thumblails dimension. Do not include \"px\". Eg: 150"
223
  msgstr ""
224
 
225
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:264
226
  msgid "(eg: 150)"
227
  msgstr ""
228
 
229
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:271
230
  msgid "PRO Options"
231
  msgstr ""
232
 
233
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:272
234
  msgid ""
235
  "Get access to more options and customizations with full version of Feedzy "
236
  "RSS Feeds . Use existing templates or extend them and make them your own."
237
  msgstr ""
238
 
239
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:272
240
  msgid "See more features of Feedzy RSS Feeds "
241
  msgstr ""
242
 
243
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:275
244
  msgid "Should we display the price from the feed if it is available?"
245
  msgstr ""
246
 
247
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:291
248
  msgid "Referral URL parameters (w/o \"?\")."
249
  msgstr ""
250
 
251
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:292
252
  msgid "(eg. promo_code=feedzy_is_awesome)"
253
  msgstr ""
254
 
255
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:298
256
  msgid "How many columns we should use to display the feed items"
257
  msgstr ""
258
 
259
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:299
260
  msgid "(eg. 1, 2, ..., 6)"
261
  msgstr ""
262
 
263
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:305
264
  msgid "Template to use when displaying the feed."
265
  msgstr ""
266
 
267
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:311
268
  msgid "Default"
269
  msgstr ""
270
 
271
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:315
272
  msgid "Style 1"
273
  msgstr ""
274
 
275
+ #: includes/admin/feedzy-rss-feeds-ui-lang.php:319
276
  msgid "Style 2"
277
  msgstr ""
278