Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
7b1d86c
Uploaded code skeleton.
StarsExpress Nov 28, 2025
93d28ce
Constructed home page.
StarsExpress Nov 29, 2025
cec9429
Added templates and static.
StarsExpress Dec 1, 2025
7995ecc
Set up game page basic frame.
StarsExpress Jan 10, 2026
7adfedc
Added restructured frontend code.
StarsExpress Jun 13, 2026
10601ac
Added more features and fixed bugs.
StarsExpress Jun 14, 2026
5f91a91
Refractored configs.
StarsExpress Jun 14, 2026
070c599
Added unit test workflows.
StarsExpress Jun 14, 2026
68874bf
Changed from Python 3.14 to 3.12.
StarsExpress Jun 14, 2026
9caded3
Adjusted unit test run path.
StarsExpress Jun 14, 2026
7f3e61a
Fixed Aces split and profit loss bugs.
StarsExpress Jun 14, 2026
b4c9e6e
Completed component & integration tests.
StarsExpress Jun 14, 2026
b574a8b
Added all tests to GitHub actions.
StarsExpress Jun 14, 2026
f6bfd7e
Added GitHub repo popup link on top right.
StarsExpress Jun 14, 2026
20a3fe5
Added insurance logic & tests.
StarsExpress Jun 14, 2026
02806cb
Reformatted hand_processor.py.
StarsExpress Jun 15, 2026
161c032
Adjusted README.md.
StarsExpress Jun 15, 2026
3bfcc5d
Added .python-version at 3.12.
StarsExpress Jun 15, 2026
f6f16f7
Adjusted README.md rendering.
StarsExpress Jun 15, 2026
78ab21d
Adjusted README.md rendering.
StarsExpress Jun 15, 2026
b7c78b8
Added badges into README.md.
StarsExpress Jun 15, 2026
c6453a5
Adjusted frontend & README.md.
StarsExpress Jun 16, 2026
0add09b
Added game over popup.
StarsExpress Jun 16, 2026
c297a85
Refractored code.
StarsExpress Jun 17, 2026
e06b801
Refactored code.
StarsExpress Jun 17, 2026
0174956
Refactored code.
StarsExpress Jun 17, 2026
2c79b07
Adjusted README headlines.
StarsExpress Jun 17, 2026
ed10924
Adjusted README display.
StarsExpress Jun 17, 2026
1d6d8f1
Refactored code and rules txt.
StarsExpress Jun 19, 2026
6051256
Added logo and favicon.
StarsExpress Jun 19, 2026
2c33c4c
Added logo to game home page.
StarsExpress Jun 19, 2026
def7804
Fixed split Aces mark.
StarsExpress Jun 19, 2026
4ce082f
Adjusted session display for phones.
StarsExpress Jun 19, 2026
e4e56b6
Adjusted JOB link.
StarsExpress Jun 20, 2026
8f5a9a0
Separated different session calls.
StarsExpress Jun 21, 2026
7d34458
Fixed browser cached issues.
StarsExpress Jun 21, 2026
e486ac1
Added sessions cleanup.
StarsExpress Jun 21, 2026
d4545f7
Adjusted README.md.
StarsExpress Jul 1, 2026
f78c0ea
Added tech descriptions for README.md.
StarsExpress Jul 12, 2026
aa313ad
Added Black linter.
StarsExpress Jul 12, 2026
f22e112
Adjusted workflows & README.md.
StarsExpress Jul 21, 2026
44e336d
Adjusted name to MonkeyJOB.
StarsExpress Jul 24, 2026
01b11a3
Merge branch 'main' into dev
StarsExpress Jul 24, 2026
0aba94a
Adjusted name to MonkeyJOB.
StarsExpress Jul 24, 2026
d00a63b
Added workflow_dispatch for workflows.
StarsExpress Jul 24, 2026
87ab05f
Changed black-lint.yml name.
StarsExpress Jul 24, 2026
54d5e70
Merge branch 'main' into dev
StarsExpress Jul 24, 2026
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
3 changes: 2 additions & 1 deletion .github/workflows/black-lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: black-linter
name: Black Lint

on:
push:
Expand All @@ -9,6 +9,7 @@ on:
branches: [main]
paths:
- '**/*.py'
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/component_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: [main, dev]
pull_request:
branches: [main]
workflow_dispatch:

jobs:
test:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: [main, dev]
pull_request:
branches: [main]
workflow_dispatch:

jobs:
test:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: [main, dev]
pull_request:
branches: [main]
workflow_dispatch:

jobs:
test:
Expand Down
Loading