add cloud

This commit is contained in:
François 2025-05-08 20:33:38 +02:00
parent c5098af237
commit 9eb1eca8d1
5 changed files with 5 additions and 6 deletions

View File

@ -164,7 +164,6 @@ if (isset ($_REQUEST [A_ACTION]) && $_REQUEST [A_ACTION] == T_FORGETME) {
}
if (isset ($_REQUEST [A_HASH]))
$message .= '<div class="message-error">Version exp&eacute;rimentale. Ne fonctionne actuellement que pour les archives.</div>'.NL;
if ($message)
echo $message;

View File

@ -33,7 +33,7 @@
# knowledge of the CeCILL-B license and that you accept its terms. #
##########################################################################
# Kaz addon (see https://git.kaz.bzh/KAZ/depollueur for information)
# version : 2.24 (2025-01-26)
# version : 2.25 (2025-05-08)
##########################################################################
# - installer l'utilitaire apg pour génération de mot de passes

View File

@ -33,7 +33,7 @@
# knowledge of the CeCILL-B license and that you accept its terms. #
##########################################################################
# Kaz addon (see https://git.kaz.bzh/KAZ/depollueur for information)
# version : 2.24 (2025-01-26)
# version : 2.25 (2025-05-08)
PRG=$(basename $0)

View File

@ -243,7 +243,7 @@ MainAttachment::readCloudUrl () {
LOG_BUG (line.rfind ("cloud: bad", 0) == 0, return, "eMailShrinker: bug M14: bad cloud link. (line: " << line << ")");
if (line.rfind ("cloud: none", 0) == 0)
return;
// XXX wait new version // cloudDownloadURL = line.substr (7);
cloudDownloadURL = line.substr (7);
}
// ================================================================================

View File

@ -33,8 +33,8 @@
////////////////////////////////////////////////////////////////////////////
#include "version.hpp"
const std::string kaz::LAST_VERSION_NUM ("2.24");
const std::string kaz::LAST_VERSION_DATE ("2025-01-26");
const std::string kaz::LAST_VERSION_NUM ("2.25");
const std::string kaz::LAST_VERSION_DATE ("2025-05-08");
const std::string kaz::LAST_VERSION (LAST_VERSION_NUM+" "+LAST_VERSION_DATE+" eMailShrinker");
#include <iostream>