Orphans - Version 2.9.10

Version Description

  • 2022-04-05 =
  • Updated iWorks Options to 2.8.3.
  • Updated iWorks Rate to 2.1.0.
Download this release

Release Info

Developer iworks
Plugin Icon 128x128 Orphans
Version 2.9.10
Comparing to
See all releases

Code changes from version 2.9.9 to 2.9.10

includes/iworks/options/assets/scripts/common.js CHANGED
@@ -107,6 +107,8 @@ function iworks_options_tabulator_init() {
107
  caption = jQuery(this).find('h3').text();
108
  if (rel) {
109
  rel = ' class="' + rel + '"';
 
 
110
  }
111
  jQuery('#hasadmintabs > ul').append('<li><a href="#' + id + '"><span' + rel + '>' + caption + "<\/span><\/a><\/li>");
112
  jQuery(this).find('h3').hide();
107
  caption = jQuery(this).find('h3').text();
108
  if (rel) {
109
  rel = ' class="' + rel + '"';
110
+ } else {
111
+ rel = '';
112
  }
113
  jQuery('#hasadmintabs > ul').append('<li><a href="#' + id + '"><span' + rel + '>' + caption + "<\/span><\/a><\/li>");
114
  jQuery(this).find('h3').hide();
includes/iworks/options/assets/styles/options-admin.css CHANGED
@@ -9,6 +9,15 @@
9
  .iworks-options #hasadmintabs .form-table td {
10
  padding: 10px;
11
  }
 
 
 
 
 
 
 
 
 
12
  .iworks-options-row .select2-container {
13
  width: 100%;
14
  min-width: 300px;
@@ -17,3 +26,24 @@
17
  margin-top: 10px;
18
  max-width: 150px;
19
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  .iworks-options #hasadmintabs .form-table td {
10
  padding: 10px;
11
  }
12
+
13
+ @media screen and ( max-width: 425px ) {
14
+ .iworks-options #hasadmintabs .ui-widget-header a,
15
+ .iworks-options #hasadmintabs .ui-widget-header li {
16
+ display: block;
17
+ float: none;
18
+ }
19
+ }
20
+
21
  .iworks-options-row .select2-container {
22
  width: 100%;
23
  min-width: 300px;
26
  margin-top: 10px;
27
  max-width: 150px;
28
  }
29
+
30
+ @media screen and ( max-width: 768px ) {
31
+ .iworks_options .has-right-sidebar {
32
+ display: grid;
33
+ grid-template-areas: "iworks-options" "iworks-sidebar";
34
+ }
35
+ .iworks_options #side-info-column {
36
+ grid-area: iworks-sidebar;
37
+ width: 100%;
38
+ }
39
+ .iworks_options #post-body {
40
+ grid-area: iworks-options;
41
+ float: none;
42
+ }
43
+ .iworks_options .has-right-sidebar #side-sortables,
44
+ .iworks_options .has-right-sidebar #post-body-content {
45
+ width: 100%;
46
+ min-height: 0;
47
+ }
48
+ }
49
+
includes/iworks/options/options.php CHANGED
@@ -3,7 +3,7 @@
3
  Class Name: iWorks Options
4
  Class URI: http://iworks.pl/
5
  Description: Option class to manage options.
6
- Version: 2.8.0
7
  Author: Marcin Pietrzak
8
  Author URI: http://iworks.pl/
9
  License: GPLv2 or later
