Skip to content

Commit

Permalink
Version 2.6.0, clarify room name reqs, soften some warning language
Browse files Browse the repository at this point in the history
  • Loading branch information
ayyghost committed Nov 18, 2024
1 parent 90600c1 commit de31ba2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions js/cryptodog.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ GLOBAL VARIABLES
-------------------
*/

Cryptodog.version = '2.5.9'
Cryptodog.version = '2.6.0'

Cryptodog.me = {
newMessages: 0,
Expand Down Expand Up @@ -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.<br><br>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.<br><br>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")');
Expand Down
2 changes: 1 addition & 1 deletion lang/en-us.json
Original file line number Diff line number Diff line change
Expand Up @@ -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:<ul><li>Install the <a href=\"https://chrome.google.com/webstore/detail/cryptodog/blnkmmamdbladdaaddkjbecbphngeiec\">Chrome extension</a> to ensure you always have the official, most up-to-date version.</li><li>Choose a room name that's hard to guess, and only share it with trusted people. Try clicking the dice icon to generate a random room name.</li><li>Nicknames are currently <b>not encrypted end-to-end</b>. For now, please don't use your real name or anything that personally identifies you.</li></ul>",
"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:<ul><li>Install the <a href=\"https://chrome.google.com/webstore/detail/cryptodog/blnkmmamdbladdaaddkjbecbphngeiec\">Chrome extension</a> to ensure you always have the official, most up-to-date version.</li><li>Choose a room name that's hard to guess, and only share it with trusted people. Try clicking the dice icon to generate a random room name.</li><li>Nicknames are currently <b>not encrypted end-to-end</b>. For now, please don't use your full name or anything that personally identifies you.</li></ul>",
"blog": "Blog",
"customServer": "Custom server",
"reset": "Reset",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit de31ba2

Please sign in to comment.