Skip to content

Commit 20e8b39

Browse files
committed
updated to use page titles
1 parent 5387558 commit 20e8b39

11 files changed

+45
-4
lines changed

package-lock.json

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pages/game/[id]/archives.vue

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<template>
2+
<Title>{{ game.props?.name }} Archives</Title>
23
<PanelFrame :title="`${game.props?.name} Archives`">
34
<template #left>
45
<PanelNav :links="links" :buttons="buttons" />

pages/game/[id]/collaborators.vue

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<template>
2+
<Title>{{ game.props?.name }} Collaborators</Title>
23
<PanelFrame :title="`${game.props?.name} Collaborators`">
34
<template #left>
45
<PanelNav :links="links" :buttons="buttons" />

pages/game/[id]/datasets/[dsid].vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
2+
<Title>{{ dataset.props?.name }} Dataset Editor</Title>
33
<Button @click="navigateTo(`/game/${game.props?.id}/datasets`)" severity="secondary" title="Back" alt="Back to Game" class="p-button-sm p-1 mr-2"><Icon name="dashicons:exit" class="mr-1"/>Back to Game</Button>
44

55
<AddRowsCols :dataset="dataset" :rows="rows" />

pages/game/[id]/datasets/index.vue

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<template>
2+
<Title>{{ game.props?.name }} Datasets</Title>
23
<PanelFrame :title="`${game.props?.name} Datasets`">
34
<template #left>
45
<PanelNav :links="links" :buttons="buttons" />

pages/game/[id]/designs.vue

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<template>
2+
<Title>{{ game.props?.name }} Designs</Title>
23
<PanelFrame :title="`${game.props?.name} Designs`">
34
<template #left>
45
<PanelNav :links="links" :buttons="buttons" />

pages/game/[id]/exports.vue

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<template>
2+
<Title>{{ game.props?.name }} Exports</Title>
23
<PanelFrame :title="`${game.props?.name} Exports`">
34
<template #left>
45
<PanelNav :links="links" :buttons="buttons" />

pages/game/[id]/fontpalette.vue

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<template>
2+
<Title>{{ game.props?.name }} Font Palette</Title>
23
<PanelFrame :title="`${game.props?.name} Font Palette`">
34
<template #left>
45
<PanelNav :links="links" :buttons="buttons" />

pages/game/[id]/index.vue

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<template>
2+
<Title>{{ game.props?.name }} Settings</Title>
23
<PanelFrame :title="`${game.props?.name} Settings`">
34
<template #left>
45
<PanelNav :links="links" :buttons="buttons" />

pages/game/index.vue

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<template>
2+
<Title>Games</Title>
23
<PanelFrame title="Games">
34
<template #content>
45
<PanelZone title="Existing Games">

ving.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"site": {
33
"email": "[email protected]",
4-
"name": "ving",
4+
"name": "Component.Studio 3",
55
"logoUrl": "/ving.svg",
66
"streetAddress": [
7-
"123 Main Street",
8-
"Madison, WI 53701",
7+
"The Game Crafter, LLC",
8+
"1360 Regent St #146",
9+
"Madison, WI 53715",
910
"USA"
1011
]
1112
},

0 commit comments

Comments
 (0)