implement new version checking
This commit is contained in:
parent
95322e1224
commit
b72c3ef801
4 changed files with 43 additions and 2 deletions
|
@ -2976,6 +2976,8 @@
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
print check_for_update($link);
|
||||||
|
|
||||||
if (!SINGLE_USER_MODE) {
|
if (!SINGLE_USER_MODE) {
|
||||||
|
|
||||||
$result = db_query($link, "SELECT id,email FROM ttrss_users
|
$result = db_query($link, "SELECT id,email FROM ttrss_users
|
||||||
|
|
|
@ -128,7 +128,10 @@
|
||||||
// Stop updating feeds of user who was never logged in
|
// Stop updating feeds of user who was never logged in
|
||||||
// in specified amount of days. 0 disables.
|
// in specified amount of days. 0 disables.
|
||||||
|
|
||||||
define('CONFIG_VERSION', 3);
|
define('CHECK_FOR_NEW_VERSION', true);
|
||||||
|
// Check for new versions of tt-rss when entering preferences.
|
||||||
|
|
||||||
|
define('CONFIG_VERSION', 4);
|
||||||
// Expected config version. Please update this option in config.php
|
// Expected config version. Please update this option in config.php
|
||||||
// if necessary (after migrating all new options from this file).
|
// if necessary (after migrating all new options from this file).
|
||||||
|
|
||||||
|
|
|
@ -2356,4 +2356,40 @@
|
||||||
|
|
||||||
return $res;
|
return $res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function check_for_update($link) {
|
||||||
|
$releases_feed = "http://tt-rss.spb.ru/releases.rss";
|
||||||
|
|
||||||
|
if (!CHECK_FOR_NEW_VERSION || $_SESSION["access_level"] < 10) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
error_reporting(0);
|
||||||
|
$rss = fetch_rss($releases_feed);
|
||||||
|
error_reporting (DEFAULT_ERROR_LEVEL);
|
||||||
|
|
||||||
|
if ($rss) {
|
||||||
|
|
||||||
|
$items = $rss->items;
|
||||||
|
|
||||||
|
if (!$items || !is_array($items)) $items = $rss->entries;
|
||||||
|
if (!$items || !is_array($items)) $items = $rss;
|
||||||
|
|
||||||
|
if (!is_array($items)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$last_item = $items[0];
|
||||||
|
|
||||||
|
$last_version = trim(preg_replace("/(Milestone)|(completed)/", "", $last_item["title"]));
|
||||||
|
$cur_version = preg_replace("/\.99/", "", VERSION);
|
||||||
|
|
||||||
|
$release_url = $last_item["link"];
|
||||||
|
|
||||||
|
if ($cur_version != $last_version) {
|
||||||
|
return "<div class=\"notice\"><a target=\"_new\" href=\"$release_url\">
|
||||||
|
New version of Tiny-Tiny RSS is available.</a></div>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
define('EXPECTED_CONFIG_VERSION', 3);
|
define('EXPECTED_CONFIG_VERSION', 4);
|
||||||
|
|
||||||
if (!file_exists("config.php")) {
|
if (!file_exists("config.php")) {
|
||||||
print "<b>Fatal Error</b>: You forgot to copy
|
print "<b>Fatal Error</b>: You forgot to copy
|
||||||
|
|
Loading…
Reference in a new issue