diff --git a/js/cryptodog.js b/js/cryptodog.js index a55d61b..477bd11 100644 --- a/js/cryptodog.js +++ b/js/cryptodog.js @@ -6,7 +6,7 @@ GLOBAL VARIABLES ------------------- */ -Cryptodog.version = '2.5.9' +Cryptodog.version = '2.6.0' Cryptodog.me = { newMessages: 0, @@ -1301,7 +1301,7 @@ $('#conversationName').keyup(function (e) { strength.css('background-image', 'url("img/icons/warning.svg")'); // slightly different alignment for the warning symbol strength.css('background-position', 'center bottom 4.25px'); - strength.attr('data-utip', 'This room name is easy for an attacker to guess. Consider choosing something more complex.

A future update will enforce stronger, password-like room names.'); + strength.attr('data-utip', 'This room name is easy for an attacker to guess. Consider choosing something more complex.

A future update will require you to use a stronger, password-like room name.'); } else { strength.css('background-color', 'green'); strength.css('background-image', 'url("img/icons/checkmark.svg")'); diff --git a/lang/en-us.json b/lang/en-us.json index 8dec060..f5c0db7 100644 --- a/lang/en-us.json +++ b/lang/en-us.json @@ -3,7 +3,7 @@ "fonts": "\"Helvetica Neue\", Helvetica, Arial, Verdana", "loginWindow": { "introHeader": "Welcome to Cryptodog", - "introParagraph": "Cryptodog is experimental software that may have vulnerabilities. Please don't rely on it to protect your messages. Here are some tips on using it as safely as possible:", + "introParagraph": "Cryptodog is experimental software that may have vulnerabilities. Don't use Cryptodog if you have a critical need for secure messaging. If you decide to use it, please follow these safety recommendations:", "blog": "Blog", "customServer": "Custom server", "reset": "Reset", diff --git a/manifest.json b/manifest.json index e9e47d7..ea2a0df 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "Cryptodog", "description": "Private conversations made easy", - "version": "2.5.9", + "version": "2.6.0", "manifest_version": 3, "background": { "service_worker": "background/background.js",