Skip to content

Commit

Permalink
📝 (pages/games/*.vue): Move gallery picture paths from 'games/galler…
Browse files Browse the repository at this point in the history
…y' to 'gallery' for consistent file structure

✨ (package.json): Update version number to 2.0.0
  • Loading branch information
danieldanielecki committed Jul 25, 2024
1 parent a1d0cbd commit 869df54
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "doyban",
"version": "2.0.1",
"version": "2.0.2",
"private": true,
"scripts": {
"build": "nuxi build",
Expand Down
10 changes: 5 additions & 5 deletions pages/games/CashNinja.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import StoreUrls from '~/interfaces/StoreUrls'
const description: string =
'CashNinja is a free and fun game where you get get a lot of cash!'
const galleryPictures: GalleryPicture[] = [
{ id: 1, src: 'games/gallery/CashNinja/1.webp' },
{ id: 2, src: 'games/gallery/CashNinja/2.webp' },
{ id: 3, src: 'games/gallery/CashNinja/3.webp' },
{ id: 4, src: 'games/gallery/CashNinja/4.webp' },
{ id: 5, src: 'games/gallery/CashNinja/5.webp' },
{ id: 1, src: 'gallery/CashNinja/1.webp' },
{ id: 2, src: 'gallery/CashNinja/2.webp' },
{ id: 3, src: 'gallery/CashNinja/3.webp' },
{ id: 4, src: 'gallery/CashNinja/4.webp' },
{ id: 5, src: 'gallery/CashNinja/5.webp' },
]
const storeUrls: StoreUrls = {
appleAppStore: 'https://apps.apple.com/app/cashninja/id1450304980',
Expand Down
10 changes: 5 additions & 5 deletions pages/games/FlyingPlane.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import StoreUrls from '~/interfaces/StoreUrls'
const description: string =
'Never-ending mobile game that will keep you on the edge of your seat!'
const galleryPictures: GalleryPicture[] = [
{ id: 1, src: 'games/gallery/FlyingPlane/1.webp' },
{ id: 2, src: 'games/gallery/FlyingPlane/2.webp' },
{ id: 3, src: 'games/gallery/FlyingPlane/3.webp' },
{ id: 4, src: 'games/gallery/FlyingPlane/4.webp' },
{ id: 5, src: 'games/gallery/FlyingPlane/5.webp' },
{ id: 1, src: 'gallery/FlyingPlane/1.webp' },
{ id: 2, src: 'gallery/FlyingPlane/2.webp' },
{ id: 3, src: 'gallery/FlyingPlane/3.webp' },
{ id: 4, src: 'gallery/FlyingPlane/4.webp' },
{ id: 5, src: 'gallery/FlyingPlane/5.webp' },
]
const storeUrls: StoreUrls = {
appleAppStore: 'https://apps.apple.com/app/flyyingplane/id6470124867',
Expand Down
10 changes: 5 additions & 5 deletions pages/games/GalacticShooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import StoreUrls from '~/interfaces/StoreUrls'
const description: string =
'Action-packed shooter game set in the vast expanse of space.'
const galleryPictures: GalleryPicture[] = [
{ id: 1, src: 'games/gallery/GalacticShooter/1.webp' },
{ id: 2, src: 'games/gallery/GalacticShooter/2.webp' },
{ id: 3, src: 'games/gallery/GalacticShooter/3.webp' },
{ id: 4, src: 'games/gallery/GalacticShooter/4.webp' },
{ id: 5, src: 'games/gallery/GalacticShooter/5.webp' },
{ id: 1, src: 'gallery/GalacticShooter/1.webp' },
{ id: 2, src: 'gallery/GalacticShooter/2.webp' },
{ id: 3, src: 'gallery/GalacticShooter/3.webp' },
{ id: 4, src: 'gallery/GalacticShooter/4.webp' },
{ id: 5, src: 'gallery/GalacticShooter/5.webp' },
]
const storeUrls: StoreUrls = {
appleAppStore: 'https://apps.apple.com/app/flyyingplane/id6470124867', // TODO: Replace when published.
Expand Down

0 comments on commit 869df54

Please sign in to comment.