@glossarist/concept-browser 0.1.6 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.html CHANGED
@@ -7,7 +7,7 @@
7
7
  <link rel="preconnect" href="https://fonts.googleapis.com">
8
8
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9
9
  <link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display:ital@0;1&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
10
- <title>Glossarist — ISO Terminology Register Browser</title>
10
+ <title>Concept Browser</title>
11
11
  </head>
12
12
  <body>
13
13
  <div id="app"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glossarist/concept-browser",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Vue SPA for browsing Glossarist terminology datasets with cross-reference resolution, graph visualization, and multi-language support",
5
5
  "type": "module",
6
6
  "bin": {
package/src/App.vue CHANGED
@@ -23,6 +23,9 @@ function scrollToTop() {
23
23
 
24
24
  onMounted(async () => {
25
25
  const [, cfg] = await Promise.all([store.discoverDatasets(), loadConfig()]);
26
+ if (cfg?.title) {
27
+ document.title = cfg.title;
28
+ }
26
29
  const allPages = [...globalPages.value, ...datasetPages.value];
27
30
  if (allPages.length > 0) {
28
31
  for (const route of buildPageRoutes(allPages)) {