diff --git a/README.md b/README.md
index 5df9deb50f6422375cb9738558e8816f53b56fc4..f21420a6d0c1af0db6c379f290e5c04de1752666 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 663881258a10822c0b4abc064b6e0bc0ccf48833..81949dfd2077495aaea8a6bc81ad9c75442f9ebb 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