Skip to content

Commit c70f99d

Browse files
committed
Update for Txp 4.7.0+
1 parent 5352a06 commit c70f99d

File tree

5 files changed

+23
-9
lines changed

5 files changed

+23
-9
lines changed

CHANGELOG.textile

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
11
h1. Changelog
22

3-
h2. 0.4.0 - UPCOMING
3+
h2. 0.5.0 - 2019-06-26
44

5+
* For Textpattern 4.7.0+.
56
* Added @description@ field.
7+
* Fall back on fullsize image if thumb doesn't exist.
8+
* Try to create profile directories with the same permissions as the
9+
images directory.
10+
* Fix greedy thumb profile panel gobbling list options (thanks, phiw13).
11+
* Fix toggle state recall (thanks, phiw13).
12+
* Fix undefined variable warnings (thanks, philwareham).
13+
* Fix search_method array-to-string conversion warning.
14+
* Fix errors if tables not created when no images are in the database.
15+
* Update documentation and code consistency (thanks, philwareham)
16+
17+
h2. 0.4.0 - 2017-07-18
18+
619
* Added Composer/Packagist support.
720
* Removed SWF support.
821
* Tidied layout for 4.6/4.7 (thanks, philwareham)

README.textile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ h2. Features
1717

1818
h2. Installing
1919

20-
*Requires Textpattern 4.6.0+*
20+
*Requires Textpattern 4.7.0+*
2121

2222
Download the plugin from either "GitHub":https://github.com/Bloke/smd_thumbnail/releases, or the "software page":https://stefdawson.com/sw/plugins/smd_thumbnail, paste the code into the Plugins administration panel, install and enable the plugin. Visit the "forum thread":https://forum.textpattern.io/viewtopic.php?id=34367 for more info or to report on the success or otherwise of the plugin.
2323

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"source": "https://github.com/bloke/smd_thumbnail"
1111
},
1212
"require": {
13-
"textpattern/lock": ">=4.6.0",
13+
"textpattern/lock": ">=4.7.0",
1414
"textpattern/installer": "*"
1515
}
1616
}

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "smd_thumbnail",
33
"description": "Multiple image thumbnails of arbitrary dimensions",
4-
"version": "0.4.0",
4+
"version": "0.5.0",
55
"type": 5,
66
"author": "Stef Dawson",
77
"author_uri": "https://stefdawson.com/",

smd_thumbnail.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// 1 = Plugin help is in raw HTML. Not recommended.
1818
# $plugin['allow_html_help'] = 1;
1919

20-
$plugin['version'] = '0.4.0';
20+
$plugin['version'] = '0.5.0';
2121
$plugin['author'] = 'Stef Dawson';
2222
$plugin['author_uri'] = 'https://stefdawson.com/';
2323
$plugin['description'] = 'Multiple image thumbnails of arbitrary dimensions';
@@ -56,6 +56,7 @@
5656

5757
$plugin['textpack'] = <<<EOT
5858
#@smd_thumb
59+
#@language en, en-gb, en-us
5960
smd_thumb_actions => Actions
6061
smd_thumb_all_sizes => All sizes
6162
smd_thumb_all_thumbs => Create
@@ -69,9 +70,9 @@
6970
smd_thumb_create_group_confirm => Really create thumbnails for ALL active profiles? Any existing thumbs will be overwritten.
7071
smd_thumb_delete => Deletion
7172
smd_thumb_delete_confirm => Really delete profile {name}? It will delete ALL thumbnails of this type.
72-
smd_thumb_image => Image =
73+
smd_thumb_image => Image =
7374
smd_thumb_new => New profile
74-
smd_thumb_profile => Profile =
75+
smd_thumb_profile => Profile =
7576
smd_thumb_profile_deleted => Profile <strong>{name}</strong> deleted
7677
smd_thumb_profile_exists => Profile <strong>{name}</strong> already exists
7778
smd_thumb_profile_heading => Thumbnail profiles
@@ -87,7 +88,7 @@
8788
smd_thumb_txp_default_sync => Keep thumbnails in sync with default profile on:
8889
smd_thumb_upload => Replace selected thumbnail
8990
#@smd_thumb
90-
#@language fr-fr
91+
#@language fr
9192
smd_thumb_actions => Actions
9293
smd_thumb_all_sizes => Toutes les tailles
9394
smd_thumb_all_thumbs => Créer
@@ -1939,7 +1940,7 @@ function smd_thumbnail_info($atts, $thing = NULL)
19391940

19401941
h2(#install). Installing
19411942

1942-
*Requires Textpattern 4.6.0+*
1943+
*Requires Textpattern 4.7.0+*
19431944

19441945
Download the plugin from either "GitHub":https://github.com/Bloke/smd_thumbnail/releases, or the "software page":https://stefdawson.com/sw/plugins/smd_thumbnail, paste the code into the Plugins administration panel, install and enable the plugin. Visit the "forum thread":https://forum.textpattern.io/viewtopic.php?id=34367 for more info or to report on the success or otherwise of the plugin.
19451946

0 commit comments

Comments
 (0)