Version Description
- Hotfix on timber-admin error
Download this release
Release Info
Developer | jarednova |
Plugin | Timber |
Version | 0.17.1 |
Comparing to | |
See all releases |
Code changes from version 0.17.0 to 0.17.1
- functions/timber-admin.php +1 -1
- readme.txt +4 -1
- timber.php +1 -1
functions/timber-admin.php
CHANGED
@@ -10,7 +10,7 @@ class TimberAdmin {
|
|
10 |
}
|
11 |
|
12 |
function settings_link( $links, $file ) {
|
13 |
-
if (strstr($file, '
|
14 |
return array_merge(
|
15 |
array(
|
16 |
'settings' => '<a href="https://github.com/jarednova/timber/wiki" target="_blank">Documentation</a> | <a href="https://github.com/jarednova/timber/wiki/getting-started" target="_blank">Starter Guide</a>'
|
10 |
}
|
11 |
|
12 |
function settings_link( $links, $file ) {
|
13 |
+
if (strstr($file, '/timber.php')){
|
14 |
return array_merge(
|
15 |
array(
|
16 |
'settings' => '<a href="https://github.com/jarednova/timber/wiki" target="_blank">Documentation</a> | <a href="https://github.com/jarednova/timber/wiki/getting-started" target="_blank">Starter Guide</a>'
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: jarednova
|
3 |
Tags: template engine, templates, twig
|
4 |
Requires at least: 3.5
|
5 |
-
Stable tag: 0.17.
|
6 |
Tested up to: 3.8.1
|
7 |
PHP version: 5.3.0 or greater
|
8 |
License: GPLv2 or later
|
@@ -41,6 +41,9 @@ Timber is great for any WordPress developer who cares about writing good, mainta
|
|
41 |
|
42 |
== Changelog ==
|
43 |
|
|
|
|
|
|
|
44 |
= 0.17.0 =
|
45 |
* Now you can resize/crop images with positional preferences, thanks @mmikkel. Here are the docs: https://github.com/jarednova/timber/wiki/TimberImage#resize
|
46 |
* Removed the Timber Starter Guide from the admin, a link to the GitHub wiki suffices.
|
2 |
Contributors: jarednova
|
3 |
Tags: template engine, templates, twig
|
4 |
Requires at least: 3.5
|
5 |
+
Stable tag: 0.17.1
|
6 |
Tested up to: 3.8.1
|
7 |
PHP version: 5.3.0 or greater
|
8 |
License: GPLv2 or later
|
41 |
|
42 |
== Changelog ==
|
43 |
|
44 |
+
= 0.17.1 =
|
45 |
+
* Hotfix on timber-admin error
|
46 |
+
|
47 |
= 0.17.0 =
|
48 |
* Now you can resize/crop images with positional preferences, thanks @mmikkel. Here are the docs: https://github.com/jarednova/timber/wiki/TimberImage#resize
|
49 |
* Removed the Timber Starter Guide from the admin, a link to the GitHub wiki suffices.
|
timber.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Timber
|
|
4 |
Plugin URI: http://timber.upstatement.com
|
5 |
Description: The WordPress Timber Library allows you to write themes using the power Twig templates
|
6 |
Author: Jared Novack + Upstatement
|
7 |
-
Version: 0.17.
|
8 |
Author URI: http://upstatement.com/
|
9 |
*/
|
10 |
|
4 |
Plugin URI: http://timber.upstatement.com
|
5 |
Description: The WordPress Timber Library allows you to write themes using the power Twig templates
|
6 |
Author: Jared Novack + Upstatement
|
7 |
+
Version: 0.17.1
|
8 |
Author URI: http://upstatement.com/
|
9 |
*/
|
10 |
|