v1.6.2 #2
@ -7,6 +7,8 @@ All notable changes to this project will be documented in this file.
|
|||||||
- Updated POT file version for consistency
|
- Updated POT file version for consistency
|
||||||
- Improved JavaScript localization with proper fallbacks
|
- Improved JavaScript localization with proper fallbacks
|
||||||
- Enhanced code quality for WordPress.org submission
|
- Enhanced code quality for WordPress.org submission
|
||||||
|
- Fixed Git Updater configuration with correct Update URI
|
||||||
|
- Improved update server URL configuration
|
||||||
|
|
||||||
## [1.6.1] - 2024-05-15
|
## [1.6.1] - 2024-05-15
|
||||||
### Added
|
### Added
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
* Domain Path: /languages
|
* Domain Path: /languages
|
||||||
* Requires at least: 5.0
|
* Requires at least: 5.0
|
||||||
* Requires PHP: 7.0
|
* Requires PHP: 7.0
|
||||||
|
* Update URI: https://git-updater.wpallstars.com
|
||||||
* GitHub Plugin URI: wpallstars/fix-plugin-does-not-exist-notices
|
* GitHub Plugin URI: wpallstars/fix-plugin-does-not-exist-notices
|
||||||
* GitHub Branch: main
|
* GitHub Branch: main
|
||||||
* Gitea Plugin URI: wpallstars/fix-plugin-does-not-exist-notices
|
* Gitea Plugin URI: wpallstars/fix-plugin-does-not-exist-notices
|
||||||
|
@ -136,10 +136,8 @@ class Updater {
|
|||||||
|
|
||||||
// Set the update server based on the installation source
|
// Set the update server based on the installation source
|
||||||
add_filter('gul_update_server', function() {
|
add_filter('gul_update_server', function() {
|
||||||
if ($this->source === 'github') {
|
if ($this->source === 'github' || $this->source === 'gitea') {
|
||||||
return 'https://wpallstars.com'; // GitHub update server
|
return 'https://git-updater.wpallstars.com'; // Update server for both GitHub and Gitea
|
||||||
} elseif ($this->source === 'gitea') {
|
|
||||||
return 'https://wpallstars.com'; // Gitea update server
|
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
});
|
});
|
||||||
|
@ -93,6 +93,8 @@ Although this plugin consumes minimal disk space, and doesn't run unless you are
|
|||||||
* Updated POT file version for consistency
|
* Updated POT file version for consistency
|
||||||
* Improved JavaScript localization with proper fallbacks
|
* Improved JavaScript localization with proper fallbacks
|
||||||
* Enhanced code quality for WordPress.org submission
|
* Enhanced code quality for WordPress.org submission
|
||||||
|
* Fixed Git Updater configuration with correct Update URI
|
||||||
|
* Improved update server URL configuration
|
||||||
|
|
||||||
= 1.6.1 =
|
= 1.6.1 =
|
||||||
* Added AI assistant guide and workflow documentation
|
* Added AI assistant guide and workflow documentation
|
||||||
@ -183,7 +185,7 @@ Although this plugin consumes minimal disk space, and doesn't run unless you are
|
|||||||
== Upgrade Notice ==
|
== Upgrade Notice ==
|
||||||
|
|
||||||
= 1.6.2 =
|
= 1.6.2 =
|
||||||
Improved JavaScript localization and enhanced code quality for WordPress.org submission!
|
Improved JavaScript localization, enhanced code quality, and fixed Git Updater configuration for seamless updates!
|
||||||
|
|
||||||
= 1.6.1 =
|
= 1.6.1 =
|
||||||
Added comprehensive AI assistant guide and workflow documentation for improved development processes!
|
Added comprehensive AI assistant guide and workflow documentation for improved development processes!
|
||||||
|
Reference in New Issue
Block a user