From 8181cadea726f243b3738bff0151012acd58f42d Mon Sep 17 00:00:00 2001 From: gregory guy Date: Tue, 29 Jan 2019 13:07:14 +0100 Subject: fulfill bug request 2663. Thanks to Kristopher 2016-06-13 for the request. These extra themes come from https://sourceforge.net/projects/knights/files/knights-themepack They are released under the GNU GPL Version 2 Signed-off-by: gregory guy --- extra-theme/Abstract/CMakeLists.txt | 9 ++++++ extra-theme/Abstract/KCAbstract/black.bishop.png | Bin 0 -> 3008 bytes extra-theme/Abstract/KCAbstract/black.king.png | Bin 0 -> 2573 bytes extra-theme/Abstract/KCAbstract/black.knight.png | Bin 0 -> 3858 bytes extra-theme/Abstract/KCAbstract/black.pawn.png | Bin 0 -> 2905 bytes extra-theme/Abstract/KCAbstract/black.queen.png | Bin 0 -> 2538 bytes extra-theme/Abstract/KCAbstract/black.rook.png | Bin 0 -> 2431 bytes extra-theme/Abstract/KCAbstract/theme.conf | 39 +++++++++++++++++++++++ extra-theme/Abstract/KCAbstract/white.bishop.png | Bin 0 -> 2585 bytes extra-theme/Abstract/KCAbstract/white.king.png | Bin 0 -> 2053 bytes extra-theme/Abstract/KCAbstract/white.knight.png | Bin 0 -> 3544 bytes extra-theme/Abstract/KCAbstract/white.pawn.png | Bin 0 -> 2668 bytes extra-theme/Abstract/KCAbstract/white.queen.png | Bin 0 -> 2231 bytes extra-theme/Abstract/KCAbstract/white.rook.png | Bin 0 -> 2198 bytes 14 files changed, 48 insertions(+) create mode 100644 extra-theme/Abstract/CMakeLists.txt create mode 100644 extra-theme/Abstract/KCAbstract/black.bishop.png create mode 100644 extra-theme/Abstract/KCAbstract/black.king.png create mode 100644 extra-theme/Abstract/KCAbstract/black.knight.png create mode 100644 extra-theme/Abstract/KCAbstract/black.pawn.png create mode 100644 extra-theme/Abstract/KCAbstract/black.queen.png create mode 100644 extra-theme/Abstract/KCAbstract/black.rook.png create mode 100644 extra-theme/Abstract/KCAbstract/theme.conf create mode 100644 extra-theme/Abstract/KCAbstract/white.bishop.png create mode 100644 extra-theme/Abstract/KCAbstract/white.king.png create mode 100644 extra-theme/Abstract/KCAbstract/white.knight.png create mode 100644 extra-theme/Abstract/KCAbstract/white.pawn.png create mode 100644 extra-theme/Abstract/KCAbstract/white.queen.png create mode 100644 extra-theme/Abstract/KCAbstract/white.rook.png (limited to 'extra-theme/Abstract') diff --git a/extra-theme/Abstract/CMakeLists.txt b/extra-theme/Abstract/CMakeLists.txt new file mode 100644 index 0000000..67f17cb --- /dev/null +++ b/extra-theme/Abstract/CMakeLists.txt @@ -0,0 +1,9 @@ +foreach( _theme KCAbstract ) + +tde_create_tarball( + + TARGET ${_theme}.tar.gz + SOURCEDIR ${CMAKE_CURRENT_SOURCE_DIR}/${_theme} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/themes +) +endforeach( ) diff --git a/extra-theme/Abstract/KCAbstract/black.bishop.png b/extra-theme/Abstract/KCAbstract/black.bishop.png new file mode 100644 index 0000000..f672151 Binary files /dev/null and b/extra-theme/Abstract/KCAbstract/black.bishop.png differ diff --git a/extra-theme/Abstract/KCAbstract/black.king.png b/extra-theme/Abstract/KCAbstract/black.king.png new file mode 100644 index 0000000..f99be66 Binary files /dev/null and b/extra-theme/Abstract/KCAbstract/black.king.png differ diff --git a/extra-theme/Abstract/KCAbstract/black.knight.png b/extra-theme/Abstract/KCAbstract/black.knight.png new file mode 100644 index 0000000..e655979 Binary files /dev/null and b/extra-theme/Abstract/KCAbstract/black.knight.png differ diff --git a/extra-theme/Abstract/KCAbstract/black.pawn.png b/extra-theme/Abstract/KCAbstract/black.pawn.png new file mode 100644 index 0000000..ba5a883 Binary files /dev/null and b/extra-theme/Abstract/KCAbstract/black.pawn.png differ diff --git a/extra-theme/Abstract/KCAbstract/black.queen.png b/extra-theme/Abstract/KCAbstract/black.queen.png new file mode 100644 index 0000000..cd9494e Binary files /dev/null and b/extra-theme/Abstract/KCAbstract/black.queen.png differ diff --git a/extra-theme/Abstract/KCAbstract/black.rook.png b/extra-theme/Abstract/KCAbstract/black.rook.png new file mode 100644 index 0000000..8b3024f Binary files /dev/null and b/extra-theme/Abstract/KCAbstract/black.rook.png differ diff --git a/extra-theme/Abstract/KCAbstract/theme.conf b/extra-theme/Abstract/KCAbstract/theme.conf new file mode 100644 index 0000000..0a7e9bf --- /dev/null +++ b/extra-theme/Abstract/KCAbstract/theme.conf @@ -0,0 +1,39 @@ +[General] +#Type=Board +Type=Chessmen +Name=Abstract +Version=1.0 +Author=Asif Ali Rizwaan +AuthorEmail=maarizwan@hotmail.com +AuthorWWW= +Notes= + +[2DWhite] +King=white.king.png +Queen=white.queen.png +Bishop=white.bishop.png +Knight=white.knight.png +Rook=white.rook.png +Pawn=white.pawn.png + +[2DBlack] +King=black.king.png +Queen=black.queen.png +Bishop=black.bishop.png +Knight=black.knight.png +Rook=black.rook.png +Pawn=black.pawn.png + +[2DBoard] +Light=square.light.png +Dark=square.dark.png +Motion=square.motion.png +Select=square.select.png +Danger=square.danger.png + +[Coordinates] +TextColor=255,255,255 +ShadowColor=0,0,0 + + + diff --git a/extra-theme/Abstract/KCAbstract/white.bishop.png b/extra-theme/Abstract/KCAbstract/white.bishop.png new file mode 100644 index 0000000..6bb2c64 Binary files /dev/null and b/extra-theme/Abstract/KCAbstract/white.bishop.png differ diff --git a/extra-theme/Abstract/KCAbstract/white.king.png b/extra-theme/Abstract/KCAbstract/white.king.png new file mode 100644 index 0000000..2c2c96b Binary files /dev/null and b/extra-theme/Abstract/KCAbstract/white.king.png differ diff --git a/extra-theme/Abstract/KCAbstract/white.knight.png b/extra-theme/Abstract/KCAbstract/white.knight.png new file mode 100644 index 0000000..62997b4 Binary files /dev/null and b/extra-theme/Abstract/KCAbstract/white.knight.png differ diff --git a/extra-theme/Abstract/KCAbstract/white.pawn.png b/extra-theme/Abstract/KCAbstract/white.pawn.png new file mode 100644 index 0000000..1d2675c Binary files /dev/null and b/extra-theme/Abstract/KCAbstract/white.pawn.png differ diff --git a/extra-theme/Abstract/KCAbstract/white.queen.png b/extra-theme/Abstract/KCAbstract/white.queen.png new file mode 100644 index 0000000..b5793db Binary files /dev/null and b/extra-theme/Abstract/KCAbstract/white.queen.png differ diff --git a/extra-theme/Abstract/KCAbstract/white.rook.png b/extra-theme/Abstract/KCAbstract/white.rook.png new file mode 100644 index 0000000..b15a706 Binary files /dev/null and b/extra-theme/Abstract/KCAbstract/white.rook.png differ -- cgit v1.2.1