From f4c6e845ba7d0900815fd8cacea1a0029b7b0429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Harrault?= <benoit@harrault.fr> Date: Fri, 3 Jun 2022 23:16:09 +0200 Subject: [PATCH] Fix/complete metadata and documentation --- README.md | 28 +++++++++++++++++++++++++++- android/gradle.properties | 4 ++-- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5df9deb..f21420a 100644 --- a/README.md +++ b/README.md @@ -1 +1,27 @@ -# calculus +# Colors, a color flood fill game + +## Your mission + +Fill the board with only one color. + +## How to play + +### Start game + +- Select game settings (difficulty, board size, colors count and skin) +- Hit play button to generate a randomly colored board + +### Play + +- Pick color from palette, all touching cells from top left with the same color will be filled with this selected color +- Repeat until all board is filled + +### Victory + +- If you can fill board with less moves count than show target, you win! + +## Credits + +This game is heavily inspired from [Open Flood](https://f-droid.org/en/packages/com.gunshippenguin.openflood/), a simple but addictive flood fill game, available on [F-Droid repository](https://f-droid.org/en/) ([source code](https://github.com/GunshipPenguin/open_flood)). + +This application is built with Flutter framework. diff --git a/android/gradle.properties b/android/gradle.properties index 6638812..81949df 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1,5 +1,5 @@ org.gradle.jvmargs=-Xmx1536M android.useAndroidX=true android.enableJetifier=true -app.versionName=0.0.13 -app.versionCode=13 +app.versionName=0.0.14 +app.versionCode=14 -- GitLab