diff --git a/README.md b/README.md
index 82025b9..9d86f2e 100644
--- a/README.md
+++ b/README.md
@@ -64,6 +64,13 @@
There are several ways to use the tool. You obviously need the **first one**, but you can choose any of the others depending on your needs.
### π For most users
**Option 1:** open the [maps4fs](https://maps4fs.streamlit.app) on StreamLit and generate a map template in a few clicks.
+Note, that StreamLit community hosting has some limitations, such as:
+1. Maximum map size is 4096x4096 meters.
+2. Advanced settings are disabled.
+3. Texure dissolving is disabled (they will look worse).
+
+If you run the application locally, you won't have any of these limitations and will be able to generate maps of any size with any settings you want and nice looking textures.
+So, jump to [Docker version](#option-2-docker-version) to launch the tool with one command and get the full experience.
![Basic WebUI](https://github.com/user-attachments/assets/52f499cc-f28a-4da3-abef-0e818abe8dbe)
@@ -116,14 +123,22 @@ You'll find detailed instructions on how to run the project below. But if you pr
Video tutorial: How to generate a Farming Simulator 22 map from real-world data.
### Option 1: StreamLit
-π’ Recommended for all users, you don't need to install anything.
+π’ Recommended for all users.
+π οΈ Don't need to install anything.
+πΊοΈ Supported map sizes: 2x2, 4x4 km.
+βοΈ Advanced settings: disabled.
+πΌοΈ Texture dissolving: disabled.
Using the [StreamLit](https://maps4fs.streamlit.app) version of the tool is the easiest way to generate a map template. Just open the link and follow the instructions.
Note: due to CPU and RAM limitations of the hosting, the generation may take some time. If you need faster processing, use the [Docker version](#option-2-docker-version).
Using it is easy and doesn't require any guides. Enjoy!
### Option 2: Docker version
-π Recommended for users who want faster processing, very simple installation.
+π Recommended for users who want bigger maps, fast generation, nice looking textures and advanced settings.
+π οΈ Launch with one single command.
+πΊοΈ Supported map sizes: 2x2, 4x4, 8x8, 16x16 km and any custom size.
+βοΈ Advanced settings: enabled.
+πΌοΈ Texture dissolving: enabled.
You can launch the project with minimalistic UI in your browser using Docker. Follow these steps:
1. Install [Docker](https://docs.docker.com/get-docker/) for your OS.
@@ -136,7 +151,10 @@ docker run -d -p 8501:8501 iwatkot/maps4fs
5. When the map is generated click on the `Download` button to get the map.
### Option 3: Python package
-π΄ Recommended for developers.
+π΄ Recommended for developers.
+πΊοΈ Supported map sizes: 2x2, 4x4, 8x8, 16x16 km and any custom size.
+βοΈ Advanced settings: enabled.
+πΌοΈ Texture dissolving: enabled.
You can use the Python package to generate maps. Follow these steps:
1. Install the package from PyPI:
diff --git a/webui/templates.py b/webui/templates.py
index ee6748c..ed9f775 100644
--- a/webui/templates.py
+++ b/webui/templates.py
@@ -13,7 +13,7 @@ class Messages:
"StreamLit community hosting has some limitations, such as: \n"
"1. Maximum map size is 4096x4096 meters. \n"
"2. Advanced settings are disabled. \n"
- "3. Texure dissolving is disabled (they will look worse). \n"
+ "3. Texure dissolving is disabled (they will look worse). \n \n"
"If you run the application locally, you won't have any of these limitations "
"and will be able to generate maps of any size with any settings you want and nice looking textures."
"Learn more about the Docker version in the repo's "