Skip to content

Commit

Permalink
GitHub is case sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederick Behringer committed Mar 18, 2024
1 parent 41778d7 commit c93c37c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Deploy Backend](https://github.com/yuru-baku/infinityDeck/actions/workflows/main_infinitydeck.yml/badge.svg)](https://github.com/yuru-baku/infinityDeck/actions/workflows/main_infinitydeck.yml)
[![Deploy Frontend](https://github.com/yuru-baku/infinityDeck/actions/workflows/deploy-vue_config.yml/badge.svg)](https://github.com/yuru-baku/infinityDeck/actions/workflows/deploy-vue_config.yml)
[![Deploy Backend](https://github.com/yuru-baku/InfinityDeck/actions/workflows/main_InfinityDeck.yml/badge.svg)](https://github.com/yuru-baku/InfinityDeck/actions/workflows/main_InfinityDeck.yml)
[![Deploy Frontend](https://github.com/yuru-baku/InfinityDeck/actions/workflows/deploy-vue_config.yml/badge.svg)](https://github.com/yuru-baku/InfinityDeck/actions/workflows/deploy-vue_config.yml)
# Links:
[Live Page](https://yuru-baku.github.io/infinityDeck/)
[Live Page](https://yuru-baku.github.io/InfinityDeck/)
[Kanban](https://miro.com/welcomeonboard/Y0pHWlpaUjEwR0RYSjBvZjFmMDYwcXRKRVhmY2M2a2FKY0ZJdFRvOU1qM01qVTUyRzdkbHVJTnc4TmhZa0RJQ3wzNDU4NzY0NTc0NzE4Mzk3MjYyfDI=?share_link_id=690598034590)

# Syncing Cards
Expand Down
8 changes: 4 additions & 4 deletions frontend-vue/src/model/game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ export const GAME_CONFIG: {
Uno: {
label: 'Uno',
id: 'Uno',
basePath: '/infinityDeck/cardImages/uno-cards',
cardBack: '/infinityDeck/cardImages/uno-cards/back.svg'
basePath: '/InfinityDeck/cardImages/uno-cards',
cardBack: '/InfinityDeck/cardImages/uno-cards/back.svg'
},
MauMau: {
label: 'french',
id: 'MauMau',
basePath: '/infinityDeck/cardImages/french-suited-cards',
cardBack: '/infinityDeck/cardImages/french-suited-cards/card-back-blue.svg'
basePath: '/InfinityDeck/cardImages/french-suited-cards',
cardBack: '/InfinityDeck/cardImages/french-suited-cards/card-back-blue.svg'
}
};
2 changes: 1 addition & 1 deletion frontend-vue/src/services/CardService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class CardService {

constructor(conService: ConnectionService) {
this.conSerivce = conService;
this.cardBack = 'url(./infinityDeck/cardImages/french-suited-cards/card-back-blue.svg)';
this.cardBack = 'url(./InfinityDeck/cardImages/french-suited-cards/card-back-blue.svg)';
this.numberOfCards = 0;
this.markerMap = new Map<string, Card>();
this.cardCallbacks = new Map<string, Function>();
Expand Down
2 changes: 1 addition & 1 deletion frontend-vue/src/views/LobbyCreaterView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ onUnmounted(() => {
recommend you to print them on an A4-paper.
</p>
</div>
<a href="/infinityDeck/markers.pdf" target="_blank" class="button"
<a href="/InfinityDeck/markers.pdf" target="_blank" class="button"
>Print the Cards</a
>
</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend-vue/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: '/infinityDeck',
base: '/InfinityDeck',
plugins: [
vue({
template: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// vite.config.ts
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "file:///D:/Development/infinityDeck/frontend-vue/node_modules/vite/dist/node/index.js";
import vue from "file:///D:/Development/infinityDeck/frontend-vue/node_modules/@vitejs/plugin-vue/dist/index.mjs";
var __vite_injected_original_import_meta_url = "file:///D:/Development/infinityDeck/frontend-vue/vite.config.ts";
import { defineConfig } from "file:///D:/Development/InfinityDeck/frontend-vue/node_modules/vite/dist/node/index.js";
import vue from "file:///D:/Development/InfinityDeck/frontend-vue/node_modules/@vitejs/plugin-vue/dist/index.mjs";
var __vite_injected_original_import_meta_url = "file:///D:/Development/InfinityDeck/frontend-vue/vite.config.ts";
var vite_config_default = defineConfig({
base: "/infinityDeck",
base: "/InfinityDeck",
plugins: [
vue({
template: {
Expand Down

0 comments on commit c93c37c

Please sign in to comment.