Voeg thematische kleurplaten en creatieve niveaus toe (v0.4.65-beta) #3

Open
bes-r wants to merge 207 commits from bes-r/kleurplaten-v0-4-65 into main AGit
3 changed files with 5 additions and 4 deletions
Showing only changes of commit be89a7b498 - Show all commits

View file

@ -1 +1 @@
0.3.11-beta 0.3.12-beta

View file

@ -79,10 +79,11 @@ try{
applyI18n(); applyI18n();
updateEmptyHint(); updateEmptyHint();
/* sessie herstellen: geldig servertoken? dan opnieuw inloggen zonder wachtwoord */ /* sessie herstellen: de HttpOnly session-cookie (niet leesbaar door JS, dus
geen client-side token-check meer mogelijk of nodig) gaat vanzelf mee met
dit verzoek - een geldige sessie levert de gebruiker op, anders 401 (gast) */
(async function(){ (async function(){
updateBoardsUI(); updateBoardsUI();
if(!TOKEN) return;
try{ try{
const me = await api("/auth/me"); const me = await api("/auth/me");
currentUser = me.user; currentUser = me.user;

View file

@ -2,7 +2,7 @@
"use strict"; "use strict";
/* version shown until /api/version resolves (or if the fetch fails, e.g. offline). /* version shown until /api/version resolves (or if the fetch fails, e.g. offline).
Kept in sync by hand with the VERSION file at the repo root on every release. */ Kept in sync by hand with the VERSION file at the repo root on every release. */
const VERSION = "0.3.11-beta"; const VERSION = "0.3.12-beta";
(function(){ (function(){
const tag = document.getElementById("verTag"); const tag = document.getElementById("verTag");
tag.textContent = "v"+VERSION; tag.textContent = "v"+VERSION;