diff --git a/README.md b/README.md
index bcaa28b..4d704dc 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,5 @@ VITE_ENCRYPTION_KEY=example
Install node, at least version 18. First run `npm install` and then `npm run dev`.
The project should be accessible via http://localhost:5173/retroleaderboards/.
-## Running screens
-
-
-
+## Screens
+![Screenshots](public/v0.0.4.gif)
diff --git a/cypress.config.ts b/cypress.config.ts
index 127f253..cd03bee 100644
--- a/cypress.config.ts
+++ b/cypress.config.ts
@@ -2,7 +2,7 @@ import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
- baseUrl: 'http://localhost:5173/retroleaderboards',
+ baseUrl: 'http://localhost:5173',
defaultCommandTimeout: 10000,
},
});
diff --git a/package.json b/package.json
index 8032d00..dbbf48b 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "retroleaderboards",
"private": true,
- "version": "0.0.2",
+ "version": "0.0.3",
"scripts": {
"dev": "vite",
"dev:cypress": "VITE_ENCRYPTION_KEY=1234567890_KEY vite --host",
diff --git a/public/game_leaderboards.png b/public/game_leaderboards.png
deleted file mode 100644
index bc2ec54..0000000
Binary files a/public/game_leaderboards.png and /dev/null differ
diff --git a/public/leaderboard_entries.png b/public/leaderboard_entries.png
deleted file mode 100644
index 731cf97..0000000
Binary files a/public/leaderboard_entries.png and /dev/null differ
diff --git a/public/login.png b/public/login.png
deleted file mode 100644
index f0c18c0..0000000
Binary files a/public/login.png and /dev/null differ
diff --git a/public/logout.png b/public/logout.png
deleted file mode 100644
index 8f4c76e..0000000
Binary files a/public/logout.png and /dev/null differ
diff --git a/public/recently_played_games_list.png b/public/recently_played_games_list.png
deleted file mode 100644
index 023299c..0000000
Binary files a/public/recently_played_games_list.png and /dev/null differ
diff --git a/public/v0.0.4.gif b/public/v0.0.4.gif
new file mode 100644
index 0000000..79c700d
Binary files /dev/null and b/public/v0.0.4.gif differ
diff --git a/vite.config.mjs b/vite.config.mjs
index 6d9b2dd..82ce81b 100644
--- a/vite.config.mjs
+++ b/vite.config.mjs
@@ -2,6 +2,6 @@ import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
- base: '/retroleaderboards/',
+ base: '/',
plugins: [vue()],
})