-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Various Improvements & Fixes #83
Open
yjf2002ghty
wants to merge
124
commits into
ianfab:main
Choose a base branch
from
yjf2002ghty:patch-1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
yjf2002ghty
changed the title
Fog Of War Implementation
Fog Of War Implementation & Fixes
Oct 29, 2024
Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
…n support Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
…est CI Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
…inor fixes Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
Thanks and sorry for the delay. Will have a look in the next days. |
…playing at the cost of speed Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
…se maker Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
…gal move present & Remove check square during board setup Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
Signed-off-by: yjf2002ghty <47345902+yjf2002ghty@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#32 #62
After This Change
New features
Fog Of War
Added a dropdown to select fog of war mode, which applies to all variants. This is only a visual effect and does not change game logic. The player is only able to see the squares that they can move to and squares that have their own pieces on in their turn. When it's opponent's turn, the player is only able to see their own pieces. Wall squares are always visible.
UI Themes
Custom UI theme support. This loads CSS files from server into memory and apply them to the webpage to change the webpage content styles. Note that the browser needs to support AVIF format image to show the backgrounds of some themes.
Move Visualization
Now clicking the moves in the PGN division and the principal variations division can show a mini board that displays the board position after making that move, if "Move Visualization" checkbox is checked. This is disabled by default because generating these elements costs more time than generating plain text.
Improvements
GUI
Build & CI
Vercel Online
Added caching policy for Vercel. This will reduce the loading time of the page and network flow.
Documentation
src
folder which explains the files in it.Fixes
getFileFromServer
not working in new browsers.src/html/
and all JS files are moved tosrc/js/
. A script that is used to makeindex.html
is created.