Changeset 3121559
- Timestamp:
- 07/18/2024 02:56:01 PM (21 months ago)
- Location:
- remotemonkey/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (1 diff)
-
remotemonkey.php (modified) (2 diffs)
-
src/Remotemonkey/Api/Controller/ExtensionController.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
remotemonkey/trunk/readme.txt
r3114730 r3121559 4 4 Requires at least: 6.4 5 5 Tested up to: 6.6 6 Stable tag: 1.1. 16 Stable tag: 1.1.2 7 7 Requires PHP: 7.4 8 8 Author: BackupMonkey.io -
remotemonkey/trunk/remotemonkey.php
r3114730 r3121559 4 4 Plugin Name: RemoteMonkey 5 5 Description: Connecting to the BackupMonkey website management 6 Version: 1.1. 16 Version: 1.1.2 7 7 Author: BackupMonkey.io Team <team@backupmonkey.io> 8 8 Author URI: https://backupmonkey.io/ … … 15 15 define( 'REMOTEMONKEY_APIURL', 'https://api.backupmonkey.io/' ); 16 16 define( 'REMOTEMONKEY_GUIURL', 'https://console.backupmonkey.io' ); 17 define( 'REMOTEMONKEY_VERSION', '1.1. 1' );17 define( 'REMOTEMONKEY_VERSION', '1.1.2' ); 18 18 19 19 /** -
remotemonkey/trunk/src/Remotemonkey/Api/Controller/ExtensionController.php
r3078296 r3121559 28 28 return array( 29 29 'element' => '.' === $pluginFolder ? $properties['Name'] : $pluginFolder, 30 'extension_id' => rtrim( $key, '.php'),30 'extension_id' => preg_replace( '/\.php$/i', '', $key ), 31 31 'name' => $properties['Name'], 32 32 'translatedName' => $properties['Name'],
Note: See TracChangeset
for help on using the changeset viewer.