| @@ -1,10 +1,10 @@ | ||
| 1 | 1 | === Plugin Name === |
| 2 | 2 | Contributors: webzunft |
| 3 | 3 | Tags: image, images, picture, picture source, image source, mediathek |
| 4 | 4 | Requires at least: 3.4 |
| 5 | -Tested up to: 3.5 | |
| 6 | -Stable tag: 1.2 | |
| 5 | +Tested up to: 3.8 RC1 | |
| 6 | +Stable tag: 1.3.5 | |
| 7 | 7 | License: GPLv3 or later |
| 8 | 8 | License URI: http://www.gnu.org/licenses/gpl-3.0.html |
| 9 | 9 | |
| 10 | 10 | The Image Source Control saves the source of an image, lists them and warns if it is missing. |
| @@ -17,10 +17,12 @@ | ||
| 17 | 17 | |
| 18 | 18 | **Features** |
| 19 | 19 | |
| 20 | 20 | * adds an extra field (custom field) to mediathek to include the image source into |
| 21 | -* lets you mark an image to belong to the posts author | |
| 21 | +* lets you mark an image to belong to the uploader | |
| 22 | 22 | * lists images with missing sources in the backend |
| 23 | +* show image source directly in the image | |
| 24 | +* warnings, if image source is missing | |
| 23 | 25 | * shortcode to list the sources in the editor |
| 24 | 26 | * shortcode to list all images in the blog as a paginated list |
| 25 | 27 | * function to include sources of a post in templates |
| 26 | 28 | |
| @@ -39,16 +41,63 @@ | ||
| 39 | 41 | e.g. |
| 40 | 42 | |
| 41 | 43 | 1. Upload `wg-image-source-control`-folder to the `/wp-content/plugins/` directory |
| 42 | 44 | 1. Activate ISC through the 'Plugins' menu in WordPress |
| 45 | +1. Visit _Settings > Image Control_ to set up the plugin | |
| 43 | 46 | |
| 44 | 47 | == Screenshots == |
| 45 | 48 | |
| 46 | -1. Missing sources page to list images with missing source. | |
| 47 | -2. Two extra fields from ISC in mediathek | |
| 49 | +1. display a list with all images of your site and their sources | |
| 50 | +1. display image source within the image | |
| 51 | +1. plenty of settings to customize how to display image sources | |
| 52 | +1. added two new fields to media library | |
| 48 | 53 | |
| 49 | 54 | == Changelog == |
| 50 | 55 | |
| 56 | += 1.3.5 = | |
| 57 | + | |
| 58 | +* [feature] added hooks to enable developers to add their own images to the image source list (more information in the [manual](http://webgilde.com/en/image-source-control/image-source-control-manual/)) | |
| 59 | +* [feature] added image licences | |
| 60 | +* updated settings page layout so it works WordPress 3.8 RC1 | |
| 61 | +* [l10n] updated German translation | |
| 62 | + | |
| 63 | += 1.3.4 = | |
| 64 | + | |
| 65 | +* [bugfix] fixed the problem when the plugin is used with wpdirauth plugin. | |
| 66 | + | |
| 67 | += 1.3.3 = | |
| 68 | + | |
| 69 | +* [bugfix] fixed problems with special characters like German umlauts (äöü) in file names | |
| 70 | +* added .jpeg to allowed image extensions | |
| 71 | + | |
| 72 | += 1.3.2 = | |
| 73 | + | |
| 74 | +* added missing files | |
| 75 | + | |
| 76 | += 1.3.1 = | |
| 77 | + | |
| 78 | +* [bugfix] list featured images with the 'isc_list_all' shortcode; please resave posts with featured images to see them in the list | |
| 79 | + | |
| 80 | += 1.3.0 = | |
| 81 | + | |
| 82 | +* [feature] hide the image source list under the post/page (default: visible) | |
| 83 | +* [feature] use uploader as the image author, not the posts author | |
| 84 | +* [feature] warnings, if image is saved without image source | |
| 85 | +* [feature] show image source directly within the image; you can choose the position | |
| 86 | +* [fixed] update issues | |
| 87 | + | |
| 88 | += 1.2.0.3 = | |
| 89 | + | |
| 90 | +* [fixed] solid fix for an issue occurring on updating to version 1.2 | |
| 91 | + | |
| 92 | += 1.2.0.2 = | |
| 93 | + | |
| 94 | +* broken fix, DON'T use this version | |
| 95 | + | |
| 96 | += 1.2.0.1 = | |
| 97 | + | |
| 98 | +* really hot fix for problems some of you experienced after updating to version 1.2. | |
| 99 | + | |
| 51 | 100 | = 1.2 = |
| 52 | 101 | |
| 53 | 102 | * [feature] added an option panel under settings to customize most frontend texts |
| 54 | 103 | * [feature] show image thumbnails in the list of all images |
| @@ -113,7 +162,7 @@ | ||
| 113 | 162 | `<?php if( function_exists('isc_list') ) { isc_list(); } ?>` |
| 114 | 163 | |
| 115 | 164 | **list all image sources** |
| 116 | 165 | |
| 117 | -You can add a paginated list with ALL attachments and sources to a post or page using the shortcode [isc_list_all]. Use `[isc_list per_page="25]` to show only a limited number of images per page. | |
| 166 | +You can add a paginated list with ALL attachments and sources to a post or page using the shortcode [isc_list_all]. Use `[isc_list_all per_page="25"]` to show only a limited number of images per page. | |
| 118 | 167 | |
| 119 | 168 | The plugin searches your post content and thumbnail for images (attachments) and lists them, if you included at least the image source or marked it as your own image. |