diff --git a/.gitignore b/.gitignore
index 4d29575..34fe017 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,3 +21,5 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
+
+public/sceneries/*
\ No newline at end of file
diff --git a/README.md b/README.md
index ae6cec4..e2a682f 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,11 @@
# td2-visualizer
-Narzędzie do przeglądania plików scenerii symulatora Train Driver 2 (.SC) w przeglądarce. Umożliwia szybkie podejrzenie układu torowego dowolnej scenerii, jej szlaków zewnętrzych, semaforów, wskaźników, spawnów, numerów rozjazdów i wiele więcej
+Narzędzie do przeglądania plików scenerii symulatora Train Driver 2 (.SC) w przeglądarce. Umożliwia szybkie podejrzenie układu torowego dowolnej scenerii, jej szlaków zewnętrzych, semaforów, wskaźników, spawnów, numerów rozjazdów i wiele więcej. Z powodów praw autorskich wersja github nie posiada dołączonych plików scenerii.
-A tool for viewing Train Driver 2 simulator scenery files (.SC) in the browser. It allows for quick lookup of the track layout of any scenery, its external routes, signals, signs, spawns, switch numbers, and much more
+A tool for viewing Train Driver 2 simulator scenery files (.SC) in the browser. It allows for quick lookup of the track layout of any scenery, its external routes, signals, signs, spawns, switch numbers, and much more. Due to copyright reasons, the github version does not include scenery files.
+
+Wątek na forum / Forum thread:
+https://td2.info.pl/narzedzie-tools/nowy-td2-visualizer!/
#
diff --git a/src/components/toolbar/FileSelect.js b/src/components/toolbar/CustomFileSelect.js
similarity index 78%
rename from src/components/toolbar/FileSelect.js
rename to src/components/toolbar/CustomFileSelect.js
index 399ecef..126b662 100644
--- a/src/components/toolbar/FileSelect.js
+++ b/src/components/toolbar/CustomFileSelect.js
@@ -3,7 +3,7 @@ import MainContext from "../../contexts/MainContext";
import { useZoomPanEmitter } from "../../hooks/useZoomPubSub";
import SceneryFilesHelper from "../../helpers/sceneryFilesHelper";
-export default function FileSelect() {
+export default function CustomFileSelect() {
const {setScenery, setIsLoading} = useContext(MainContext);
const { center } = useZoomPanEmitter();
@@ -18,8 +18,8 @@ export default function FileSelect() {
};
return (
-