Version Description
Download this release
Release Info
Developer | dd32-githubsync |
Plugin | Add From Server |
Version | 3.4.1 |
Comparing to | |
See all releases |
Code changes from version 3.4 to 3.4.1
- add-from-server.php +3 -3
- readme.md +6 -3
add-from-server.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
namespace dd32\WordPress\AddFromServer;
|
3 |
/*
|
4 |
* Plugin Name: Add From Server
|
5 |
-
* Version: 3.4
|
6 |
* Plugin URI: https://dd32.id.au/wordpress-plugins/add-from-server/
|
7 |
* Description: Plugin to allow the Media Manager to add files from the webservers filesystem. <strong>Note:</strong> All files are copied to the uploads directory.
|
8 |
* Author: Dion Hulse
|
@@ -14,9 +14,9 @@ if ( !is_admin() ) {
|
|
14 |
return;
|
15 |
}
|
16 |
|
17 |
-
const MIN_WP = '5.
|
18 |
const MIN_PHP = '7.0';
|
19 |
-
const VERSION = '3.4';
|
20 |
|
21 |
// Dynamic constants must be define()'d.
|
22 |
define( __NAMESPACE__ . '\PLUGIN', plugin_basename( __FILE__ ) );
|
2 |
namespace dd32\WordPress\AddFromServer;
|
3 |
/*
|
4 |
* Plugin Name: Add From Server
|
5 |
+
* Version: 3.4.1
|
6 |
* Plugin URI: https://dd32.id.au/wordpress-plugins/add-from-server/
|
7 |
* Description: Plugin to allow the Media Manager to add files from the webservers filesystem. <strong>Note:</strong> All files are copied to the uploads directory.
|
8 |
* Author: Dion Hulse
|
14 |
return;
|
15 |
}
|
16 |
|
17 |
+
const MIN_WP = '5.4';
|
18 |
const MIN_PHP = '7.0';
|
19 |
+
const VERSION = '3.4.1';
|
20 |
|
21 |
// Dynamic constants must be define()'d.
|
22 |
define( __NAMESPACE__ . '\PLUGIN', plugin_basename( __FILE__ ) );
|
readme.md
CHANGED
@@ -2,10 +2,10 @@ Add From Server
|
|
2 |
===============
|
3 |
* Contributors: dd32
|
4 |
* Tags: admin, media, uploads, post, import, files
|
5 |
-
* Requires at least: 5.
|
6 |
-
* Tested up to: 5.
|
7 |
* Requires PHP: 7.0
|
8 |
-
* Stable tag: 3.4
|
9 |
|
10 |
Add From Server is designed to help ease the pain of bad web hosts, allowing you to upload files via FTP or SSH and later import them into WordPress.
|
11 |
|
@@ -32,6 +32,9 @@ https://developer.wordpress.org/cli/commands/media/import/
|
|
32 |
|
33 |
## Changelog
|
34 |
|
|
|
|
|
|
|
35 |
### 3.4
|
36 |
* The plugin now requires WordPress 5.1+ and PHP 7.0+. No reason other than why not.
|
37 |
* Bumps the version to stop the invalid vulnerability warnings.
|
2 |
===============
|
3 |
* Contributors: dd32
|
4 |
* Tags: admin, media, uploads, post, import, files
|
5 |
+
* Requires at least: 5.4
|
6 |
+
* Tested up to: 5.5
|
7 |
* Requires PHP: 7.0
|
8 |
+
* Stable tag: 3.4.1
|
9 |
|
10 |
Add From Server is designed to help ease the pain of bad web hosts, allowing you to upload files via FTP or SSH and later import them into WordPress.
|
11 |
|
32 |
|
33 |
## Changelog
|
34 |
|
35 |
+
### 3.4.1
|
36 |
+
* Plugin now requires WordPress 5.4+
|
37 |
+
|
38 |
### 3.4
|
39 |
* The plugin now requires WordPress 5.1+ and PHP 7.0+. No reason other than why not.
|
40 |
* Bumps the version to stop the invalid vulnerability warnings.
|