From b7f627d896e9a9ca57fa3213bf1051cf0cd1e128 Mon Sep 17 00:00:00 2001 From: ansuz Date: Fri, 13 Aug 2021 15:53:42 +0530 Subject: [PATCH] update version string for 4.10.0 and commit some new 'npm run' commands while we're at it --- customize.dist/pages.js | 2 +- package-lock.json | 2 +- package.json | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/customize.dist/pages.js b/customize.dist/pages.js index 18d65c680..fa183f90c 100644 --- a/customize.dist/pages.js +++ b/customize.dist/pages.js @@ -105,7 +105,7 @@ define([ var imprintUrl = AppConfig.imprint && (typeof(AppConfig.imprint) === "boolean" ? '/imprint.html' : AppConfig.imprint); - Pages.versionString = "v4.9.0"; + Pages.versionString = "v4.10.0"; // used for the about menu diff --git a/package-lock.json b/package-lock.json index 42136e238..a3b92de86 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "cryptpad", - "version": "4.9.0", + "version": "4.10.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 68a315891..a844167f5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "cryptpad", "description": "realtime collaborative visual editor with zero knowlege server", - "version": "4.9.0", + "version": "4.10.0", "license": "AGPL-3.0+", "repository": { "type": "git", @@ -45,7 +45,8 @@ "lint:js": "jshint --config .jshintrc --exclude-path .jshintignore .", "lint:server": "jshint --config .jshintrc lib", "lint:less": "./node_modules/lesshint/bin/lesshint -c ./.lesshintrc ./customize.dist/src/less2/", - "lint:translations": "node ./scripts/unused-translations.js", + "lint:translations": "node ./scripts/lint-translations.js", + "unused-translations": "node ./scripts/unused-translations.js", "test": "node scripts/TestSelenium.js", "test-rpc": "cd scripts/tests && node test-rpc", "template": "cd customize.dist/src && for page in ../index.html ../privacy.html ../terms.html ../contact.html ../what-is-cryptpad.html ../features.html ../../www/login/index.html ../../www/register/index.html ../../www/user/index.html;do echo $page; cp template.html $page; done;",