]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - install/update.php
changelog in update
[github/wallabag/wallabag.git] / install / update.php
index 8c93af6d2e1ad7718c8aeb27a9711e21408b157a..1deaf7f3f516b30bdbaab10a36823f7c8c417a8f 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 require_once dirname(__FILE__).'/../inc/poche/Tools.class.php';
 include dirname(__FILE__).'/../inc/poche/define.inc.php';
+include dirname(__FILE__).'/../inc/poche/myconfig.inc.php';
 require_once __DIR__ . '/../inc/poche/Database.class.php';
 $store = new Database();
-$old_salt = '464v54gLLw928uz4zUBqkRJeiPY68zCX';
 ?>
 <!DOCTYPE html>
 <!--[if lte IE 6]> <html class="no-js ie6 ie67 ie678" lang="en"> <![endif]-->
@@ -16,25 +16,29 @@ $old_salt = '464v54gLLw928uz4zUBqkRJeiPY68zCX';
         <title>updating poche</title>
     </head>
     <body>
-        <h1>update poche to 1.0-beta3</h1>
+        <h1>update poche to 1.0-beta4</h1>
 
         <h2>Changelog</h2>
-        <p>
-            <ul>
-                <li>this awesome updating step</li>
-                <li>error message when install folder exists</li>
-                <li>more tests before installation (write access, etc.)</li>
-                <li>updated README to make installation easier</li>
-                <li>german language thanks to HLFH</li>
-                <li>spanish language thanks to Nitche</li>
-                <li>new file ./inc/poche/myconfig.inc.php created to store language and salt</li>
-                <li><a href="https://github.com/inthepoche/poche/issues/119">#119</a>: salt is now created when installing poche</li>
-                <li><a href="https://github.com/inthepoche/poche/issues/130">#130</a>: robots.txt added</li>
-                <li><a href="https://github.com/inthepoche/poche/issues/136">#136</a>: error during readability import</li>
-                <li><a href="https://github.com/inthepoche/poche/issues/137">#137</a>: mixed content alert in https</li>
-                <li><a href="https://github.com/inthepoche/poche/issues/138">#138</a>: change pattern to parse url with #</li>
-            </ul>
-        </p>
+        <ul>
+            <li>enhancement: updating and installing poche are more easier</li>
+            <li>enhancement: poche now uses Full Text RSS to fetch content</li>
+            <li>enhancement: css and twig files are more clean, thanks to NumEricR and nicofrand</li>
+            <li>enhancement: updated german translation, thanks to HLFH</li>
+            <li>enhancement: add db/, cache/ and assets/ directories in versioning</li>
+            <li>enhancement: display messages when error with import, thanks to EliasZ</li>
+            <li>enhancement: poche compatibility test file</li>
+            <li>enhancement: <a href="https://github.com/inthepoche/poche/issues/112">#112</a>: link with shaarli</li>
+            <li>enhancement: <a href="https://github.com/inthepoche/poche/issues/162">#162</a>: links to firefox / chrome / android apps in config screen</li>
+            <li>bug: encode url to share with twitter / email / shaarli</li>
+            <li>bug: Add IPv4 url support (and others beginning by a digit)</li>
+            <li>bug: title page in article view was wrong</li>
+            <li>bug: <a href="https://github.com/inthepoche/poche/issues/148">#148</a>: use of undefined constant POCHE_VERSION</li>
+            <li>bug: <a href="https://github.com/inthepoche/poche/issues/148">#149</a>: can't poche theguardian.com</li>
+            <li>bug: <a href="https://github.com/inthepoche/poche/issues/150">#150</a>: default title for untitled articles</li>
+            <li>bug: <a href="https://github.com/inthepoche/poche/issues/150">#151</a>: HTML entities in titles are encoded twice</li>
+            <li>bug: <a href="https://github.com/inthepoche/poche/issues/169">#169</a>: entries height with short description</li>
+            <li>bug: <a href="https://github.com/inthepoche/poche/issues/175">#175</a>: IP addresses do not appear in "view original"</li>
+        </ul>
         <p>To update your poche, please fill the following fields.</p>
         <p>
         <form name="update" method="post">
@@ -46,26 +50,20 @@ $old_salt = '464v54gLLw928uz4zUBqkRJeiPY68zCX';
 <?php
 if (isset($_POST['go'])) {
     if (!empty($_POST['login']) && !empty($_POST['password'])) {
-        $user = $store->login($_POST['login'], sha1($_POST['password'] . $_POST['login'] . $old_salt));
+        $user = $store->login($_POST['login'], sha1($_POST['password'] . $_POST['login'] . SALT));
         if ($user != array()) {
-            $new_salt = md5(time() . $_SERVER['SCRIPT_FILENAME'] . rand());
             $myconfig_file = '../inc/poche/myconfig.inc.php';
-            if (!is_writable('../inc/poche/')) {
-                die('You don\'t have write access to create ./inc/poche/myconfig.inc.php.');
+            # just change version number in config file
+            
+            if (!is_writable('../inc/poche/myconfig.inc.php')) {
+                die('You don\'t have write access to open ./inc/poche/myconfig.inc.php.');
             }
 
-            if (!file_exists($myconfig_file))
+            if (file_exists($myconfig_file))
             {
-                $fp = fopen($myconfig_file, 'w');
-                
-                fwrite($fp, '<?php'."\r\n");
-                fwrite($fp, "define ('POCHE_VERSION', '1.0-beta3');" . "\r\n");
-                fwrite($fp, "define ('SALT', '" . $new_salt . "');" . "\r\n");
-                fwrite($fp, "define ('LANG', 'en_EN.utf8');" . "\r\n");
-                fclose($fp);
+                $content = str_replace('1.0-beta3', '1.0-beta4', file_get_contents($myconfig_file));
+                file_put_contents($myconfig_file, $content);
             }
-            # faire une mise à jour de la table users en prenant en compte le nouveau SALT généré
-            $store->updatePassword($user['id'], sha1($_POST['password'] . $_POST['login'] . $new_salt));
 ?>
         <p><span style="color: green;">your poche is up to date!</span></p>
         <p><span style="color: red;">don't forget to delete ./install/ folder after the update.</span></p>