Skip to content

Commit

Permalink
Add release folder
Browse files Browse the repository at this point in the history
  • Loading branch information
flinguenheld committed Jul 27, 2023
1 parent 502232f commit 0fb1a4e
Show file tree
Hide file tree
Showing 14 changed files with 27 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
build/**
.cache/**

*.deb

# Prerequisites
*.d

Expand Down
Binary file removed image/WidgetSelection_example.gif
Binary file not shown.
Binary file removed image/kebb.gif
Binary file not shown.
Binary file removed image/schema_Target.png
Binary file not shown.
Binary file removed image/schema_Target.png~
Binary file not shown.
Binary file removed image/schema_WidgetSelection.png
Binary file not shown.
10 changes: 10 additions & 0 deletions releases/kebb_1.0_64bit/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Package: kebb
Version: 1.0
Section: utils
Priority: optional
Architecture: amd64
Depends: libc6 (>= 2.34), libgcc-s1 (>= 3.0), libsdl2-2.0-0 (>= 2.0.12), libsdl2-ttf-2.0-0 (>= 2.0.15), libstdc++6 (>= 11)
Maintainer: Florent Linguenheld <florent@linguenheld.fr>
Homepage: https://github.com/flinguenheld/kebb
Description: Improve your keyboard skills !
Small game wich allows you to improve your keyboard skills.
Binary file added releases/kebb_1.0_64bit/bin/kebb
Binary file not shown.
Binary file not shown.
14 changes: 14 additions & 0 deletions releases/kebb_1.0_64bit/usr/share/doc/kebb/copyright
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
kebb

Copyright: 2023 Florent Linguenheld florent@linguenheld.fr

2023-07-27

The entire code base may be distributed under the terms of the GNU General
Public License (GPL), which appears immediately below. Alternatively, all
of the source code as any code derived from that code may instead be
distributed under the GNU Lesser General Public License (LGPL), at the
choice of the distributor. The complete text of the LGPL appears at the
bottom of this file.

See /usr/share/common-licenses/(GPL|LGPL)
Binary file not shown.
Binary file not shown.
Binary file added releases/kebb_1.0_64bit/usr/share/man/man1/kebb.1.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion src/about/window_about.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ WindowAbout::WindowAbout(kebb::boxsize screen_size, std::shared_ptr<kebb::Window
pt.x = screen_size.w / 2 - bs.w / 2;
pt.y += bs.h * 2;
_widget_date = std::make_unique<WidgetTextBox>(pt, bs);
_widget_date->set_text("2023-07-25");
_widget_date->set_text("2023-07-27");
_widget_date->set_color_text(kebb::color(kebb::ColorName::C_Yellow));

char_size = _renderer->font_char_size(FontName::F_Menu); // NOTE: Use font menu ?
Expand Down

0 comments on commit 0fb1a4e

Please sign in to comment.