Better challenge link in emails, better text on 'social' button
authorBenjamin Auder <benjamin.auder@somewhere>
Wed, 19 Feb 2020 09:23:36 +0000 (10:23 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Wed, 19 Feb 2020 09:23:36 +0000 (10:23 +0100)
client/src/translations/en.js
client/src/translations/es.js
client/src/translations/fr.js
client/src/views/Hall.vue
server/routes/challenges.js

index 4e69ddc..94be8f8 100644 (file)
@@ -97,7 +97,6 @@ export const translations = {
   Settings: "Settings",
   "Show possible moves?": "Show possible moves?",
   "Show solution": "Show solution",
-  Social: "Social",
   Solution: "Solution",
   "Stop game": "Stop game",
   Subject: "Subject",
index 828f42a..56c6733 100644 (file)
@@ -98,7 +98,6 @@ export const translations = {
   Settings: "Configuraciones",
   "Show possible moves?": "¿Mostrar posibles movimientos?",
   "Show solution": "Mostrar la solución",
-  Social: "Social",
   Solution: "Solución",
   "Stop game": "Terminar la partida",
   Subject: "Asunto",
index b67e7f7..3e9aa6a 100644 (file)
@@ -101,7 +101,6 @@ export const translations = {
   Settings: "Réglages",
   "Show possible moves?": "Montrer les coups possibles ?",
   "Show solution": "Montrer la solution",
-  Social: "Social",
   Solution: "Solution",
   "Stop game": "Arrêter la partie",
   Subject: "Sujet",
index 2236ce3..68d3b48 100644 (file)
@@ -83,7 +83,7 @@ main
     .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
       .button-group
         button#peopleBtn(onClick="window.doClick('modalPeople')")
-          | {{ st.tr["Social"] }}
+          | {{ st.tr["Who's there?"] }}
         button(onClick="window.doClick('modalNewgame')")
           | {{ st.tr["New game"] }}
   .row
@@ -275,8 +275,11 @@ export default {
         this.newchallenge.cadence = b.innerHTML;
       });
     });
-    const showCtype = localStorage.getItem("type-challenges") || "live";
-    const showGtype = localStorage.getItem("type-games") || "live";
+    const dispCorr = this.$route.query["disp"];
+    const showCtype =
+      dispCorr || localStorage.getItem("type-challenges") || "live";
+    const showGtype =
+      dispCorr || localStorage.getItem("type-games") || "live";
     this.setDisplay("c", showCtype);
     this.setDisplay("g", showGtype);
   },
index 9ba5c53..5d0068d 100644 (file)
@@ -39,7 +39,9 @@ router.post("/challenges", access.logged, access.ajax, (req,res) => {
       challenge.to = user.id; //ready now to insert challenge
       insertChallenge();
       if (user.notify)
-        UserModel.notify(user, "New challenge: " + params.siteURL + "/");
+        UserModel.notify(
+          user,
+          "New challenge: " + params.siteURL + "/#/?disp=corr");
     });
   }
   else