kokopu-react 1.9.1 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/dist/lib/ArrowMarkerIcon.js +3 -1
  2. package/dist/lib/Chessboard.js +10 -2
  3. package/dist/lib/ErrorBox.js +1 -1
  4. package/dist/lib/Movetext.js +7 -5
  5. package/dist/lib/SquareMarkerIcon.js +1 -1
  6. package/dist/lib/TextMarkerIcon.js +1 -1
  7. package/dist/lib/css/arrow.css +1 -1
  8. package/dist/lib/css/chessboard.css +1 -1
  9. package/dist/lib/css/error_box.css +1 -1
  10. package/dist/lib/css/fonts.css +1 -1
  11. package/dist/lib/css/movetext.css +1 -1
  12. package/dist/lib/css/symbol.css +1 -1
  13. package/dist/lib/formatmove.js +1 -1
  14. package/dist/lib/i18n.js +1 -1
  15. package/dist/lib/impl/ArrowTip.js +1 -1
  16. package/dist/lib/impl/HtmlSanitizer.js +5 -3
  17. package/dist/lib/impl/Motion.js +3 -1
  18. package/dist/lib/impl/TextSymbol.js +1 -1
  19. package/dist/lib/impl/colorsets.js +1 -1
  20. package/dist/lib/impl/piecesets.js +1 -1
  21. package/dist/lib/impl/util.js +1 -1
  22. package/dist/lib/markers.js +1 -1
  23. package/doc_src/demo/PageChessboardBase.js +1 -1
  24. package/doc_src/demo/PageChessboardInteraction.js +1 -1
  25. package/doc_src/demo/PageChessboardMove.js +1 -1
  26. package/doc_src/demo/PageChessboardSmallScreens.js +1 -1
  27. package/doc_src/demo/PageMovetextBase.js +1 -1
  28. package/doc_src/demo/PageMovetextInteraction.js +1 -1
  29. package/doc_src/demo/demo.css +1 -1
  30. package/doc_src/demo/util.js +1 -1
  31. package/doc_src/theming/LogoRenderer.js +1 -1
  32. package/doc_src/theming/theming.css +1 -1
  33. package/graphic_test_src/01_marker_icons.js +1 -1
  34. package/graphic_test_src/02_chessboard_simple.js +1 -1
  35. package/graphic_test_src/03_chessboard_flipped.js +1 -1
  36. package/graphic_test_src/04_chessboard_annotations.js +1 -1
  37. package/graphic_test_src/05_chessboard_move.js +1 -1
  38. package/graphic_test_src/06a_chessboard_animated_move.js +1 -1
  39. package/graphic_test_src/06b_chessboard_animated_move.js +1 -1
  40. package/graphic_test_src/06c_chessboard_animated_move.js +1 -1
  41. package/graphic_test_src/07_chessboard_theme.js +1 -1
  42. package/graphic_test_src/08_chessboard_click_squares.js +1 -1
  43. package/graphic_test_src/09_chessboard_move_pieces.js +1 -1
  44. package/graphic_test_src/10_chessboard_edit_arrows.js +1 -1
  45. package/graphic_test_src/11_chessboard_play_moves.js +1 -1
  46. package/graphic_test_src/12_chessboard_play_promotions.js +1 -1
  47. package/graphic_test_src/13_movetext_simple.js +1 -1
  48. package/graphic_test_src/14_movetext_error.js +1 -1
  49. package/graphic_test_src/15_movetext_html.js +1 -1
  50. package/graphic_test_src/16_movetext_options.js +1 -1
  51. package/graphic_test_src/17_movetext_interaction.js +1 -1
  52. package/graphic_test_src/common/games.pgn +2 -2
  53. package/graphic_test_src/common/test_app.css +1 -1
  54. package/graphic_test_src/common/test_app.js +1 -1
  55. package/package.json +12 -12
  56. package/scripts/clean-graphic-output.js +1 -1
  57. package/scripts/docker-compose.yml +1 -1
  58. package/scripts/test-graphic.webpack.config.js +1 -1
  59. package/scripts/test-headless.webpack.config.js +1 -1
  60. package/src/ArrowMarkerIcon.js +1 -1
  61. package/src/Chessboard.js +6 -2
  62. package/src/ErrorBox.js +1 -1
  63. package/src/Movetext.js +3 -3
  64. package/src/SquareMarkerIcon.js +1 -1
  65. package/src/TextMarkerIcon.js +1 -1
  66. package/src/css/arrow.css +1 -1
  67. package/src/css/chessboard.css +1 -1
  68. package/src/css/error_box.css +1 -1
  69. package/src/css/fonts.css +1 -1
  70. package/src/css/movetext.css +1 -1
  71. package/src/css/symbol.css +1 -1
  72. package/src/formatmove.js +1 -1
  73. package/src/i18n.js +1 -1
  74. package/src/impl/ArrowTip.js +1 -1
  75. package/src/impl/HtmlSanitizer.js +1 -1
  76. package/src/impl/Motion.js +1 -1
  77. package/src/impl/TextSymbol.js +1 -1
  78. package/src/impl/colorsets.js +1 -1
  79. package/src/impl/piecesets.js +1 -1
  80. package/src/impl/util.js +1 -1
  81. package/src/index.js +1 -1
  82. package/src/markers.js +1 -1
  83. package/test/1_markers.js +1 -1
  84. package/test/2_chessboard_util.js +1 -1
  85. package/test/3_marker_icons_graphic.js +1 -1
  86. package/test/4_chessboard_graphic.js +1 -1
  87. package/test/5_chessboard_interaction.js +1 -1
  88. package/test/6_chessboard_play_moves.js +1 -1
  89. package/test/7_movetext_graphic.js +1 -1
  90. package/test/8_movetext_interaction.js +1 -1
  91. package/test/common/graphic.js +1 -1
  92. package/test/references/15_movetext_html/0.png +0 -0
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -81,9 +81,9 @@ probably to assure himself that the combination was sound and that he had a forc
81
81
 
