kokopu-react 1.9.2 → 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 (86) hide show
  1. package/dist/lib/ErrorBox.js +1 -1
  2. package/dist/lib/Movetext.js +3 -3
  3. package/dist/lib/SquareMarkerIcon.js +1 -1
  4. package/dist/lib/TextMarkerIcon.js +1 -1
  5. package/dist/lib/css/arrow.css +1 -1
  6. package/dist/lib/css/chessboard.css +1 -1
  7. package/dist/lib/css/error_box.css +1 -1
  8. package/dist/lib/css/fonts.css +1 -1
  9. package/dist/lib/css/movetext.css +1 -1
  10. package/dist/lib/css/symbol.css +1 -1
  11. package/dist/lib/formatmove.js +1 -1
  12. package/dist/lib/i18n.js +1 -1
  13. package/dist/lib/impl/ArrowTip.js +1 -1
  14. package/dist/lib/impl/TextSymbol.js +1 -1
  15. package/dist/lib/impl/colorsets.js +1 -1
  16. package/dist/lib/impl/piecesets.js +1 -1
  17. package/dist/lib/impl/util.js +1 -1
  18. package/doc_src/demo/PageChessboardBase.js +1 -1
  19. package/doc_src/demo/PageChessboardInteraction.js +1 -1
  20. package/doc_src/demo/PageChessboardMove.js +1 -1
  21. package/doc_src/demo/PageChessboardSmallScreens.js +1 -1
  22. package/doc_src/demo/PageMovetextBase.js +1 -1
  23. package/doc_src/demo/PageMovetextInteraction.js +1 -1
  24. package/doc_src/demo/demo.css +1 -1
  25. package/doc_src/demo/util.js +1 -1
  26. package/doc_src/theming/LogoRenderer.js +1 -1
  27. package/doc_src/theming/theming.css +1 -1
  28. package/graphic_test_src/01_marker_icons.js +1 -1
  29. package/graphic_test_src/02_chessboard_simple.js +1 -1
  30. package/graphic_test_src/03_chessboard_flipped.js +1 -1
  31. package/graphic_test_src/04_chessboard_annotations.js +1 -1
  32. package/graphic_test_src/05_chessboard_move.js +1 -1
  33. package/graphic_test_src/06a_chessboard_animated_move.js +1 -1
  34. package/graphic_test_src/06b_chessboard_animated_move.js +1 -1
  35. package/graphic_test_src/06c_chessboard_animated_move.js +1 -1
  36. package/graphic_test_src/07_chessboard_theme.js +1 -1
  37. package/graphic_test_src/08_chessboard_click_squares.js +1 -1
  38. package/graphic_test_src/09_chessboard_move_pieces.js +1 -1
  39. package/graphic_test_src/10_chessboard_edit_arrows.js +1 -1
  40. package/graphic_test_src/11_chessboard_play_moves.js +1 -1
  41. package/graphic_test_src/12_chessboard_play_promotions.js +1 -1
  42. package/graphic_test_src/13_movetext_simple.js +1 -1
  43. package/graphic_test_src/14_movetext_error.js +1 -1
  44. package/graphic_test_src/15_movetext_html.js +1 -1
  45. package/graphic_test_src/16_movetext_options.js +1 -1
  46. package/graphic_test_src/17_movetext_interaction.js +1 -1
  47. package/graphic_test_src/common/games.pgn +2 -2
  48. package/graphic_test_src/common/test_app.css +1 -1
  49. package/graphic_test_src/common/test_app.js +1 -1
  50. package/package.json +7 -7
  51. package/scripts/clean-graphic-output.js +1 -1
  52. package/scripts/test-graphic.webpack.config.js +1 -1
  53. package/scripts/test-headless.webpack.config.js +1 -1
  54. package/src/ArrowMarkerIcon.js +1 -1
  55. package/src/Chessboard.js +1 -1
  56. package/src/ErrorBox.js +1 -1
  57. package/src/Movetext.js +3 -3
  58. package/src/SquareMarkerIcon.js +1 -1
  59. package/src/TextMarkerIcon.js +1 -1
  60. package/src/css/arrow.css +1 -1
  61. package/src/css/chessboard.css +1 -1
  62. package/src/css/error_box.css +1 -1
  63. package/src/css/fonts.css +1 -1
  64. package/src/css/movetext.css +1 -1
  65. package/src/css/symbol.css +1 -1
  66. package/src/formatmove.js +1 -1
  67. package/src/i18n.js +1 -1
  68. package/src/impl/ArrowTip.js +1 -1
  69. package/src/impl/HtmlSanitizer.js +1 -1
  70. package/src/impl/Motion.js +1 -1
  71. package/src/impl/TextSymbol.js +1 -1
  72. package/src/impl/colorsets.js +1 -1
  73. package/src/impl/piecesets.js +1 -1
  74. package/src/impl/util.js +1 -1
  75. package/src/index.js +1 -1
  76. package/src/markers.js +1 -1
  77. package/test/1_markers.js +1 -1
  78. package/test/2_chessboard_util.js +1 -1
  79. package/test/3_marker_icons_graphic.js +1 -1
  80. package/test/4_chessboard_graphic.js +1 -1
  81. package/test/5_chessboard_interaction.js +1 -1
  82. package/test/6_chessboard_play_moves.js +1 -1
  83. package/test/7_movetext_graphic.js +1 -1
  84. package/test/8_movetext_interaction.js +1 -1
  85. package/test/common/graphic.js +1 -1
  86. package/test/references/15_movetext_html/0.png +0 -0
