Go Live Update URLS - Version 6.3.8

Version Description

  • Improved translations.
  • Fix typo in the readme.
  • Required PRO version 6.6.0+.
  • Tested to WordPress 6.0.0.
Download this release

Release Info

Developer Mat Lipe
Plugin Icon 128x128 Go Live Update URLS
Version 6.3.8
Comparing to
See all releases

Code changes from version 6.3.7 to 6.3.8

Files changed (3) hide show
  1. go-live-update-urls.php +3 -3
  2. readme.txt +10 -4
  3. src/Updaters/Repo.php +2 -3
go-live-update-urls.php CHANGED
@@ -9,14 +9,14 @@
9
  * Text Domain: go-live-update-urls
10
  * Domain Path: /languages/
11
  * Network: false
12
- * Requires at least: 5.2.0
13
  * Requires PHP: 5.6.0
14
  *
15
  * @package go-live-update-urls
16
  */
17
 
18
- define( 'GO_LIVE_UPDATE_URLS_VERSION', '6.3.7' );
19
- define( 'GO_LIVE_UPDATE_URLS_REQUIRED_PRO_VERSION', '6.4.0' );
20
  define( 'GO_LIVE_UPDATE_URLS_URL', plugin_dir_url( __FILE__ ) );
21
 
22
  use Go_Live_Update_Urls\Admin;
9
  * Text Domain: go-live-update-urls
10
  * Domain Path: /languages/
11
  * Network: false
12
+ * Requires at least: 5.4.0
13
  * Requires PHP: 5.6.0
14
  *
15
  * @package go-live-update-urls
16
  */
17
 
18
+ define( 'GO_LIVE_UPDATE_URLS_VERSION', '6.3.8' );
19
+ define( 'GO_LIVE_UPDATE_URLS_REQUIRED_PRO_VERSION', '6.6.0' );
20
  define( 'GO_LIVE_UPDATE_URLS_URL', plugin_dir_url( __FILE__ ) );
21
 
22
  use Go_Live_Update_Urls\Admin;
readme.txt CHANGED
@@ -2,10 +2,10 @@
2
  Contributors: Mat Lipe, onpointplugins
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40onpointplugins%2ecom&lc=US&item_name=Go%20Live%20Update%20Urls&no_note=0&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
4
  Tags: urls, launching, site changes, tools, domain, domains, domain changes, url changes
5
- Requires at least: 5.2.0
6
- Tested up to: 6.0.0
7
  Requires PHP: 5.6.0
8
- Stable tag: 6.3.7
9
 
10
  == Description ==
11
 
@@ -13,7 +13,7 @@ Goes through entire site and replaces all instances of an old URL with a new one
13
 
14
  <strong>Check out <a href="https://onpointplugins.com/product/go-live-update-urls-pro/" target="_blank">Go Live Update Urls PRO</a> for more features including support for tables created by plugins, the ability to test a URL before updating, update history, real time reporting, priority support, and so much more!</strong>
15
 
16
- <blockquote><a href=" https://onpointplugins.com/go-live-update-urls/go-live-update-urls-pro-usage/#url-counting" target="_blank">PRO version 6.4.0</a> is now available with real time reporting of urls, which will be and were updated!</blockquote>
17
 
18
 
19
  <h3>Features</h3>
@@ -99,6 +99,12 @@ If you wish to try to update tables mentioned as "not safe" anyway, you may make
99
  3. Update prevented due to incomplete data entered.
100
 
101
  == Changelog ==
 
 
 
 
 
 
102
  = 6.3.7 =
103
  * Added "Settings" link to plugin actions.
104
  * Introduced `Admin::get_url` method for retrieving URL or tools page.
2
  Contributors: Mat Lipe, onpointplugins
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40onpointplugins%2ecom&lc=US&item_name=Go%20Live%20Update%20Urls&no_note=0&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
4
  Tags: urls, launching, site changes, tools, domain, domains, domain changes, url changes
5
+ Requires at least: 5.4.0
6
+ Tested up to: 6.0.1
7
  Requires PHP: 5.6.0
8
+ Stable tag: 6.3.8
9
 
10
  == Description ==
11
 
13
 
14
  <strong>Check out <a href="https://onpointplugins.com/product/go-live-update-urls-pro/" target="_blank">Go Live Update Urls PRO</a> for more features including support for tables created by plugins, the ability to test a URL before updating, update history, real time reporting, priority support, and so much more!</strong>
15
 
16
+ <blockquote><a href=" https://onpointplugins.com/go-live-update-urls/go-live-update-urls-pro-usage/#url-counting" target="_blank">PRO version 6.7.0</a> is now available with real time reporting of urls, which will be and were updated!</blockquote>
17
 
18
 
19
  <h3>Features</h3>
99
  3. Update prevented due to incomplete data entered.
100
 
101
  == Changelog ==
102
+ = 6.3.8 =
103
+ * Improved translations.
104
+ * Fix typo in the readme.
105
+ * Required PRO version 6.6.0+.
106
+ * Tested to WordPress 6.0.0.
107
+
108
  = 6.3.7 =
109
  * Added "Settings" link to plugin actions.
110
  * Introduced `Admin::get_url` method for retrieving URL or tools page.
src/Updaters/Repo.php CHANGED
@@ -14,10 +14,9 @@ class Repo {
14
  use Singleton;
15
 
16
  /**
17
- * Get all registered updaters by classname
18
- * This list will grow over time as things are converted over
19
  *
20
- * @return array<Updaters_Abstract::class>
21
  */
22
  public function get_updaters() {
23
  $updaters = apply_filters( 'go-live-update-urls/updaters/repo/updaters', [
14
  use Singleton;
15
 
16
  /**
17
+ * Get all registered updaters by classname.
 
18
  *
19
+ * @return string[]
20
  */
21
  public function get_updaters() {
22
  $updaters = apply_filters( 'go-live-update-urls/updaters/repo/updaters', [