82
82
 
83
83
  [Event "HTML in <b>all</b> headers"]
84
- [Site "Maybe on <a href=\"https://www.wikipedia.org/\">Wikipedia</a>, maybe somewhere else..."]
84
+ [Site "Maybe on <a href=\"https://www.wikipedia.org/\">Wikipedia</a>, maybe <strong>somewhere</strong> else..."]
85
85
  [Date "????.??.??"]
86
- [Round "<strong>3</strong>.2"]
86
+ [Round "3.?.2"]
87
87
  [White "1<sup>st</sup> <em>player</em>"]
88
88
  [Black "2<sub>nd</sub> <i>player</i>"]
89
89
  [Result "*"]
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kokopu-react",
3
- "version": "1.9.1",
3
+ "version": "1.10.0",
4
4
  "description": "A React-based library to create and display chessboard and chess-related components.",
5
5
  "keywords": [
6
6
  "chess",
@@ -30,7 +30,7 @@
30
30
  ".nycrc.yml"
31
31
  ],
32
32
  "peerDependencies": {
33
- "kokopu": "^3.0.0",
33
+ "kokopu": "^4.0.1",
34
34
  "react": "17.x.x || 18.x.x"
35
35
  },
36
36
  "dependencies": {
@@ -39,35 +39,35 @@
39
39
  "react-draggable": "^4.4.5"
40
40
  },
41
41
  "devDependencies": {
42
- "@babel/cli": "^7.19.3",
43
- "@babel/core": "^7.20.2",
42
+ "@babel/cli": "^7.20.7",
43
+ "@babel/core": "^7.20.7",
44
44
  "@babel/preset-env": "^7.20.2",
45
45
  "@babel/preset-react": "^7.18.6",
46
46
  "@emotion/react": "^11.10.5",
47
47
  "@emotion/styled": "^11.10.5",
48
- "@mui/material": "^5.10.14",
48
+ "@mui/material": "^5.11.3",
49
49
  "babel-loader": "^9.1.0",
50
50
  "babel-plugin-istanbul": "^6.1.1",
51
51
  "copy-webpack-plugin": "^11.0.0",
52
52
  "coveralls": "^3.1.1",
53
- "css-loader": "^6.7.2",
54
- "eslint": "^8.27.0",
55
- "eslint-plugin-react": "^7.31.10",
53
+ "css-loader": "^6.7.3",
54
+ "eslint": "^8.31.0",
55
+ "eslint-plugin-react": "^7.31.11",
56
56
  "html-webpack-plugin": "^5.5.0",
57
57
  "img-diff-js": "^0.5.2",
58
- "kokopu": "^3.3.0",
59
- "mocha": "^10.1.0",
58
+ "kokopu": "^4.0.1",
59
+ "mocha": "^10.2.0",
60
60
  "null-loader": "^4.0.1",
61
61
  "nyc": "^15.1.0",
62
62
  "react": "^18.2.0",
63
63
  "react-dom": "^18.2.0",
64
64
  "react-styleguidist": "^13.0.0",
65
- "selenium-webdriver": "^4.6.1",
65
+ "selenium-webdriver": "^4.7.1",
66
66
  "ssh2-sftp-client": "^9.0.4",
67
67
  "style-loader": "^3.3.1",
68
68
  "unit.js": "^2.1.1",
69
69
  "webpack": "^5.75.0",
70
- "webpack-cli": "^5.0.0"
70
+ "webpack-cli": "^5.0.1"
71
71
  },