@@ -13,7 +13,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
13
13
  /******************************************************************************
14
14
  * *
15
15
  * This file is part of Kokopu-React, a JavaScript chess library. *
16
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
16
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
17
17
  * *
18
18
  * This program is free software: you can redistribute it and/or *
19
19
  * modify it under the terms of the GNU Lesser General Public License *
@@ -129,10 +129,10 @@ var Movetext = /*#__PURE__*/function (_React$Component) {
129
129
  if (evt === undefined) {
130
130
  return undefined;
131
131
  }
132
- var round = game.round();
133
- var roundElement = round === undefined ? undefined : /*#__PURE__*/_react["default"].createElement("span", {
132
+ var fullRound = game.fullRound();
133
+ var roundElement = fullRound === undefined ? undefined : /*#__PURE__*/_react["default"].createElement("span", {
134
134
  className: "kokopu-header-round"
135
- }, sanitizeHtml(round));
135
+ }, fullRound);
136
136
  var evtElement = /*#__PURE__*/_react["default"].createElement("span", {
137
137
  className: "kokopu-header-event"
138
138
  }, sanitizeHtml(evt));
@@ -11,7 +11,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
11
11
  /******************************************************************************
12
12
  * *
13
13
  * This file is part of Kokopu-React, a JavaScript chess library. *
14
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
14
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
15
15
  * *
16
16
  * This program is free software: you can redistribute it and/or *
17
17
  * modify it under the terms of the GNU Lesser General Public License *
@@ -12,7 +12,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
12
12
  /******************************************************************************
13
13
  * *
14
14
  * This file is part of Kokopu-React, a JavaScript chess library. *
15
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
15
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
16
16
  * *
17
17
  * This program is free software: you can redistribute it and/or *
18
18
  * 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 *
@@ -12,7 +12,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
12
12
  /******************************************************************************
13
13
  * *
14
14
  * This file is part of Kokopu-React, a JavaScript chess library. *
15
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
15
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
16
16
  * *
17
17
  * This program is free software: you can redistribute it and/or *
18
18
  * modify it under the terms of the GNU Lesser General Public License *
package/dist/lib/i18n.js CHANGED
@@ -7,7 +7,7 @@ exports["default"] = void 0;
7
7
  /******************************************************************************
8
8
  * *
9
9
  * This file is part of Kokopu-React, a JavaScript chess library. *
10
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
10
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
11
11
  * *
12
12
  * This program is free software: you can redistribute it and/or *
13
13
  * modify it under the terms of the GNU Lesser General Public License *
@@ -10,7 +10,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
10
10
  /******************************************************************************
11
11
  * *
12
12
  * This file is part of Kokopu-React, a JavaScript chess library. *
13
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
13
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
14
14
  * *
15
15
  * This program is free software: you can redistribute it and/or *
16
16
  * modify it under the terms of the GNU Lesser General Public License *
@@ -11,7 +11,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
11
11
  /******************************************************************************
12
12
  * *
13
13
  * This file is part of Kokopu-React, a JavaScript chess library. *
14
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
14
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
15
15
  * *
16
16
  * This program is free software: you can redistribute it and/or *
17
17
  * modify it under the terms of the GNU Lesser General Public License *
@@ -7,7 +7,7 @@ exports["default"] = void 0;
7
7
  /******************************************************************************
8
8
  * *
9
9
  * This file is part of Kokopu-React, a JavaScript chess library. *
10
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
10
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
11
11
  * *
12
12
  * This program is free software: you can redistribute it and/or *
13
13
  * modify it under the terms of the GNU Lesser General Public License *
@@ -90,7 +90,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
90
90
  /******************************************************************************
91
91
  * *
92
92
  * This file is part of Kokopu-React, a JavaScript chess library. *
93
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
93
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
94
94
  * *
95
95
  * This program is free software: you can redistribute it and/or *
96
96
  * modify it under the terms of the GNU Lesser General Public License *
@@ -14,7 +14,7 @@ exports.sanitizeInteger = sanitizeInteger;
14
14
  /******************************************************************************
15
15
  * *
16
16
  * This file is part of Kokopu-React, a JavaScript chess library. *
17
- * Copyright (C) 2021-2022 Yoann Le Montagner <yo35 -at- melix.net> *
17
+ * Copyright (C) 2021-2023 Yoann Le Montagner <yo35 -at- melix.net> *
18
18
  * *
19
19
  * This program is free software: you can redistribute it and/or *
20
20
  * 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 *
@@ -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 *
@@ -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 *
@@ -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.2",
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,23 +39,23 @@
39
39
  "react-draggable": "^4.4.5"
40
40
  },
41
41
  "devDependencies": {
42
- "@babel/cli": "^7.19.3",
43
- "@babel/core": "^7.20.5",
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.11.0",
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
53
  "css-loader": "^6.7.3",
54
- "eslint": "^8.30.0",
54
+ "eslint": "^8.31.0",
55
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",
58
+ "kokopu": "^4.0.1",
59
59
  "mocha": "^10.2.0",
60
60
  "null-loader": "^4.0.1",
61
61
  "nyc": "^15.1.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 *
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 *
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 *