v1.1.5
This commit is contained in:
parent
4bdbc7f068
commit
6fb723e111
29
CHANGELOG.md
29
CHANGELOG.md
@ -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
|
||||
|
@ -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 -->
|
||||
|
@ -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 [](https://github.com/realAscot/AvorionDistanceCalculator/releases)
|
||||
|
||||
( <a href="https://www.ionivation.com">Ionivation.com</a> ) (C) 2022-2025 Adam Skotarczak
|
||||
`;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user