Skip to content

Commit

Permalink
Merge pull request #20 from Lenni009/dev
Browse files Browse the repository at this point in the history
change album names
  • Loading branch information
Lenni009 committed Oct 3, 2023
2 parents 9b5c7e2 + 2be6881 commit 6ec940a
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Eisvana-Catalogue-Entry
Simple interface for submitting catalogue entries to the Eisvana Wiki Scholars
# Eisvana-Album-Entry
Simple interface for submitting album entries to the Eisvana Wiki Scholars
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="module" src="/src/main.ts"></script>
<title>Eisvana Catalogue Entry</title>
<title>Eisvana Album Entry</title>
</head>

<body>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "eisvana-catalogue-entry",
"name": "eisvana-album-entry",
"version": "0.0.0",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ router.afterEach((to) => {
<template>
<header>
<NavBar />
<h1 class="title">Eisvana Catalogue Entry</h1>
<h1 class="title">Eisvana Album Entry</h1>
</header>

<main>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ConfirmDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ defineExpose({
class="close"
></button>
</form>
Confirm Catalogue Entry Submission?
Confirm Album Entry Submission?
</header>
<form
method="dialog"
Expand Down
8 changes: 4 additions & 4 deletions src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const router = createRouter({
component: () => import('../pages/Starship.vue'),
meta: {
requiredFields: ['economy', 'coordinates', 'tier', 'locationName', 'shipType'],
catalogueUrl: 'https://nomanssky.fandom.com/wiki/Eisvana_Starship_Catalogues',
catalogueUrl: 'https://nomanssky.fandom.com/wiki/Eisvana_Starship_Album',
},
},
],
Expand All @@ -42,7 +42,7 @@ const router = createRouter({
component: () => import('../pages/Freighter.vue'),
meta: {
requiredFields: ['economy', 'systemFaction'],
catalogueUrl: 'https://nomanssky.fandom.com/wiki/Eisvana_Freighter_Catalogue',
catalogueUrl: 'https://nomanssky.fandom.com/wiki/Eisvana_Freighter_Albums',
},
},
],
Expand All @@ -57,7 +57,7 @@ const router = createRouter({
component: () => import('../pages/Frigate.vue'),
meta: {
requiredFields: ['tier'],
catalogueUrl: 'https://nomanssky.fandom.com/wiki/Eisvana_Organic_Frigate_Catalogue',
catalogueUrl: 'https://nomanssky.fandom.com/wiki/Eisvana_Organic_Frigate_Album',
},
},
],
Expand All @@ -82,7 +82,7 @@ const router = createRouter({
'subtype',
'mtType',
],
catalogueUrl: 'https://nomanssky.fandom.com/wiki/Eisvana_Multi-Tool_Catalogues',
catalogueUrl: 'https://nomanssky.fandom.com/wiki/Eisvana_Multi-Tool_Albums',
},
},
],
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import vue from '@vitejs/plugin-vue'

// https://vitejs.dev/config/
export default defineConfig({
base: '/Eisvana-Catalogue-Entry/',
base: '/Eisvana-Album-Entry/',
plugins: [
vue(),
],
Expand Down

0 comments on commit 6ec940a

Please sign in to comment.