diff options
author | Nicolas Lœuillet <nicolas.loeuillet@gmail.com> | 2013-08-05 12:39:24 +0200 |
---|---|---|
committer | Nicolas Lœuillet <nicolas.loeuillet@gmail.com> | 2013-08-05 12:39:24 +0200 |
commit | 4d0e2544917c8a7fba9eb6d3dccd5fd3790984a6 (patch) | |
tree | 4e7b6b6893cdf2049e274700459fe84960f1c05f | |
parent | 32520785018e3ec3a2ce200689e863099e9646f8 (diff) | |
download | wallabag-4d0e2544917c8a7fba9eb6d3dccd5fd3790984a6.tar.gz wallabag-4d0e2544917c8a7fba9eb6d3dccd5fd3790984a6.tar.zst wallabag-4d0e2544917c8a7fba9eb6d3dccd5fd3790984a6.zip |
link to download poche when update available
-rw-r--r-- | CREDITS | 3 | ||||
-rw-r--r-- | tpl/config.twig | 4 |
2 files changed, 3 insertions, 4 deletions
@@ -1,12 +1,11 @@ | |||
1 | poche is based on : | 1 | poche is based on : |
2 | * ReadItYourself http://www.memiks.fr/readityourself/ | ||
3 | * PHP Readability http://www.keyvan.net/2010/08/php-readability/ | 2 | * PHP Readability http://www.keyvan.net/2010/08/php-readability/ |
4 | * Encoding https://github.com/neitanod/forceutf8 | 3 | * Encoding https://github.com/neitanod/forceutf8 |
5 | * logo by Brightmix http://www.iconfinder.com/icondetails/43256/128/jeans_monotone_pocket_icon | 4 | * logo by Brightmix http://www.iconfinder.com/icondetails/43256/128/jeans_monotone_pocket_icon |
6 | * icons http://icomoon.io | 5 | * icons http://icomoon.io |
7 | * PHP Simple HTML DOM Parser (for Pocket import) http://simplehtmldom.sourceforge.net/ | 6 | * PHP Simple HTML DOM Parser (for Pocket import) http://simplehtmldom.sourceforge.net/ |
8 | * Session https://github.com/tontof/kriss_feed/blob/master/src/class/Session.php | 7 | * Session https://github.com/tontof/kriss_feed/blob/master/src/class/Session.php |
9 | * RainTPL http://www.raintpl.com/ | 8 | * Twig http://twig.sensiolabs.org |
10 | 9 | ||
11 | poche is developed by Nicolas Lœuillet under the Do What the Fuck You Want to Public License | 10 | poche is developed by Nicolas Lœuillet under the Do What the Fuck You Want to Public License |
12 | 11 | ||
diff --git a/tpl/config.twig b/tpl/config.twig index a17a4b17..a8be93b0 100644 --- a/tpl/config.twig +++ b/tpl/config.twig | |||
@@ -20,8 +20,8 @@ | |||
20 | <h2>{% trans "Updating poche" %}</h2> | 20 | <h2>{% trans "Updating poche" %}</h2> |
21 | <p><ul> | 21 | <p><ul> |
22 | <li>{% trans "your version" %} : <strong>{{ constant('POCHE_VERSION') }}</strong></li> | 22 | <li>{% trans "your version" %} : <strong>{{ constant('POCHE_VERSION') }}</strong></li> |
23 | <li>{% trans "latest stable version" %} : {{ prod }}. {% if compare_prod == -1 %}<strong>{% trans "a more recent stable version is available." %}</strong>{% else %}{% trans "you are up to date." %}{% endif %}</li> | 23 | <li>{% trans "latest stable version" %} : {{ prod }}. {% if compare_prod == -1 %}<strong><a href="http://inthepoche.com/?pages/T%C3%A9l%C3%A9charger-poche">{% trans "a more recent stable version is available." %}</a></strong>{% else %}{% trans "you are up to date." %}{% endif %}</li> |
24 | <li>{% trans "latest dev version" %} : {{ dev }}. {% if compare_dev == -1 %}<strong>{% trans "a more recent development version is available." %}</strong>{% else %}{% trans "you are up to date." %}{% endif %}</li> | 24 | <li>{% trans "latest dev version" %} : {{ dev }}. {% if compare_dev == -1 %}<strong><a href="http://inthepoche.com/?pages/T%C3%A9l%C3%A9charger-poche">{% trans "a more recent development version is available." %}</a></strong>{% else %}{% trans "you are up to date." %}{% endif %}</li> |
25 | </ul> | 25 | </ul> |
26 | </p> | 26 | </p> |
27 | 27 | ||