Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/release_on_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,9 @@ jobs:
cp composer.json /tmp/oneupdate/
cp -r inc/ /tmp/oneupdate/
cp oneupdate.php /tmp/oneupdate/
cp README.md /tmp/oneupdate/
cp readme.txt /tmp/oneupdate/
cp uninstall.php /tmp/oneupdate/
cp -r vendor/ /tmp/oneupdate/
cp -r languages/ /tmp/oneupdate/

# Create the zip file
cd /tmp
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rtcamp/oneupdate",
"version": "1.0.2",
"version": "1.0.0",
"description": "OneUpdate - Enterprise WordPress Plugin Manager Automate plugin updates across multiple WordPress sites with CI/CD integration. Creates pull requests for seamless development-to-production workflows.",
"type": "wordpress-plugin",
"autoload": {
Expand Down
13 changes: 5 additions & 8 deletions oneupdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
/**
* Plugin Name: OneUpdate
* Plugin URI: https://github.com/rtCamp/OneUpdate/
* Version: 1.0.2
* Version: 1.0.0
* Description: OneUpdate - Enterprise WordPress Plugin Manager Automate plugin updates across multiple WordPress sites with CI/CD integration. Creates pull requests for seamless development-to-production workflows.
* Author: Utsav Patel, rtCamp
* Author URI: https://rtcamp.com
* Text Domain: oneupdate
* Domain Path: /languages
* Requires at least: 6.5.0
* Requires PHP: 7.4
* Tested up to: 6.8.2
* Requires at least: 6.5
* Requires PHP: 8.0
* Tested up to: 6.8
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
*
Expand All @@ -21,7 +21,7 @@
exit;
}

define( 'ONEUPDATE_PLUGIN_LOADER_VERSION', '1.0.2' );
define( 'ONEUPDATE_PLUGIN_LOADER_VERSION', '1.0.0' );
define( 'ONEUPDATE_PLUGIN_LOADER_FEATURES_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
define( 'ONEUPDATE_PLUGIN_LOADER_RELATIVE_PATH', dirname( plugin_basename( __FILE__ ) ) );
define( 'ONEUPDATE_PLUGIN_LOADER_FEATURES_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
Expand Down Expand Up @@ -87,9 +87,6 @@ function () {
*/
function oneupdate_plugin_loader() {
\OneUpdate\Plugin::get_instance();

// load plugin text domain.
load_plugin_textdomain( 'oneupdate', false, ONEUPDATE_PLUGIN_LOADER_RELATIVE_PATH . '/languages/' );
}

add_action( 'plugins_loaded', 'oneupdate_plugin_loader' );
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oneupdate",
"version": "1.0.2",
"version": "1.0.0",
"description": "OneUpdate - Enterprise WordPress Plugin Manager Automate plugin updates across multiple WordPress sites with CI/CD integration. Creates pull requests for seamless development-to-production workflows.",
"private": true,
"author": "rtCamp",
Expand Down
8 changes: 4 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Contributors: Utsav Patel, rtCamp
Donate link: https://rtcamp.com/
Tags: plugin manager, CI/CD, automation, enterprise
Requires at least: 6.5
Tested up to: 6.8.2
Stable tag: 1.0.1
Requires PHP: 7.4
Tested up to: 6.8
Stable tag: 1.0.0
Requires PHP: 8.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Centralized plugin management for multiple WordPress sites using CI/CD workflows. Automate plugin updates across development, staging, and production environments.
Centralized plugin management for WordPress sites via CI/CD. Automate updates across development, staging, and production environments.

== Description ==

Expand Down