diff --git a/.gitignore b/.gitignore index 5686776..7d86cad 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ desktop.ini *.map +*.zip diff --git a/README.md b/README.md index df513fb..ab11394 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ Nutzt jQuery und Material Design Lite - [AvorionDistanceCalculator](#avoriondistancecalculator) - [Inhalt](#inhalt) - [Screenshot](#screenshot) + - [Avorion auf Steam](#avorion-auf-steam) - [Installation](#installation) - [Geplante zukünftige Features](#geplante-zukünftige-features) @@ -31,6 +32,12 @@ Nutzt jQuery und Material Design Lite --- +## Avorion auf Steam + + + +--- + ## Installation > keine Installation nötig, einfach die [index.html](index.html) im Browser öffnen und loslegen. diff --git a/VERSION b/VERSION index 26aaba0..6085e94 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.0 +1.2.1 diff --git a/index.html b/index.html index 4bcb0ae..e3e5e55 100644 --- a/index.html +++ b/index.html @@ -43,7 +43,14 @@
- Avorion distance calculator + Avorion Distance Calculator +
+
+

+ + GitHub release (latest by semver) + +

Starting coordinates: diff --git a/js/main.js b/js/main.js index ae74bcd..ebe2ac8 100644 --- a/js/main.js +++ b/js/main.js @@ -9,8 +9,8 @@ // bei Änderungen Version eintragen! const MAJOR = 1; // +1 wenn inkompatibel zur vorherigen Version -const MINOR = 1; // +1 wenn neue Funktionen implementiert -const PATCH = 5; // +1 wenn Änderungen ohne neue Funktionen +const MINOR = 2; // +1 wenn neue Funktionen implementiert +const PATCH = 0; // +1 wenn Änderungen ohne neue Funktionen // letzte Veröffentlichung const LASTDEV = '2025-05-10'; @@ -69,10 +69,9 @@ function calculate() { // Schickt die Daten zur Berechnung an die Funktion und schreibt in die ID (id="result") des HTML Dokuments if (!isNaN(x) && !isNaN(y)){ // wenn x unc y Werte enthalten result.innerHTML = ` - from [${x}:${y}] = ${goDistToCenter(x, y)} sectors to Center + ${goDistToCenter(x, y)} sector(s) to Center 0:0 `; - koordinateX.value = ""; - koordinateY.value = ""; + // koordinateX.value = ""; koordinateY.value = ""; } }