diff --git a/docu/changelog.md b/docu/changelog.md
index 3c8e38fb1..60bc4a6bc 100644
--- a/docu/changelog.md
+++ b/docu/changelog.md
@@ -2,6 +2,7 @@

+v0.14.4
v0.14.3
v0.14.2
v0.14.1
@@ -34,6 +35,19 @@
v0.11
Earlier changelog
+---
+## v0.14.4:
+ 
+
+ -
+ Fix: [Global] Failed to execute 'atob' on 'Window': The string to be decoded contains characters outside of the Latin1 range. [2375 / capoaira]
+
+
+
+(28.02.2023)
+released by 2Abendsegler
+
+
---
## v0.14.3:

diff --git a/gc_little_helper_II.user.js b/gc_little_helper_II.user.js
index 7d133ef6e..be0a89633 100644
--- a/gc_little_helper_II.user.js
+++ b/gc_little_helper_II.user.js
@@ -2,7 +2,7 @@
// @name GC little helper II
// @description Some little things to make life easy (on www.geocaching.com).
//--> $$000
-// @version 0.14.3.1
+// @version 0.14.4
//<-- $$000
// @copyright 2010-2016 Torsten Amshove, 2016-2023 2Abendsegler, 2017-2021 Ruko2010, 2019-2023 capoaira
// @author Torsten Amshove; 2Abendsegler; Ruko2010; capoaira
@@ -13306,8 +13306,8 @@ var mainGC = function() {
//--> $$002
code += '
";
html += "";
@@ -18789,7 +18789,7 @@ String.prototype.gcCodeToID = function () {
// Simple a quick schnaader's checksum function.
String.prototype.checksum = function () {
try {
- // We use the TextEncoder to use UFT-8, so the seed will never get out of range
+ // We use the TextEncoder to use UFT-8, so the seed will never get out of range.
let encoder = new TextEncoder();
let data = encoder.encode(this);
let seed = 0x12345678;
diff --git a/last_version.txt b/last_version.txt
index ac4a79626..3393b5fd4 100644
--- a/last_version.txt
+++ b/last_version.txt
@@ -1 +1 @@
-0.14.3
+0.14.4