Verbeter anatomie en plaatsing van avataraccessoires (v0.4.46-beta) #1

Open
bes-r wants to merge 192 commits from bes-r/avatar-realism into main AGit
3 changed files with 5 additions and 3 deletions
Showing only changes of commit 4356658c96 - Show all commits

View file

@ -1 +1 @@
0.3.78-beta 0.3.79-beta

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.78-beta"; const VERSION = "0.3.79-beta";
(function(){ (function(){
const tag = document.getElementById("verTag"); const tag = document.getElementById("verTag");
tag.textContent = "v"+VERSION; tag.textContent = "v"+VERSION;

View file

@ -426,5 +426,7 @@ test('topografie heeft een inhoudelijk brede naam en de beta-versie is gelijkget
assert.ok(core.includes('wg_topography:"Topography"')); assert.ok(core.includes('wg_topography:"Topography"'));
assert.doesNotMatch(core,/wg_topography:"(?:Topografie Nederland|Map of the Netherlands)"/); assert.doesNotMatch(core,/wg_topography:"(?:Topografie Nederland|Map of the Netherlands)"/);
assert.match(core,new RegExp(`const VERSION = "${version.trim().replaceAll('.','\\.')}"`)); assert.match(core,new RegExp(`const VERSION = "${version.trim().replaceAll('.','\\.')}"`));
assert.match(version,/^0\.3\.77-beta\s*$/); /* geen vast nummer pinnen (dat breekt bij elke bump): het beleid is dat de
dev-branch altijd een -beta-versie voert en core.js gelijkloopt (hierboven) */
assert.match(version,/^\d+\.\d+\.\d+-beta\s*$/);
}); });