This commit is contained in:
Adam Skotarczak 2025-05-09 00:40:02 +02:00
parent 4bdbc7f068
commit 6fb723e111
4 changed files with 26 additions and 15 deletions

View File

@ -1,14 +1,25 @@
# Changelog - Avorion Distanzrechner
- **v1.1.4 - 01.05-2025 - commit v1.1.4**
- [x] Stilistische Überarbeitung und Tag setzen
- **v1.1.5 - 09.05-2025 - commit v1.1.5**
- [x] BUGFIX - Anzeigefehler aus getVersion()
- **v1.1.3 - 13.01.2022**
- [x] Farbtabelle für Erze und Entfernungen in die `index.html` implementiert
- [x] einige Optimierungen am Code
---
- **v1.1.0 - 13.01.2022**
- [x] Debugfunktion in main.js implementiert
- **v1.1.4 - 01.05-2025 - commit v1.1.4**
- [x] Stilistische Überarbeitung und Tag setzen
- **v1.0.1 - 13.01.2022**
- [x] erste Version
---
- **v1.1.3 - 13.01.2022**
- [x] Farbtabelle für Erze und Entfernungen in die `index.html` implementiert
- [x] einige Optimierungen am Code
---
- **v1.1.0 - 13.01.2022**
- [x] Debugfunktion in main.js implementiert
---
- **v1.0.1 - 13.01.2022**
- [x] erste Version

View File

@ -1 +1,2 @@
1.3.4
1.1.5

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="author" content="Adam Skotarczak">
<title>Avorion distance calculator</title>
<title>Avorion Distance Calculator</title>
<link rel="stylesheet" href="css/main.css" type="text/css">
<!-- Material Design Lite begin -->

View File

@ -10,10 +10,10 @@
// bei Änderungen Version eintragen!
const MAJOR = 1; // +1 wenn inkompatibel zur vorherigen Version
const MINOR = 1; // +1 wenn neue Funktionen implementiert
const PATCH = 4; // +1 wenn Änderungen ohne neue Funktionen
const PATCH = 5; // +1 wenn Änderungen ohne neue Funktionen
// letzte Veröffentlichung
const LASTDEV = '2025-05-01 20:00 Thursday';
const LASTDEV = '2025-05-09 20:00 Thursday';
// debug-modus ON/ OFF
const DEBUG = false;
@ -34,8 +34,7 @@ function goVersion() {
const VERSION = MAJOR + "." + MINOR + "." + PATCH;
version.innerHTML += `
Script-Version: ${VERSION}
( <a href="https://www.ionivation.com">Ionivation.com</a> ) (C) 2022-2025 Adam Skotarczak [![GitHub release (latest by semver)](https://img.shields.io/github/v/release/realAscot/AvorionDistanceCalculator?sort=semver)](https://github.com/realAscot/AvorionDistanceCalculator/releases)
( <a href="https://www.ionivation.com">Ionivation.com</a> ) (C) 2022-2025 Adam Skotarczak
`;
}