| Make it gnuskii and add new README.md for bitreich. - gnuskii - GNUSki improved… | |
| git clone git://bitreich.org/gnuskii git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws… | |
| Log | |
| Files | |
| Refs | |
| Tags | |
| README | |
| LICENSE | |
| --- | |
| commit 74ad7d9d95b37c12b974586f2c9e6f8488f813a2 | |
| parent c8f10d133d57af101e0beece67f9c5902ce0ca1a | |
| Author: Christoph Lohmann <[email protected]> | |
| Date: Wed, 19 Nov 2025 18:43:59 +0100 | |
| Make it gnuskii and add new README.md for bitreich. | |
| Diffstat: | |
| M README.md | 33 ++++++++++++++---------------… | |
| C README.md -> README.md.old | 0 | |
| D src/ChangeLog | 27 --------------------------- | |
| A src/ChangeLog.old | 26 ++++++++++++++++++++++++++ | |
| M src/Makefile | 4 ++-- | |
| R src/readme -> src/readme.old | 0 | |
| 6 files changed, 43 insertions(+), 47 deletions(-) | |
| --- | |
| diff --git a/README.md b/README.md | |
| @@ -1,24 +1,21 @@ | |
| -# GNUSki | |
| +# GNUski Improved (gnuskii) | |
| -GNUSki is an open source clone of [Skifree](https://en.wikipedia.org/wiki/SkiF… | |
| +This repository was thankfully taken from | |
| -[License: GNU GPL v2](./LICENSE) | |
| + https://github.com/rudolfolah/gnuski | |
| -## GNUSki around the web | |
| -- [homebrew formula for gnuski](https://formulae.brew.sh/formula/gnuski) | |
| - - [formula code for gnuski](https://github.com/Homebrew/homebrew-core/blob/5… | |
| -- [ascii cinema recording of gnuski](https://asciinema.org/a/669357) | |
| - - [demo.gif](./demo.gif) | |
| -- [Termux](https://termux.dev/en/), an Android terminal emulator and Linux env… | |
| - - [gnuski package for Termux](https://github.com/termux/termux-packages/tree… | |
| - - [archived games package for Termux](https://github.com/termux/game-package… | |
| - - [mentioned in a YouTube video description](https://www.youtube.com/watch?v… | |
| -- [Slack 14.0 build of gnuski](https://slackbuilds.org/repository/14.0/games/g… | |
| -- [mentioned on a blog in 2013, "gnuski: Game Time!" -- Inconsolation](https:/… | |
| +and modified to fit the needs of bitreich gameroom at | |
| + ssh://[email protected] | |
| -## News and updates | |
| -Copied over from the original repo: | |
| +Features which were added are: | |
| + | |
| +* Information screen about controls. | |
| +* Bigfoot was added. | |
| +* Snowman was added. | |
| +* Support for jumps/tricks. | |
| + | |
| +See contributors in the commit messages. | |
| + | |
| +Please have fun! | |
| -- 2007-05-31: It's alive! GNUSki is alive again! I've been working on this for… | |
| -- 2005-07-01: Plan for 0.3 Drawing methods will be fixed in 0.3. Hopefully we … | |
| diff --git a/README.md b/README.md.old | |
| diff --git a/src/ChangeLog b/src/ChangeLog | |
| @@ -1,26 +0,0 @@ | |
| -GNUSki 0.3 | |
| - | |
| -2007-05-30 Rudolf Olah | |
| - * object.c: Coloured trees green. | |
| - * main.c: Decreased refresh rate to counter-act the weird | |
| - attron/attroff cursor crap. | |
| - | |
| -2007-05-29 Rudolf Olah | |
| - * main.c: Proper scrolling. Generates objects as they pass from | |
| - view. | |
| - | |
| -2007-05-28 Rudolf Olah | |
| - * object.c: Facing is specified when drawing objects (there are a | |
| - lot of objects that have the same facing so there's no need for | |
| - the struct to store that info). | |
| - * main.c: Added the proper controls and screen-scrolling. | |
| - * main.c: Using a refresh rate now and a separate variable to | |
| - control speed. Also keeping track of distance. | |
| - | |
| -2007-05-25 Rudolf Olah | |
| - * main.c: Converted everything to C. | |
| - * main.c: GNUSki is starting from version 0.1 all over again. | |
| - | |
| -2006-04-19 Rudolf Olah | |
| - * draw.h: Changed the commands around a bit. The clean-up has | |
| - begun. | |
| -\ No newline at end of file | |
| diff --git a/src/ChangeLog.old b/src/ChangeLog.old | |
| @@ -0,0 +1,26 @@ | |
| +GNUSki 0.3 | |
| + | |
| +2007-05-30 Rudolf Olah | |
| + * object.c: Coloured trees green. | |
| + * main.c: Decreased refresh rate to counter-act the weird | |
| + attron/attroff cursor crap. | |
| + | |
| +2007-05-29 Rudolf Olah | |
| + * main.c: Proper scrolling. Generates objects as they pass from | |
| + view. | |
| + | |
| +2007-05-28 Rudolf Olah | |
| + * object.c: Facing is specified when drawing objects (there are a | |
| + lot of objects that have the same facing so there's no need for | |
| + the struct to store that info). | |
| + * main.c: Added the proper controls and screen-scrolling. | |
| + * main.c: Using a refresh rate now and a separate variable to | |
| + control speed. Also keeping track of distance. | |
| + | |
| +2007-05-25 Rudolf Olah | |
| + * main.c: Converted everything to C. | |
| + * main.c: GNUSki is starting from version 0.1 all over again. | |
| + | |
| +2006-04-19 Rudolf Olah | |
| + * draw.h: Changed the commands around a bit. The clean-up has | |
| + begun. | |
| diff --git a/src/Makefile b/src/Makefile | |
| @@ -1,5 +1,5 @@ | |
| CC=gcc | |
| -FLAGS=-O2 -o gnuski | |
| +FLAGS=-O2 -o gnuskii | |
| LIBS=-lncurses -ltinfo | |
| FILES=main.c objects.c | |
| @@ -7,4 +7,4 @@ all: | |
| $(CC) $(FLAGS) $(FILES) $(LIBS) | |
| clean: | |
| - rm *~ gnuski | |
| + rm *~ gnuskii | |
| diff --git a/src/readme b/src/readme.old |