72
72
  "scripts": {
73
73
  "lint": "eslint doc_src graphic_test_src src test",
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -2,7 +2,7 @@ version: "3.7"
2
2
 
3
3
  services:
4
4
  web-client:
5
- image: selenium/standalone-firefox:4.6.0-20221104
5
+ image: selenium/standalone-firefox:4.7.1-20221208 # https://github.com/SeleniumHQ/docker-selenium to get the latest version
6
6
  shm_size: '2gb'
7
7
  ports:
8
8
  - 4444:4444 # http://localhost:4444 (driver)
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
package/src/Chessboard.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -67,6 +67,9 @@ export default class Chessboard extends React.Component {
67
67
  windowWidth: window.innerWidth,
68
68
  };
69
69
  this.arrowTipIdSuffix = generateRandomId();
70
+
71
+ this.handleRef = {};
72
+ forEachSquare(sq => { this.handleRef[sq] = React.createRef(); });
70
73
  }
71
74
 
72
75
  componentDidMount() {
@@ -315,11 +318,12 @@ export default class Chessboard extends React.Component {
315
318
  return (
316
319
  <Draggable
317
320
  key={'handle-' + sq} position={dragPosition}
321
+ nodeRef={this.handleRef[sq]}
318
322
  onStart={evt => this.handleDragStart(sq, evt)}
319
323
  onDrag={(_, dragData) => this.handleDrag(sq, dragData)}
320
324
  onStop={(_, dragData) => this.handleDragStop(sq, dragData)}
321
325
  >
322
- <rect className={classNames.join(' ')} x={x} y={y} width={squareSize} height={squareSize} />
326
+ <rect ref={this.handleRef[sq]} className={classNames.join(' ')} x={x} y={y} width={squareSize} height={squareSize} />
323
327
  </Draggable>
324
328
  );
325
329
  }
package/src/ErrorBox.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
package/src/Movetext.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -100,8 +100,8 @@ export default class Movetext extends React.Component {
100
100
  if (evt === undefined) {
101
101
  return undefined;
102
102
  }
103
- let round = game.round();
104
- let roundElement = round === undefined ? undefined : <span className="kokopu-header-round">{sanitizeHtml(round)}</span>;
103
+ let fullRound = game.fullRound();
104
+ let roundElement = fullRound === undefined ? undefined : <span className="kokopu-header-round">{fullRound}</span>;
105
105
  let evtElement = <span className="kokopu-header-event">{sanitizeHtml(evt)}</span>;
106
106
  return <div className="kokopu-headerGroup-eventRound" key="event-round">{evtElement}{roundElement}</div>;
107
107
  }
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
package/src/css/arrow.css CHANGED
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
package/src/css/fonts.css CHANGED
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
package/src/formatmove.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
package/src/i18n.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
package/src/impl/util.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
package/src/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
package/src/markers.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
package/test/1_markers.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *
@@ -1,7 +1,7 @@
1
1
  /******************************************************************************
2
2
  * *
3
3
  * This file is part of Kokopu-React, a JavaScript chess library. *
4
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
4
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
5
5
  * *
6
6
  * This program is free software: you can redistribute it and/or *
7
7
  * modify it under the terms of the GNU Lesser General Public License *