From 123bf70102635ab1e523571ecdeb8517ac12eed6 Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Wed, 2 Apr 2025 11:14:09 +0200 Subject: [PATCH] udpate version and changelog to 2.1.1 and sdk submodule commit --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + CMakeLists.txt | 2 +- UserGuide.md | 2 +- build/SynologyNAS/toolkit/source/MEGAcmd/INFO.sh | 2 +- build/megacmd/debian.changelog | 8 ++++---- build/megacmd/megacmd.changes | 7 ++++--- build/version | 2 +- src/megacmdversion.h.in | 3 ++- 8 files changed, 15 insertions(+), 12 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index ecb89626..411792ca 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -11,6 +11,7 @@ body: label: "MEGAcmd version" description: "Which version of MEGAcmd did you encountered this issue? (Can be looked up using the `version` command)" options: + - 2.1.1 - 2.1.0 - 2.0.0 - 1.7.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 53f75cd2..bb161de8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ execute_process( set(MEGACMD_MAJOR_VERSION 2) set(MEGACMD_MINOR_VERSION 1) -set(MEGACMD_MICRO_VERSION 0) +set(MEGACMD_MICRO_VERSION 1) ## Configure megacmdversion.h configure_file("${CMAKE_CURRENT_LIST_DIR}/src/megacmdversion.h.in" "${CMAKE_CURRENT_LIST_DIR}/src/megacmdversion.h" @ONLY) diff --git a/UserGuide.md b/UserGuide.md index 6d20af59..ba8bbaf8 100644 --- a/UserGuide.md +++ b/UserGuide.md @@ -1,6 +1,6 @@ # MEGAcmd User Guide -This document relates to MEGAcmd version 2.1.0. It contains introductory information and the [Command Summary](#command-summary), with links to detailed command descriptions. +This document relates to MEGAcmd version 2.1.1. It contains introductory information and the [Command Summary](#command-summary), with links to detailed command descriptions. ### What is it A command line tool to work with your MEGA account and files. The intent is to offer all the MEGA account functionality via command line. You can run it in [interactive](#interactive) mode where it processes all commands directly, or you can run its [scriptable](#scriptable) commands from your favourite Linux or Mac shell such as bash, or you can even run its commands in a Windows command prompt. And of course you can write scripts using those scriptable commands. diff --git a/build/SynologyNAS/toolkit/source/MEGAcmd/INFO.sh b/build/SynologyNAS/toolkit/source/MEGAcmd/INFO.sh index 39c496d6..b8defacf 100755 --- a/build/SynologyNAS/toolkit/source/MEGAcmd/INFO.sh +++ b/build/SynologyNAS/toolkit/source/MEGAcmd/INFO.sh @@ -3,7 +3,7 @@ source /mega/pkgscripts/include/pkg_util.sh package="megacmdpkg" -version="2.1.0-0001" +version="2.1.1-0001" displayname="MEGAcmd" maintainer="Mega NZ" arch="$PLATFORM" diff --git a/build/megacmd/debian.changelog b/build/megacmd/debian.changelog index c21d47da..b295eca9 100644 --- a/build/megacmd/debian.changelog +++ b/build/megacmd/debian.changelog @@ -1,14 +1,14 @@ -megacmd (2.1.0) stable; urgency=low +megacmd (2.1.1) stable; urgency=low * FUSE (beta): Added fuse commands on Linux to allow your MEGA folders to be directly mounted to your local drive - * Delayed sync uploads: Introduced a mechanism to delay very frequent sync uploads, and the sync-config command + * Delayed sync uploads: Introduced a mechanism to delay to frequently changed sync uploads, and the sync-config command * Logging: Messages are now printed in standard error, the rotating logger is now configurable and more verbose by default, passwords are now redacted from the logs, and other fixes and refinements * Fixed a crash when auto-completing a local folder that doesn't exist * Fixed the confirmcancel command incorrectly reporting failure on success + * Extended speedlimit command to allow increasing max connections * Other fixes and improvements to enhance reliability and performance - -- MEGA Team Wed, 19 Mar 2025 12:22:45 +0100 - + -- MEGA Team Wed, 02 Apr 2025 11:08:20 +0200 megacmd (2.0.0) stable; urgency=low diff --git a/build/megacmd/megacmd.changes b/build/megacmd/megacmd.changes index 7e61479e..3fd51a74 100644 --- a/build/megacmd/megacmd.changes +++ b/build/megacmd/megacmd.changes @@ -1,10 +1,11 @@ -Wed Mar 19 12:22:58 PM CET 2025 - linux@mega.co.nz -- Update to version 2.1.0: +Wed Apr 2 11:08:20 CEST 2025 - linux@mega.co.nz +- Update to version 2.1.1: * FUSE (beta): Added fuse commands on Linux to allow your MEGA folders to be directly mounted to your local drive - * Delayed sync uploads: Introduced a mechanism to delay very frequent sync uploads, and the sync-config command + * Delayed sync uploads: Introduced a mechanism to delay to frequently changed sync uploads, and the sync-config command * Logging: Messages are now printed in standard error, the rotating logger is now configurable and more verbose by default, passwords are now redacted from the logs, and other fixes and refinements * Fixed a crash when auto-completing a local folder that doesn't exist * Fixed the confirmcancel command incorrectly reporting failure on success + * Extended speedlimit command to allow increasing max connections * Other fixes and improvements to enhance reliability and performance ------------------------------------------------------------------- diff --git a/build/version b/build/version index 7ec1d6db..3e3c2f1e 100644 --- a/build/version +++ b/build/version @@ -1 +1 @@ -2.1.0 +2.1.1 diff --git a/src/megacmdversion.h.in b/src/megacmdversion.h.in index 29299709..897f04f7 100644 --- a/src/megacmdversion.h.in +++ b/src/megacmdversion.h.in @@ -26,10 +26,11 @@ namespace megacmd { const char * const megacmdchangelog = "FUSE (beta): Added fuse commands on Linux to allow your MEGA folders to be directly mounted to your local drive""\n" - "Delayed sync uploads: Introduced a mechanism to delay very frequent sync uploads, and the sync-config command""\n" + "Delayed sync uploads: Introduced a mechanism to delay to frequently changed sync uploads, and the sync-config command""\n" "Logging: Messages are now printed in standard error, the rotating logger is now configurable and more verbose by default, passwords are now redacted from the logs, and other fixes and refinements""\n" "Fixed a crash when auto-completing a local folder that doesn't exist""\n" "Fixed the confirmcancel command incorrectly reporting failure on success""\n" + "Extended speedlimit command to allow increasing max connections""\n" "Other fixes and improvements to enhance reliability and performance" ; }//end namespace