Skip to content

Commit

Permalink
Merge pull request #42 from alisaitteke/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
alisaitteke authored Jan 13, 2024
2 parents d637059 + c9a0377 commit 468a1cb
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 46 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ Thumbs.db
actions-runner
build/*
dist/*
yarn.lock
yarn.lock
cog.toml
27 changes: 15 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.
- - -
## [v2.5.11](https://github.com/alisaitteke/seatmap-canvas/compare/v2.5.10..v2.5.11) - 2024-01-13
#### Bug Fixes
- **(changelog.yaml)** add fetch-depth: 0 option to the checkout step to ensure full commit history is available for generating changelog - ([ee590c5](https://github.com/alisaitteke/seatmap-canvas/commit/ee590c5c201af6c175e4b8eff642d4a2339afd55)) - Ali
#### Miscellaneous Chores
- **(.gitignore)** add cog.toml to the list of ignored files - ([822a540](https://github.com/alisaitteke/seatmap-canvas/commit/822a5402dc662fb670e4f3e885dc81f486054c90)) - Ali
- **(CHANGELOG.md)** add newline at the end of the file for consistency - ([c946729](https://github.com/alisaitteke/seatmap-canvas/commit/c94672918e05e5d70ef0ea5a6bf9c6f017133a72)) - Ali
- **(CHANGELOG.md)** remove unnecessary lines and fix missing newline at end of file - ([d172b10](https://github.com/alisaitteke/seatmap-canvas/commit/d172b10c1de3973f3890d2a6b14252ee5b91c404)) - Ali
- **(changelog.yaml)** remove changelog.yaml workflow file - ([14b5248](https://github.com/alisaitteke/seatmap-canvas/commit/14b524838975bd61a3b3a216821fb73fc1e15c5d)) - Ali
- **(changelog.yaml)** disable conventional commit check in the changelog workflow - ([e47782e](https://github.com/alisaitteke/seatmap-canvas/commit/e47782ea6c69dd98aa514bc0f9dd1e15ad7be367)) - Ali
- **(changelog.yaml)** remove unnecessary 'release' input from cocogitto-action step - ([3eeff96](https://github.com/alisaitteke/seatmap-canvas/commit/3eeff96f3342ca6b7dca3319350bc83a56ca2161)) - Ali
- **(changelog.yaml)** remove fetch-depth option from checkout step in GitHub Actions workflow - ([3569359](https://github.com/alisaitteke/seatmap-canvas/commit/3569359f6cc107946fed2051dbf74075e8767840)) - Ali
- **(changelog.yaml)** add changelog generation workflow - ([754b874](https://github.com/alisaitteke/seatmap-canvas/commit/754b87414132c9fbebd8b36c29a452d500d51adf)) - Ali
- **(cog.toml)** remove cog.toml file - ([500bb66](https://github.com/alisaitteke/seatmap-canvas/commit/500bb66f9c75981169b97dc86e7c62c9f917d651)) - Ali

## Unreleased

## 2.4.2 - 2023-12-25

## 2.4.1 - 2023-12-25

## 2.3.0 - 2023-12-24

## 2.0.3 - 2023-12-23
### Added
- Changelog
- - -
19 changes: 0 additions & 19 deletions cog.toml

This file was deleted.

9 changes: 1 addition & 8 deletions examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
<link href="https://use.fontawesome.com/releases/v6.4.2/css/all.css" rel="stylesheet"/>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<style>


#seats_container {
position: relative;
border-radius: 0 !important;
Expand Down Expand Up @@ -101,14 +99,12 @@
<div id="seats_container" class="w-full flex-1 h-full"></div>
</div>
</div>


<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>

<script type="text/javascript">
$(document).ready(function () {

$(document).ready(function () {
let seatmap = new SeatMapCanvas("#seats_container", {
legend: true,
style: {
Expand Down Expand Up @@ -139,7 +135,6 @@

});


const generateRandomBlocks = function () {
let block_colors = ["#01a5ff", "#fccf4e", "#01a5ff", "#01a5ff"];
let blocks = []
Expand Down Expand Up @@ -230,8 +225,6 @@
$("#randomize-btn").on("click", function (a) {
generateRandomBlocks()
});


});
</script>
</body>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alisaitteke/seatmap-canvas",
"version": "2.4.2",
"version": "2.5.9",
"tags": "seating, seat, seatmap, seat-selection, seat-booking, booking, ticket, reservation",
"author": "Ali Sait TEKE <[email protected]>",
"homepage": "https://github.com/alisaitteke/seatmap-canvas",
Expand All @@ -18,7 +18,7 @@
},
"sideEffects": false,
"scripts": {
"start": "rollup --config --watch --bundleConfigAsCjs",
"start:dev": "rollup --config --watch --bundleConfigAsCjs",
"build": "rollup -c --prod --bundleConfigAsCjs"
},
"engines": {
Expand Down
3 changes: 0 additions & 3 deletions src/lib/svg/svg.index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ export default class Svg extends SvgBase {
this.node.classed("zoom-level-" + ZoomLevel.VENUE, false);
this.node.classed("zoom-level-" + zoom_level.level, true);
});


//this.update();
}

update() {
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"jsx": "react",
"module": "esnext",
"baseUrl": "./src",
"removeComments": true,
Expand Down

0 comments on commit 468a1cb

Please sign in to comment.