Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
4a102aa
I have created the `server/simul` directory and the basic `Simul` cla…
google-labs-jules[bot] Sep 22, 2025
4498c28
WIP: Implement simultaneous exhibitions feature
google-labs-jules[bot] Sep 22, 2025
b6fb8fb
WIP: Implement simultaneous exhibitions feature
google-labs-jules[bot] Sep 22, 2025
0df56fc
WIP: Implement simultaneous exhibitions feature (2nd attempt)
google-labs-jules[bot] Sep 22, 2025
92987eb
WIP: Implement simultaneous exhibitions feature (3rd attempt)
google-labs-jules[bot] Sep 23, 2025
8f39aac
Implement simultaneous exhibitions feature
google-labs-jules[bot] Sep 23, 2025
0fbccac
This commit introduces the initial implementation of the simultaneous…
google-labs-jules[bot] Sep 23, 2025
df5ed8c
This commit introduces the "Simultaneous Exhibitions" (simuls) feature.
google-labs-jules[bot] Sep 23, 2025
ed09761
This commit introduces the "Simultaneous Exhibitions" (simuls) feature.
google-labs-jules[bot] Sep 24, 2025
f10515a
This commit introduces the "Simultaneous Exhibitions" (simuls) feature.
google-labs-jules[bot] Sep 25, 2025
c51f224
black
gbtami Sep 25, 2025
c1c2f50
Merge branch 'master' of https://github.com/gbtami/pychess-variants i…
gbtami Sep 26, 2025
ebd79b8
Merge branch 'master' of https://github.com/gbtami/pychess-variants i…
gbtami Oct 1, 2025
c6e2c75
Merge branch 'master' of https://github.com/gbtami/pychess-variants i…
gbtami Oct 22, 2025
bdd8b43
Fix merge conflicts
gbtami Nov 18, 2025
46e27ed
Fix TypeScript linting errors in simul feature
gbtami Nov 18, 2025
403106c
Styling
gbtami Nov 19, 2025
324c285
Enable simuls on local dev only until it's WIP
gbtami Nov 19, 2025
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
4 changes: 4 additions & 0 deletions client/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import { analysisView, embedView } from './analysis';
import { puzzleView } from './puzzle';
import { profileView } from './profile';
import { tournamentView } from './tournament';
import { simulView } from './simul/simul';
import { calendarView } from './calendar';
import { pasteView } from './paste';
import { statsView } from './stats';
Expand Down Expand Up @@ -69,6 +70,7 @@ function initModel(el: HTMLElement) {
gameId : el.getAttribute("data-gameid") ?? "",
tournamentId : el.getAttribute("data-tournamentid") ?? "",
tournamentname : el.getAttribute("data-tournamentname") ?? "",
simulId : el.getAttribute("data-simulid") ?? "",
tournamentcreator: el.getAttribute("data-tournamentcreator") ?? "",
inviter : el.getAttribute("data-inviter") ?? "",
ply : parseInt(""+el.getAttribute("data-ply")),
Expand Down Expand Up @@ -152,6 +154,8 @@ export function view(el: HTMLElement, model: PyChessModel): VNode {
return h('div#main-wrap', editorView(model));
case 'tournament':
return h('div#main-wrap', [h('main.tour', tournamentView(model))]);
case 'simul':
return h('div#main-wrap', [h('main.simul', simulView(model))]);
case 'calendar':
return h('div#calendar', calendarView());
case 'games':
Expand Down
Loading
Loading