check.php | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-)
New commits: commit b70a7b26eb7bfaf44ab669e0af87fbe84b9e219d Author: Christian Lohmaier <[email protected]> Date: Mon Dec 4 11:48:54 2017 +0100 enable update for 5.4.3 and remove type preselection that should give us more realistic way to tell how many users really need 32bit and not just keep using it because that's what they installed some day in the past diff --git a/check.php b/check.php index f0390bc..e1fef66 100644 --- a/check.php +++ b/check.php @@ -487,6 +487,9 @@ $build_hash_to_version = array( '50d9bf2b0a79cdb85a3814b592608037a682059d' => '5.3.5.2', # Final # 5.3.6 '686f202eff87ef707079aeb7f485847613344eb7' => '5.3.6.1', # Final, to fix translation issues in 5.3.5 + # 5.3.7 + '376eaac300a303c4ad2193fb7f6a7522caf550b9' => '5.3.7.1', + '6b8ed514a9f8b44d37a1b96673cbbdd077e24059' => '5.3.7.2', # Final ################## # 5.4.0 versions @@ -503,6 +506,10 @@ $build_hash_to_version = array( # 5.4.2 'dfa67a98bede79c671438308dc9036d50465d2cb' => '5.4.2.1', '22b09f6418e8c2d508a9eaf86b2399209b0990f4' => '5.4.2.2', # Final + # 5.4.3 + '32c8895c6cae21571f364dbb059f419a743ee44d' => '5.4.3.1', + 'facb2780328619f348f035e17baa8b2984099ca4' => '5.4.3.2', + '92a7159f7e4af62137622921e809f8546db437e5' => '5.4.3.2', # hotfix1, Final ); # Descriptions of the target versions @@ -515,17 +522,17 @@ $build_hash_to_version = array( # where '<type>' and '<lang>' will be substitued with the right value # NOTE: '&' in the URL has to be escaped as & $update_map = array( - 'stable' => array('gitid' => '686f202eff87ef707079aeb7f485847613344eb7', - 'id' => 'LibreOffice 5.3.6', - 'version' => '5.3.6', + 'stable' => array('gitid' => '6b8ed514a9f8b44d37a1b96673cbbdd077e24059', + 'id' => 'LibreOffice 5.3.7', + 'version' => '5.3.7', 'update_type' => 'text/html', - 'update_src' => 'https://www.libreoffice.org/download/download/?type=<type>&lang=<lang>&version=5.3.6', + 'update_src' => 'https://www.libreoffice.org/download/download/?lang=<lang>&version=5.3.7', 'substitute' => true ), - 'latest' => array('gitid' => '22b09f6418e8c2d508a9eaf86b2399209b0990f4', - 'id' => 'LibreOffice 5.4.2', - 'version' => '5.4.2', + 'latest' => array('gitid' => '92a7159f7e4af62137622921e809f8546db437e5', + 'id' => 'LibreOffice 5.4.3', + 'version' => '5.4.3', 'update_type' => 'text/html', - 'update_src' => 'https://www.libreoffice.org/download/download/?type=<type>&lang=<lang>&version=5.4.2', + 'update_src' => 'https://www.libreoffice.org/download/download/?lang=<lang>&version=5.4.3', 'substitute' => true ), ); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