@@ -70,7 +70,7 @@ class iworks_options {
70
  * basic setup
71
  */
72
  $this->notices = array();
73
- $this->version = '2.8.0';
74
  $this->option_group = 'index';
75
  $this->option_function_name = null;
76
  $this->option_prefix = null;
@@ -400,7 +400,7 @@ class iworks_options {
400
  }
401
  if ( $options['add_table'] ) {
402
  $content .= sprintf(
403
- '<table class="form-table%s" style="%s">',
404
  isset( $options['widefat'] ) ? ' widefat' : '',
405
  isset( $options['style'] ) ? $options['style'] : ''
406
  );
@@ -475,13 +475,15 @@ class iworks_options {
475
  $id = sprintf( ' id="%s"', $html_element_name );
476
  }
477
  $content .= sprintf(
478
- '<input type="%s" name="%s" value="%s" class="%s"%s%s /> %s',
479
  $option['type'],
480
  $html_element_name,
481
  $this->get_option( $option_name, $option_group ),
482
  esc_attr( implode( ' ', $classes ) ),
483
  $id,
484
  isset( $option['maxlength'] ) ? sprintf( ' maxlength="%d"', $option['maxlength'] ) : '',
 
 
485
  isset( $option['label'] ) ? $option['label'] : ''
486
  );
487
  break;
@@ -701,7 +703,7 @@ class iworks_options {
701
  }
702
  break;
703
  case 'subheading':
704
- $content .= sprintf( '<h4 class="title">%s</h4>', $option['label'] );
705
  break;
706
  case 'wpColorPicker':
707
  if ( is_admin() ) {
@@ -780,9 +782,9 @@ class iworks_options {
780
  default:
781
  $content .= sprintf( 'not implemented type: %s', $option['type'] );
782
  }
783
- if ( $option['type'] != 'hidden' ) {
784
  if ( isset( $option['description'] ) && $option['description'] ) {
785
- if ( isset( $option['label'] ) && $option['label'] ) {
786
  $content .= '<br />';
787
  }
788
  $content .= sprintf( '<p class="description">%s</p>', $option['description'] );
@@ -813,7 +815,7 @@ class iworks_options {
813
  $content = $top . $content;
814
  } else {
815
  if ( $options['add_table'] ) {
816
- $top .= sprintf( '<table class="form-table%s" style="%s">', isset( $options['widefat'] ) ? ' widefat' : '', isset( $options['style'] ) ? $options['style'] : '' );
817
  if ( isset( $options['thead'] ) ) {
818
  $top .= sprintf( '<thead><tr class="%s">', implode( ' ', $tr_classes ) );
819
  foreach ( $options['thead'] as $text => $colspan ) {
@@ -896,17 +898,13 @@ class iworks_options {
896
  public function options_init() {
897
  $options = $this->get_option_array();
898
  /**
899
- * add last_used_tab field
900
  */
901
- foreach ( $options as $key => $data ) {
902
- if ( isset( $options[ $key ]['use_tabs'] ) && $options[ $key ]['use_tabs'] ) {
903
- $field = array(
904
- 'type' => 'hidden',
905
- 'name' => 'last_used_tab',
906
- 'id' => 'last_used_tab',
907
- );
908
- array_unshift( $options[ $key ]['options'], $field );
909
- }
910
  }
911
  /**
912
  * filter it
@@ -1199,7 +1197,7 @@ class iworks_options {
1199
  <?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
1200
  <?php wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); ?>
1201
  <input type="hidden" name="action" value="save_howto_metaboxes_general" />
1202
- <div id="poststuff" class="metabox-holder<?php echo empty( $screen_layout_columns ) || 2 == $screen_layout_columns ? ' has-right-sidebar' : ''; ?>">
1203
  <?php
1204
  /**
1205
  * check metaboxes for key
@@ -1686,7 +1684,7 @@ postboxes.add_postbox_toggles('<?php echo $this->pagehooks[ $option_name ]; ?>')
1686
  }
1687
 
1688
  /**
1689
- * Cnvert color to rgb
1690
  *
1691
  * @since 2.4.1
1692
  *
3
  Class Name: iWorks Options
4
  Class URI: http://iworks.pl/
5
  Description: Option class to manage options.
6
+ Version: 2.8.3
7
  Author: Marcin Pietrzak
8
  Author URI: http://iworks.pl/
9
  License: GPLv2 or later
70
  * basic setup
71
  */
72
  $this->notices = array();
73
+ $this->version = '2.8.3';
74
  $this->option_group = 'index';
75
  $this->option_function_name = null;
76
  $this->option_prefix = null;
400
  }
401
  if ( $options['add_table'] ) {
402
  $content .= sprintf(
403
+ '<table class="form-table%s" style="%s" role="presentation">',
404
  isset( $options['widefat'] ) ? ' widefat' : '',
405
  isset( $options['style'] ) ? $options['style'] : ''
406
  );
475
  $id = sprintf( ' id="%s"', $html_element_name );
476
  }
477
  $content .= sprintf(
478
+ '<input type="%s" name="%s" value="%s" class="%s"%s%s%s%s /> %s',
479
  $option['type'],
480
  $html_element_name,
481
  $this->get_option( $option_name, $option_group ),
482
  esc_attr( implode( ' ', $classes ) ),
483
  $id,
484
  isset( $option['maxlength'] ) ? sprintf( ' maxlength="%d"', $option['maxlength'] ) : '',
485
+ isset( $option['placeholder'] ) ? sprintf( ' placeholder="%s"', esc_attr( $option['placeholder'] ) ) : '',
486
+ isset( $option['aria-label'] ) ? sprintf( ' aria-label="%s"', esc_attr( $option['aria-label'] ) ) : '',
487
  isset( $option['label'] ) ? $option['label'] : ''
488
  );
489
  break;
703
  }
704
  break;
705
  case 'subheading':
706
+ $content .= sprintf( '<h2 class="title">%s</h2>', $option['label'] );
707
  break;
708
  case 'wpColorPicker':
709
  if ( is_admin() ) {
782
  default:
783
  $content .= sprintf( 'not implemented type: %s', $option['type'] );
784
  }
785
+ if ( 'hidden' !== $option['type'] ) {
786
  if ( isset( $option['description'] ) && $option['description'] ) {
787
+ if ( isset( $option['label'] ) && $option['label'] && 'subheading' !== $option['type'] ) {
788
  $content .= '<br />';
789
  }
790
  $content .= sprintf( '<p class="description">%s</p>', $option['description'] );
815
  $content = $top . $content;
816
  } else {
817
  if ( $options['add_table'] ) {
818
+ $top .= sprintf( '<table class="form-table%s" style="%s" role="presentation">', isset( $options['widefat'] ) ? ' widefat' : '', isset( $options['style'] ) ? $options['style'] : '' );
819
  if ( isset( $options['thead'] ) ) {
820
  $top .= sprintf( '<thead><tr class="%s">', implode( ' ', $tr_classes ) );
821
  foreach ( $options['thead'] as $text => $colspan ) {
898
  public function options_init() {
899
  $options = $this->get_option_array();
900
  /**
901
+ * register_setting last_used_tab field
902
  */
903
+ if ( isset( $options['use_tabs'] ) && $options['use_tabs'] ) {
904
+ register_setting(
905
+ $this->option_prefix . 'index',
906
+ $this->option_prefix . 'last_used_tab',
907
+ );
 
 
 
 
908
  }
909
  /**
910
  * filter it
1197
  <?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
1198
  <?php wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); ?>
1199
  <input type="hidden" name="action" value="save_howto_metaboxes_general" />
1200
+ <div class="metabox-holder<?php echo empty( $screen_layout_columns ) || 2 == $screen_layout_columns ? ' has-right-sidebar' : ''; ?>">
1201
  <?php
1202
  /**
1203
  * check metaboxes for key
1684
  }
1685
 
1686
  /**
1687
+ * Convert color to rgb
1688
  *
1689
  * @since 2.4.1
1690
  *
includes/iworks/rate/rate.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * iWorks_Rate - Dashboard Notification module.
4
  *
5
- * @version 2.0.6
6
  * @author iworks (Marcin Pietrzak)
7
  *
8
  */
@@ -15,7 +15,7 @@ if ( ! class_exists( 'iworks_rate' ) ) {
15
  * @since 1.0.1
16
  * @var string
17
  */
18
- private $version = '2.0.6';
19
 
20
  /**
21
  * $wpdb->options field name.
@@ -82,6 +82,12 @@ if ( ! class_exists( 'iworks_rate' ) ) {
82
  */
83
  add_filter( 'iworks_rate_assistance', array( $this, 'filter_get_assistance_widget' ), 10, 2 );
84
  add_filter( 'iworks_rate_love', array( $this, 'filter_get_love_widget' ), 10, 2 );
 
 
 
 
 
 
85
  }
86
 
87
  /**
@@ -456,6 +462,47 @@ if ( ! class_exists( 'iworks_rate' ) ) {
456
  ob_end_clean();
457
  return $content;
458
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
  }
460
 
461
  // Initialize the module.
2
  /**
3
  * iWorks_Rate - Dashboard Notification module.
4
  *
5
+ * @version 2.1.0
6
  * @author iworks (Marcin Pietrzak)
7
  *
8
  */
15
  * @since 1.0.1
16
  * @var string
17
  */
18
+ private $version = '2.1.0';
19
 
20
  /**
21
  * $wpdb->options field name.
82
  */
83
  add_filter( 'iworks_rate_assistance', array( $this, 'filter_get_assistance_widget' ), 10, 2 );
84
  add_filter( 'iworks_rate_love', array( $this, 'filter_get_love_widget' ), 10, 2 );
85
+ /**
86
+ * advertising
87
+ *
88
+ * @since 2.1.0
89
+ */
90
+ add_filter( 'iworks_rate_advertising_og', array( $this, 'filter_get_advertising_og' ) );
91
  }
92
 
93
  /**
462
  ob_end_clean();
463
  return $content;
464
  }
465
+
466
+ /**
467
+ * Get advertising for "OG — Better Share on Social Media" plugin.
468
+ *
469
+ * @since 2.1.0
470
+ */
471
+ public function filter_get_advertising_og( $data ) {
472
+ return array(
473
+ 'iworks-adverting-og' => array(
474
+ 'title' => __( 'OpenGraph', 'sierotki' ),
475
+ 'callback' => array( $this, 'get_advertising_og_content' ),
476
+ 'context' => 'side',
477
+ 'priority' => 'low',
478
+ ),
479
+ );
480
+ }
481
+
482
+ /**
483
+ * Advertising content for "OG — Better Share on Social Media" plugin.
484
+ *
485
+ * @since 2.1.0
486
+ */
487
+ public function get_advertising_og_content() {
488
+ $args = array(
489
+ 'install_plugin_url' => $this->get_install_plugin_url( 'og' ),
490
+ 'plugin_name' => __( 'OG — Better Share on Social Media', 'sierotki' ),
491
+ 'plugin_wp_home' => __( 'https://wordpress.org/plugins/og/', 'sierotki' ),
492
+ );
493
+ $file = $this->get_file( 'og', 'plugins' );
494
+ load_template( $file, true, $args );
495
+ }
496
+
497
+ /**
498
+ * get admin plugin install url
499
+ *
500
+ * @since 2.1.0
501
+ */
502
+ private function get_install_plugin_url( $slug ) {
503
+ return wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=' . $slug ), 'install-plugin_' . $slug );
504
+ }
505
+
506
  }
507
 
508
  // Initialize the module.
includes/iworks/rate/templates/plugins/og.php ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p><?php
2
+ esc_html_e( 'Would you like to boost your website sharing abilities?', 'sierotki ' );
3
+ ?></p>
4
+ <p>
5
+ <?php
6
+ printf(
7
+ esc_html__( 'Don\'t wait, install plugin %s!', 'sierotki' ),
8
+ sprintf(
9
+ '<a href="%s" target="_blank"><strong>%s</strong></a>',
10
+ $args['plugin_wp_home'],
11
+ $args['plugin_name']
12
+ )
13
+ );
14
+ ?>
15
+ </p>
16
+ <p class="iworks-rate-center"><a href="<?php echo esc_url( $args['install_plugin_url'] ); ?>" class="iworks-rate-button iworks-rate-button--green dashicons-admin-plugins
17
+ "><?php echo esc_html( __( 'Install', 'sierotki' ) ); ?></a></p>
18
+
languages/sierotki.pot CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Orphans PLUGIN_VERSION\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sierotki-dev\n"
7
- "POT-Creation-Date: 2022-03-29 12:09:26+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -249,7 +249,7 @@ msgid "<a href=\"http://iworks.pl/en/\" target=\"_blank\">break the web</a>"
249
  msgstr ""
250
 
251
  #: includes/iworks/class-iworks-orphan.php:467
252
- #: includes/iworks/rate/rate.php:118
253
  msgid "Settings"
254
  msgstr ""
255
 
@@ -257,48 +257,72 @@ msgstr ""
257
  msgid "An error occurred while getting the configuration."
258
  msgstr ""
259
 
260
- #: includes/iworks/options/options.php:752
261
- #: includes/iworks/options/options.php:1753
262
  msgid "Select Image"
263
  msgstr ""
264
 
265
- #: includes/iworks/options/options.php:757
266
  msgid "Delete image"
267
  msgstr ""
268
 
269
- #: includes/iworks/options/options.php:843
270
  msgid "Save Changes"
271
  msgstr ""
272
 
273
- #: includes/iworks/options/options.php:1647
274
  msgid "Country"
275
  msgstr ""
276
 
277
- #: includes/iworks/options/options.php:1648
278
  msgid "City"
279
  msgstr ""
280
 
281
- #: includes/iworks/options/options.php:1649
282
  msgid "Street"
283
  msgstr ""
284
 
285
- #: includes/iworks/options/options.php:1650
286
  msgid "ZIP code"
287
  msgstr ""
288
 
289
- #: includes/iworks/options/options.php:1806
290
  msgid "OFF"
291
  msgstr ""
292
 
293
- #: includes/iworks/options/options.php:1807
294
  msgid "ON"
295
  msgstr ""
296
 
297
- #: includes/iworks/rate/rate.php:124
298
  #: includes/iworks/rate/templates/thanks.php:28
299
  msgid "Provide us a coffee"
300
  msgstr ""
301
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
  #: includes/iworks/rate/templates/thanks.php:17
303
  msgid "Thank you for using our plugin %s!"
304
  msgstr ""
@@ -392,12 +416,12 @@ msgctxt "link to support forum on WordPress.org"
392
  msgid "https://wordpress.org/support/plugin/sierotki/"
393
  msgstr ""
394
 
395
- #: includes/iworks/rate/rate.php:399
396
  msgctxt "plugins home"
397
  msgid "https://wordpress.org/plugins/%s"
398
  msgstr ""
399
 
400
- #: includes/iworks/rate/rate.php:405
401
  msgctxt "plugins support home"
402
  msgid "https://wordpress.org/support/plugin/%s"
403
  msgstr ""
4
  msgstr ""
5
  "Project-Id-Version: Orphans PLUGIN_VERSION\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sierotki-dev\n"
7
+ "POT-Creation-Date: 2022-04-05 04:26:06+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
249
  msgstr ""
250
 
251
  #: includes/iworks/class-iworks-orphan.php:467
252
+ #: includes/iworks/rate/rate.php:124
253
  msgid "Settings"
254
  msgstr ""
255
 
257
  msgid "An error occurred while getting the configuration."
258
  msgstr ""
259
 
260
+ #: includes/iworks/options/options.php:754
261
+ #: includes/iworks/options/options.php:1751
262
  msgid "Select Image"
263
  msgstr ""
264
 
265
+ #: includes/iworks/options/options.php:759
266
  msgid "Delete image"
267
  msgstr ""
268
 
269
+ #: includes/iworks/options/options.php:845
270
  msgid "Save Changes"
271
  msgstr ""
272
 
273
+ #: includes/iworks/options/options.php:1645
274
  msgid "Country"
275
  msgstr ""
276
 
277
+ #: includes/iworks/options/options.php:1646
278
  msgid "City"
279
  msgstr ""
280
 
281
+ #: includes/iworks/options/options.php:1647
282
  msgid "Street"
283
  msgstr ""
284
 
285
+ #: includes/iworks/options/options.php:1648
286
  msgid "ZIP code"
287
  msgstr ""
288
 
289
+ #: includes/iworks/options/options.php:1804
290
  msgid "OFF"
291
  msgstr ""
292
 
293
+ #: includes/iworks/options/options.php:1805
294
  msgid "ON"
295
  msgstr ""
296
 
297
+ #: includes/iworks/rate/rate.php:130
298
  #: includes/iworks/rate/templates/thanks.php:28
299
  msgid "Provide us a coffee"
300
  msgstr ""
301
 
302
+ #: includes/iworks/rate/rate.php:474
303
+ msgid "OpenGraph"
304
+ msgstr ""
305
+
306
+ #: includes/iworks/rate/rate.php:490
307
+ msgid "OG — Better Share on Social Media"
308
+ msgstr ""
309
+
310
+ #: includes/iworks/rate/rate.php:491
311
+ msgid "https://wordpress.org/plugins/og/"
312
+ msgstr ""
313
+
314
+ #: includes/iworks/rate/templates/plugins/og.php:2
315
+ msgid "Would you like to boost your website sharing abilities?"
316
+ msgstr ""
317
+
318
+ #: includes/iworks/rate/templates/plugins/og.php:7
319
+ msgid "Don't wait, install plugin %s!"
320
+ msgstr ""
321
+
322
+ #: includes/iworks/rate/templates/plugins/og.php:17
323
+ msgid "Install"
324
+ msgstr ""
325
+
326
  #: includes/iworks/rate/templates/thanks.php:17
327
  msgid "Thank you for using our plugin %s!"
328
  msgstr ""
416
  msgid "https://wordpress.org/support/plugin/sierotki/"
417
  msgstr ""
418
 
419
+ #: includes/iworks/rate/rate.php:405
420
  msgctxt "plugins home"
421
  msgid "https://wordpress.org/plugins/%s"
422
  msgstr ""
423
 
424
+ #: includes/iworks/rate/rate.php:411
425
  msgctxt "plugins support home"
426
  msgid "https://wordpress.org/support/plugin/%s"
427
  msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: iworks
3
  Donate link: https://ko-fi.com/iworks?utm_source=sierotki&utm_medium=readme-donate
4
  Tags: sierotka, sierotki, spójniki, twarda spacja
5
  Requires at least: 4.6
6
- Tested up to: 5.9
7
- Stable tag: 2.9.9
8
 
9
 
10
 
@@ -37,19 +37,19 @@ There are 3 ways to install this plugin:
37
 
38
  = The easy way =
39
 
40
- 1. Download the plugin (.zip file) on the right column of this page
41
- 1. In your Admin, go to menu Plugins > Add
42
- 1. Select button `Upload Plugin`
43
- 1. Upload the .zip file you just downloaded
44
- 1. Activate the plugin
45
  1. A new menu `Orphans` in `Appearance` will appear in your Admin Menu.
46
 
47
  ***
48
 
49
  = The old and reliable way (FTP) =
50
 
51
- 1. Upload `sierotki` folder to the `/wp-content/plugins/` directory
52
- 1. Activate the plugin through the 'Plugins' menu in WordPress
53
  1. A new menu `Orphans` in `Appearance` will appear in your Admin Menu.
54
 
55
  == Frequently Asked Questions ==
@@ -128,6 +128,10 @@ function remove_iworks_orphan_terms( $terms ) {
128
 
129
  == Changelog ==
130
 
 
 
 
 
131
  = 2.9.9 - 2022-03-29 =
132
  * Fixed missing filter usage for priority. Props for [Adam Romanowski](https://wordpress.org/support/users/adamromanowski/).
133
 
3
  Donate link: https://ko-fi.com/iworks?utm_source=sierotki&utm_medium=readme-donate
4
  Tags: sierotka, sierotki, spójniki, twarda spacja
5
  Requires at least: 4.6
6
+ Tested up to: 6.0
7
+ Stable tag: 2.9.10
8
 
9
 
10
 
37
 
38
  = The easy way =
39
 
40
+ 1. Download the plugin (.zip file) on the right column of this page.
41
+ 1. In your Admin, go to menu Plugins > Add.
42
+ 1. Select button `Upload Plugin`.
43
+ 1. Upload the .zip file you just downloaded.
44
+ 1. Activate the plugin.
45
  1. A new menu `Orphans` in `Appearance` will appear in your Admin Menu.
46
 
47
  ***
48
 
49
  = The old and reliable way (FTP) =
50
 
51
+ 1. Upload `sierotki` folder to the `/wp-content/plugins/` directory.
52
+ 1. Activate the plugin through the 'Plugins' menu in WordPress.
53
  1. A new menu `Orphans` in `Appearance` will appear in your Admin Menu.
54
 
55
  == Frequently Asked Questions ==
128
 
129
  == Changelog ==
130
 
131
+ = 2.9.10 - 2022-04-05 =
132
+ * Updated iWorks Options to 2.8.3.
133
+ * Updated iWorks Rate to 2.1.0.
134
+
135
  = 2.9.9 - 2022-03-29 =
136
  * Fixed missing filter usage for priority. Props for [Adam Romanowski](https://wordpress.org/support/users/adamromanowski/).
137
 
sierotki.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://iworks.pl/2011/02/16/sierotki/
5
  Text Domain: sierotki
6
  Description: Implement Polish grammar rules with orphans.
7
  Author: Marcin Pietrzak
8
- Version: 2.9.9
9
  Author URI: http://iworks.pl/
10
  */
11
 
5
  Text Domain: sierotki
6
  Description: Implement Polish grammar rules with orphans.
7
  Author: Marcin Pietrzak
8
+ Version: 2.9.10
9
  Author URI: http://iworks.pl/
10
  */
11