From c7fc68236ac25d7d9c7a5f0a1626422b9f79dfe1 Mon Sep 17 00:00:00 2001 From: Pysis Date: Wed, 8 Mar 2023 23:33:11 -0500 Subject: [PATCH] Adding specific license At least to the files that I created. --- LICENSE-MIT | 21 ++++++++++ dev/assets/tiles/generateAllMapTiles.fish | 4 ++ dev/assets/tiles/generateAllMapTilesAuto.fish | 4 ++ dev/assets/tiles/generateDebugTiles.fish | 22 ++--------- dev/assets/tiles/generateMapTiles.fish | 4 ++ .../tiles/switch/common/1_decompress.fish | 6 ++- .../tiles/switch/common/2_extractNCAs.fish | 4 ++ .../switch/common/3_extractRomFSContents.fish | 4 ++ .../switch/games/botw/assembleTiles.fish | 4 ++ .../switch/games/lafs/assembleDgnTiles.fish | 4 ++ .../games/lafs/assembleOverworldTiles.fish | 4 ++ dev/assets/tiles/tileZoomPathConversion.fish | 4 ++ dev/db/createSampleDatabaseExport.sh | 18 +++++---- dev/db/generateRandomCharacters.sh | 4 ++ dev/db/resetPassword.sh | 4 ++ dev/db/resetUsersChangelogSeenPresence.sh | 4 ++ dev/db/test/createVersionTestUsers.sh | 4 ++ dev/db/test/verifySeenVersionTestUsers.sh | 4 ++ .../common/filenameRemoveExtension.fish | 4 ++ lib/VersionMigrator.rb | 4 ++ lib/zmailer.php | 3 ++ scripts/controls/InfoBox.js | 4 ++ scripts/controls/ZLayers.Bottom.js | 18 +++++---- scripts/controls/ZMobileHeaderBar.js | 4 ++ scripts/controls/infoBox/Location.js | 4 ++ scripts/controls/infoBox/Mouse.js | 6 ++- scripts/controls/infoBox/location/Bounds.js | 4 ++ scripts/controls/infoBox/location/Center.js | 4 ++ scripts/controls/infoBox/mouse/ClickHist.js | 38 ++++++++++--------- scripts/controls/infoBox/mouse/Move.js | 4 ++ scripts/handlers/ChangelogHandler.js | 12 ++++-- scripts/handlers/SearchMarkerHandler.js | 4 ++ scripts/services/SearcherFuse.js | 4 ++ scripts/util/ZConfig.js | 4 ++ scripts/util/debug.js | 4 ++ scripts/util/debug.lib.js | 4 ++ scripts/util/debug.zmap.lib.js | 4 ++ scripts/util/general.js | 4 ++ scripts/util/zlogger.js | 4 ++ scripts/widgets/AccountButton.js | 4 ++ scripts/widgets/CategoryButton.js | 10 +++-- scripts/widgets/CategoryButtonCompleted.js | 4 ++ .../widgets/CategoryButtonCompletedBlock.js | 4 ++ scripts/widgets/CategoryButtonGame.js | 4 ++ scripts/widgets/CategoryButtonMap.js | 8 +++- scripts/widgets/CategoryIcon.js | 4 ++ scripts/widgets/CategoryIconCompleted.js | 4 ++ scripts/widgets/CategoryMenu.js | 4 ++ scripts/widgets/CategoryParentButton.js | 4 ++ scripts/widgets/CopyLink.js | 4 ++ scripts/widgets/GameButton.js | 5 ++- scripts/widgets/GameMenu.js | 4 ++ scripts/widgets/HeaderBar.js | 4 ++ scripts/widgets/Link.js | 6 ++- scripts/widgets/Logo.js | 4 ++ scripts/widgets/MapButton.js | 6 ++- scripts/widgets/MapsMenu.js | 6 ++- scripts/widgets/MarkerListEntry.js | 4 ++ scripts/widgets/MarkerListView.js | 4 ++ scripts/widgets/MarkerSearchField.js | 4 ++ scripts/widgets/ProgressBar.js | 4 ++ scripts/widgets/SearchArea.js | 4 ++ scripts/widgets/SearchMarkerListEntry.js | 4 ++ scripts/widgets/SearchMarkerListView.js | 4 ++ 64 files changed, 316 insertions(+), 65 deletions(-) create mode 100644 LICENSE-MIT diff --git a/LICENSE-MIT b/LICENSE-MIT new file mode 100644 index 000000000..8aa26455d --- /dev/null +++ b/LICENSE-MIT @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [year] [fullname] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/dev/assets/tiles/generateAllMapTiles.fish b/dev/assets/tiles/generateAllMapTiles.fish index 8d97afffe..f9e63943d 100644 --- a/dev/assets/tiles/generateAllMapTiles.fish +++ b/dev/assets/tiles/generateAllMapTiles.fish @@ -1,5 +1,9 @@ #!/usr/bin/env fish +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + set SDIR "$PWD/"(dirname (status filename)); pushd "$SDIR/../../../tiles"; diff --git a/dev/assets/tiles/generateAllMapTilesAuto.fish b/dev/assets/tiles/generateAllMapTilesAuto.fish index ff6699357..fb96164a1 100644 --- a/dev/assets/tiles/generateAllMapTilesAuto.fish +++ b/dev/assets/tiles/generateAllMapTilesAuto.fish @@ -1,5 +1,9 @@ #!/usr/bin/env fish +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + echo "Not updated or able to be generalized properly; exiting..."; exit; diff --git a/dev/assets/tiles/generateDebugTiles.fish b/dev/assets/tiles/generateDebugTiles.fish index 62c791b22..e2d430722 100644 --- a/dev/assets/tiles/generateDebugTiles.fish +++ b/dev/assets/tiles/generateDebugTiles.fish @@ -1,24 +1,8 @@ #!/usr/bin/env fish -## Info - -# Author: Pysis - -# Dependencies: -# - fish shell -# - Basic shell utilities: -# - variables -# - subshell -# - test -# - eval -# - seq -# - set -# - printf -# - pushd -# - popd -# - exit -# - break -# - ImageMagick (convert, identify) +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ set SDIR "$PWD/"(dirname (status filename)); diff --git a/dev/assets/tiles/generateMapTiles.fish b/dev/assets/tiles/generateMapTiles.fish index 0e86af150..87df48e0e 100644 --- a/dev/assets/tiles/generateMapTiles.fish +++ b/dev/assets/tiles/generateMapTiles.fish @@ -1,5 +1,9 @@ #!/usr/bin/env fish +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + # Dependencies: magick/ImageMagick, bc, ... ## General Function Library diff --git a/dev/assets/tiles/switch/common/1_decompress.fish b/dev/assets/tiles/switch/common/1_decompress.fish index 4a89dc33c..b8412e0db 100644 --- a/dev/assets/tiles/switch/common/1_decompress.fish +++ b/dev/assets/tiles/switch/common/1_decompress.fish @@ -1,3 +1,7 @@ #!/usr/bin/env fish -nsz -D ("$argv[1]" | tr -d '\r'); \ No newline at end of file +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + +nsz -D ("$argv[1]" | tr -d '\r'); diff --git a/dev/assets/tiles/switch/common/2_extractNCAs.fish b/dev/assets/tiles/switch/common/2_extractNCAs.fish index 7f30cccaa..c7eaac017 100644 --- a/dev/assets/tiles/switch/common/2_extractNCAs.fish +++ b/dev/assets/tiles/switch/common/2_extractNCAs.fish @@ -1,4 +1,8 @@ #!/usr/bin/env fish +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + # nspx -x -o (echo "$argv[1]" | sed -r 's|\.[^.]+$||') -f "$argv[1]"; hactool pfs i think diff --git a/dev/assets/tiles/switch/common/3_extractRomFSContents.fish b/dev/assets/tiles/switch/common/3_extractRomFSContents.fish index 0bbc4dc78..ac77c4675 100644 --- a/dev/assets/tiles/switch/common/3_extractRomFSContents.fish +++ b/dev/assets/tiles/switch/common/3_extractRomFSContents.fish @@ -1,5 +1,9 @@ #!/usr/bin/env fish +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + set SDIR "$PWD/"(dirname (status filename)); source "$SDIR/../../../../scripts/common/filenameRemoveExtension.fish"; diff --git a/dev/assets/tiles/switch/games/botw/assembleTiles.fish b/dev/assets/tiles/switch/games/botw/assembleTiles.fish index f16bcd9f6..4cc83f26e 100644 --- a/dev/assets/tiles/switch/games/botw/assembleTiles.fish +++ b/dev/assets/tiles/switch/games/botw/assembleTiles.fish @@ -1,5 +1,9 @@ #!/usr/bin/env fish +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + ## Info # MapTex# - resolution levels (4) diff --git a/dev/assets/tiles/switch/games/lafs/assembleDgnTiles.fish b/dev/assets/tiles/switch/games/lafs/assembleDgnTiles.fish index 0cad8501d..ef76d0659 100644 --- a/dev/assets/tiles/switch/games/lafs/assembleDgnTiles.fish +++ b/dev/assets/tiles/switch/games/lafs/assembleDgnTiles.fish @@ -1,5 +1,9 @@ #!/usr/bin/env fish +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + ## Info # ABCDEFGH - horizontal index (8) diff --git a/dev/assets/tiles/switch/games/lafs/assembleOverworldTiles.fish b/dev/assets/tiles/switch/games/lafs/assembleOverworldTiles.fish index 77dbd4a34..840918b32 100644 --- a/dev/assets/tiles/switch/games/lafs/assembleOverworldTiles.fish +++ b/dev/assets/tiles/switch/games/lafs/assembleOverworldTiles.fish @@ -1,5 +1,9 @@ #!/usr/bin/env fish +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + ## Info # ABCDEFGH - horizontal index (8) diff --git a/dev/assets/tiles/tileZoomPathConversion.fish b/dev/assets/tiles/tileZoomPathConversion.fish index 1015faef9..b0ae5a826 100644 --- a/dev/assets/tiles/tileZoomPathConversion.fish +++ b/dev/assets/tiles/tileZoomPathConversion.fish @@ -1,5 +1,9 @@ #!/usr/bin/env fish +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + set SDIR "$PWD/"(dirname (status filename)); test -z "$tilesDir"; and set tilesDir "$argv[1]"; diff --git a/dev/db/createSampleDatabaseExport.sh b/dev/db/createSampleDatabaseExport.sh index 526381b8a..727e1f60f 100644 --- a/dev/db/createSampleDatabaseExport.sh +++ b/dev/db/createSampleDatabaseExport.sh @@ -1,5 +1,9 @@ #!/usr/bin/env bash +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + # Users the `mysqldump` command with provided SQL statements and shell commands # to create a customized backup and sample database data file to use to operate # the project. @@ -101,7 +105,7 @@ [[ -z "$FAIL_FAST" ]] && FAIL_FAST="true"; [[ -z "$CLEAN_ON_FAILURE" ]] && CLEAN_ON_FAILURE="true"; [[ -z "$CONVERGE_SQL" ]] && CONVERGE_SQL="false"; - + [[ -z "$DB_NAME" ]] && DB_NAME="zeldamaps"; # Loops as requirement. @@ -119,7 +123,7 @@ # else #MYSQL_PASS="$(echo "$MYSQL_PASS" | sed -e 's|)|\\\)|g' -e 's|\x27|\\\\x27|g')"; fi - + [[ -z "$MYSQL_OTHER_CONNECTION_OPTIONS" ]] && MYSQL_OTHER_CONNECTION_OPTIONS=""; [[ -z "$MYSQL_CONNECTION_STRING" ]] && MYSQL_CONNECTION_STRING="$MYSQL_OTHER_CONNECTION_OPTIONS -u'$MYSQL_USER' -p'$MYSQL_PASS'"; } @@ -160,7 +164,7 @@ generatedDevUserDataFilePath="$SAMPLES_DIR/06-devUserData.sql"; allIntermediateFilePaths="'$keepAIFilePath' '$toRemoveAIFilePath' '$aiRemovedFilePath' '$dataFilePath' '$sanitizedPartialUserDataFilePath' '$generatedDevUserDataFilePath'"; - + [[ "$CONVERGE_SQL" == "true" ]] && convergeSuffix="-converged"; # Resultant, generated file to keep at the end of the process. @@ -239,20 +243,20 @@ "Combining intermediate SQL files into a single convenient script for later import and version control." \ "cat '$keepAIFilePath' '$aiRemovedFilePath' '$dataFilePath' '$generatedDevUserDataFilePath' > '$completeFilePath'" \ ; # "cat '$keepAIFilePath' '$aiRemovedFilePath' '$dataFilePath' > '$completeFilePath'" \ - + issueStep \ "Converting result to Unix-style LF-only line endings." \ "dos2unix '$completeFilePath'" \ ; - + clean; - + if [[ "$CONVERGE_SQL" == "true" ]]; then issueStep \ "Converging database SQL formats by eliminating less important details." \ "sed -r -f '$convergeSedFilePath' '$completeFilePath' > '$completeConvergedFilePath'" \ ; - + echo; echo "Important Note: The 'CONVERGE_SQL' option is enabled. Do NOT store these exported SQL files permanently in source control OR import them into any database. They are for comparing important differences more easily and quickly by removing any less important differences that may be defaults or other details. The data differences are ONLY to be manually and carefully reviewed and ported through migrations using the more exact, unique, and explicit details to converge the databases more properly."; fi diff --git a/dev/db/generateRandomCharacters.sh b/dev/db/generateRandomCharacters.sh index cb638f190..d69f671d2 100644 --- a/dev/db/generateRandomCharacters.sh +++ b/dev/db/generateRandomCharacters.sh @@ -1,5 +1,9 @@ #!/usr/bin/env bash +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + numChars="${1-32}"; # printf '\x'"$(printf '%x' "$(echo "($(printf '%d' '0x'"$(echo -n '!' | xxd -p)") % 95) + 32" | bc)")"; diff --git a/dev/db/resetPassword.sh b/dev/db/resetPassword.sh index 41affbc67..9c41aff81 100755 --- a/dev/db/resetPassword.sh +++ b/dev/db/resetPassword.sh @@ -1,5 +1,9 @@ #!/usr/bin/env bash +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + SDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"; # Currently this script may require interaction for the MySQL user account. diff --git a/dev/db/resetUsersChangelogSeenPresence.sh b/dev/db/resetUsersChangelogSeenPresence.sh index 0dbef1956..6b55c58b5 100755 --- a/dev/db/resetUsersChangelogSeenPresence.sh +++ b/dev/db/resetUsersChangelogSeenPresence.sh @@ -1,5 +1,9 @@ #!/usr/bin/env bash +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + SDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"; # Currently this script may require interaction for the MySQL user account. diff --git a/dev/db/test/createVersionTestUsers.sh b/dev/db/test/createVersionTestUsers.sh index 3bab1b689..81cbb258b 100755 --- a/dev/db/test/createVersionTestUsers.sh +++ b/dev/db/test/createVersionTestUsers.sh @@ -1,5 +1,9 @@ #!/usr/bin/env bash +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + SDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"; testUserSQLTemplateHeader='INSERT INTO diff --git a/dev/db/test/verifySeenVersionTestUsers.sh b/dev/db/test/verifySeenVersionTestUsers.sh index a59c83cf8..3248f1ff0 100755 --- a/dev/db/test/verifySeenVersionTestUsers.sh +++ b/dev/db/test/verifySeenVersionTestUsers.sh @@ -1,5 +1,9 @@ #!/usr/bin/env bash +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + [[ -z "$DB_NAME" ]] && DB_NAME="zeldamaps"; [[ -z "$MYSQL_OTHER_CONNECTION_OPTIONS" ]] && MYSQL_OTHER_CONNECTION_OPTIONS=""; [[ -z "$MYSQL_CONNECTION_STRING" ]] && MYSQL_CONNECTION_STRING="$MYSQL_OTHER_CONNECTION_OPTIONS -u'$MYSQL_USER' -p'$MYSQL_PASS'"; diff --git a/dev/scripts/common/filenameRemoveExtension.fish b/dev/scripts/common/filenameRemoveExtension.fish index 2d9257bbe..84b94d593 100644 --- a/dev/scripts/common/filenameRemoveExtension.fish +++ b/dev/scripts/common/filenameRemoveExtension.fish @@ -1,5 +1,9 @@ #!/usr/bin/env fish +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + function filenameRemoveExtension --argument-names filePath if test -z "$filePath" echo 'Error: File Path not provided; exiting...' 1>&2; diff --git a/lib/VersionMigrator.rb b/lib/VersionMigrator.rb index d95439eab..71fad26ec 100644 --- a/lib/VersionMigrator.rb +++ b/lib/VersionMigrator.rb @@ -1,3 +1,7 @@ +# MIT Licensed +# Copyright (c) 2023 Pysis(868) +# https://choosealicense.com/licenses/mit/ + # Usage: # # In a migration file: diff --git a/lib/zmailer.php b/lib/zmailer.php index e4e0f3f12..98b708b53 100644 --- a/lib/zmailer.php +++ b/lib/zmailer.php @@ -1,4 +1,7 @@ 5) { this.hist.shift(); @@ -71,25 +75,25 @@ L.Control.InfoBox.Mouse.ClickHist = L.Control.InfoBox.Mouse.extend({ //var mouse = this._map.getMouse(); if (this.hist[0]) { this.rows.row1ValueCell.text(this.hist[0].lat + " / " + this.hist[0].lng); - this.pos.row1ValueCell.text(this.hist[0].id); - } - if (this.hist[1]) { + this.pos.row1ValueCell.text(this.hist[0].id); + } + if (this.hist[1]) { this.rows.row2ValueCell.text(this.hist[1].lat + " / " + this.hist[1].lng); - this.pos.row2ValueCell.text(this.hist[1].id); - } - if (this.hist[2]) { + this.pos.row2ValueCell.text(this.hist[1].id); + } + if (this.hist[2]) { this.rows.row3ValueCell.text(this.hist[2].lat + " / " + this.hist[2].lng); - this.pos.row3ValueCell.text(this.hist[2].id); - } - if (this.hist[3]) { - this.pos.row4ValueCell.text(this.hist[3].id); + this.pos.row3ValueCell.text(this.hist[2].id); + } + if (this.hist[3]) { + this.pos.row4ValueCell.text(this.hist[3].id); this.rows.row4ValueCell.text(this.hist[3].lat + " / " + this.hist[3].lng); - } - if (this.hist[4]) { - this.pos.row5ValueCell.text(this.hist[4].id); + } + if (this.hist[4]) { + this.pos.row5ValueCell.text(this.hist[4].id); this.rows.row5ValueCell.text(this.hist[4].lat + " / " + this.hist[4].lng); } - + //this.rows.row2ValueCell.text(this.hist[1]); } //var bounds = this._map.getClickHist(); @@ -108,7 +112,7 @@ L.Control.InfoBox.Mouse.ClickHist = L.Control.InfoBox.Mouse.extend({ text += this.hist[i].id + "," + this.hist[i].lat + "," + this.hist[i].lng + "|"; } return text; - + /*var bounds = this._map.getClickHist(); var coordsString = "" + bounds.getSouth().toFixed(this.options.precision) + "," + diff --git a/scripts/controls/infoBox/mouse/Move.js b/scripts/controls/infoBox/mouse/Move.js index 68ba7ae30..732e08643 100644 --- a/scripts/controls/infoBox/mouse/Move.js +++ b/scripts/controls/infoBox/mouse/Move.js @@ -1,3 +1,7 @@ +// MIT Licensed +// Copyright (c) 2023 Pysis(868) +// https://choosealicense.com/licenses/mit/ + // Mouse // - opts: [Object] // - precision: [Number] diff --git a/scripts/handlers/ChangelogHandler.js b/scripts/handlers/ChangelogHandler.js index d4569fa8f..3154195ea 100644 --- a/scripts/handlers/ChangelogHandler.js +++ b/scripts/handlers/ChangelogHandler.js @@ -1,3 +1,7 @@ +// MIT Licensed +// Copyright (c) 2023 Pysis(868) +// https://choosealicense.com/licenses/mit/ + // ChangelogHandler - Connects the various related widgets to perform search actions, cohesively-containing logic, and provides configuration. // - opts: [Object] Typical options object. // - user: [Object] - User data to use for version checking. @@ -24,7 +28,7 @@ ChangelogHandler.prototype._fetchChangelogEntries = function(opts) { if (opts.user.seen_version < opts.version) { this._fetchChangelogEntriesByUser(opts.user); } - } else if (opts.seenChangelogVersion && opts.seenChangelogVersion < opts.version) { + } else if (opts.seenChangelogVersion && opts.seenChangelogVersion < opts.version) { this._fetchChangelogEntriesByCookie(opts.seenChangelogVersion, opts.version); } else { setCookie(seenChangelogVersionCookieName, opts.version); @@ -64,7 +68,7 @@ ChangelogHandler.prototype._groupChangelogEntriesByVersion = function(entries) { ChangelogHandler.prototype._notifyChangelogVersionUpdate = function(version, versionEntry, user) { toastr.remove(); - + if (user != undefined) { $.ajax({ type: "POST", @@ -72,7 +76,7 @@ ChangelogHandler.prototype._notifyChangelogVersionUpdate = function(version, ver data: {userId: user.id, version: version}, success: function(data) { if (data.success) { - + } else { toastr.error("Unable to update user version"); //alert(data.msg); @@ -80,7 +84,7 @@ ChangelogHandler.prototype._notifyChangelogVersionUpdate = function(version, ver } }) }; - + return zlogger.info( '