Changeset 1842922
- Timestamp:
- 03/19/2018 04:19:49 PM (8 years ago)
- Location:
- multiple-cropped-images/trunk
- Files:
-
- 3 edited
-
dist/config/constants.php (modified) (2 diffs)
-
mci.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multiple-cropped-images/trunk/dist/config/constants.php
r1842882 r1842922 7 7 /* ---------- DIRECTORIES ---------- */ 8 8 define('MCI_DIR_PLUGIN', plugin_dir_path(__DIR__)); 9 define('MCI_DIR_IMAGES', MCI_DIR_PLUGIN . 'images/');9 define('MCI_DIR_IMAGES', wp_upload_dir()['basedir'] . '/mci/'); 10 10 define('MCI_DIR_ORIGINALS', 'originals/'); 11 11 define('MCI_DIR_RESIZED', 'resized/'); … … 20 20 define('MCI_URL_CSS', MCI_URL_ASSETS . 'css/'); 21 21 define('MCI_URL_JS', MCI_URL_ASSETS . 'js/'); 22 define('MCI_URL_IMAGES', MCI_URL_PLUGIN . 'images/'); 23 24 25 /* ---------- LOCALIZATION ----------*/ 26 define('MCI_LOC_DOMAIN', MCI_LOC_DOMAIN); 22 define('MCI_URL_IMAGES', wp_upload_dir()['baseurl'] . '/mci/'); 27 23 28 24 -
multiple-cropped-images/trunk/mci.php
r1842892 r1842922 4 4 * Plugin Name: Multiple Cropped Images 5 5 * Description: Allows to upload multiple images to any post and adds cropping functionality to any predefined size. 6 * Version: 1.1. 16 * Version: 1.1.2 7 7 * Author: Webtimal GmbH <info@webtimal.ch> 8 8 * Author URI: http://www.webtimal.ch -
multiple-cropped-images/trunk/readme.txt
r1842892 r1842922 2 2 Tags: Images, Cropping, Upload, Sizes 3 3 Tested up to: 4.9.1 4 Stable tag: v1.1. 14 Stable tag: v1.1.2 5 5 License: GPL-3.0 6 6 License URI: https://www.gnu.org/licenses/gpl-3.0.hmtl … … 44 44 The following change logs provide information about new features and fixed issues for all released versions. 45 45 46 = v1.1.1 = - Minor bug fixes and improvements 46 = v1.1.1 = 47 * Note - Minor bug fixes and improvements 48 49 = v1.1.1 = 50 * Note - Minor bug fixes and improvements 47 51 48 52 = v1.1.0 =
Note: See TracChangeset
for help on using the changeset viewer.