Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions src/lib/gmaes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,45 @@ const gmaes: Gmae[] = [
tags: [],
links: [],
url: '/_app/tools/gba-emu/index.html'
},
{
name: 'Idle Dice',
description: 'Something to do with dice probably',
category: 'Uncategorized',
tags: [],
links: [
{
name: 'Developer website',
url: 'https://lutsgames.com/'
}
],
url: '/_app/tools/idle-dices/index.html'
},
{
name: 'Idle Chopper',
description: 'Chop wood',
category: 'Uncategorized',
tags: [],
links: [
{
name: 'Developer website',
url: 'https://lutsgames.com/'
}
],
url: '/_app/tools/idle-chopper/index.html'
},
{
name: 'Idle Idle Game Dev',
description: '"Develop" idle games while idle',
category: 'Uncategorized',
tags: [],
links: [
{
name: 'Developer website',
url: 'https://lutsgames.com/'
}
],
url: '/_app/tools/idle-idle-gamedev/index.html'
}
Comment on lines +372 to 411
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

New game entries wired correctly; verify static targets exist

Data structure and mapping look consistent. Please verify the three URLs resolve to actual index.html files.


🏁 Script executed:

#!/bin/bash
set -euo pipefail

declare -a URLS=(
  "/_app/tools/idle-dices/index.html"
  "/_app/tools/idle-chopper/index.html"
  "/_app/tools/idle-idle-gamedev/index.html"
)

# Translate URL path to repo path (strip leading slash)
for u in "${URLS[@]}"; do
  path="${u#/}"
  if [[ -f "$path" ]]; then
    echo "OK: $u -> $path"
  else
    echo "MISSING: $u -> $path"
  fi
done

Length of output: 1042


Missing static targets for new game entries

The URLs added in src/lib/gmaes.ts (lines 372–411) point to index.html files that aren’t present in the repo. Please add the corresponding build artifacts or correct the paths:

• _app/tools/idle-dices/index.html
• _app/tools/idle-chopper/index.html
• _app/tools/idle-idle-gamedev/index.html

🤖 Prompt for AI Agents
In src/lib/gmaes.ts around lines 372–411 the three game entries reference static
files at _app/tools/idle-dices/index.html, _app/tools/idle-chopper/index.html,
and _app/tools/idle-idle-gamedev/index.html that do not exist in the repo; fix
by either (A) adding the missing static build artifacts at those exact paths
(place the index.html and any assets under the repository’s static/public build
output so they are served at /_app/tools/<name>/index.html), or (B) update each
url field to point to the correct existing path in the repo (for example a
different folder or a hosted URL). Ensure paths are consistent with the
build/deploy layout and update any build scripts if needed so the files are
produced and published.

];

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading