Skip to content

Commit

Permalink
Enable blocking for vertex boards
Browse files Browse the repository at this point in the history
  • Loading branch information
Perlkonig committed Jul 3, 2024
1 parent cfa7cb5 commit e251f33
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.2] - 2024-07-03

### Added

* Vertex boards now support blocking.

## [1.3.1] - 2024-06-26

### Fixed
Expand Down
44 changes: 38 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "abstractplay-designer",
"private": true,
"version": "1.3.1",
"version": "1.3.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down Expand Up @@ -29,7 +29,7 @@
"vite": "^4.4.5"
},
"dependencies": {
"@abstractplay/renderer": "^1.0.0-ci-9687382852.0",
"@abstractplay/renderer": "^1.0.0-ci-9783251381.0",
"nanoid": "^4.0.2",
"peerjs": "^1.4.7",
"rfdc": "^1.3.0"
Expand Down
1 change: 1 addition & 0 deletions src/components/Board.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
) {
if (
$state.board.style.startsWith("squares") ||
$state.board.style.startsWith("vertex") ||
$state.board.style.startsWith("hex-odd") ||
$state.board.style.startsWith("hex-even") ||
$state.board.style.startsWith("hex-slanted") ||
Expand Down

0 comments on commit e251f33

Please sign in to comment.