diff --git a/Mac/Tentia-Info.plist b/Mac/Tentia-Info.plist
index 9605e50..916bfab 100644
--- a/Mac/Tentia-Info.plist
+++ b/Mac/Tentia-Info.plist
@@ -42,7 +42,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 0.5.3
+ 0.5.4
CFBundleSignature
????
CFBundleURLTypes
@@ -57,7 +57,7 @@
CFBundleVersion
- 0.5.3
+ 0.5.4
LSApplicationCategoryType
public.app-category.lifestyle
LSMinimumSystemVersion
diff --git a/Mac/publish/Appcast.xml b/Mac/publish/Appcast.xml
index 72f442b..17af139 100755
--- a/Mac/publish/Appcast.xml
+++ b/Mac/publish/Appcast.xml
@@ -6,15 +6,15 @@
Most recent changes with links to updates.
en
-
- Version 0.5.2
+ Version 0.5.3
10.5.0
http://jabs.nu/Tentia/download/ReleaseNotes.html
- Fri, 28 Dec 2012 21:09:02 +0100
+ Tue, 08 Jan 2013 23:29:48 +0100
+ sparkle:dsaSignature="MC0CFE0L/gH1KVw9893FbLuLRZAACrmDAhUAiqEcoIXpdwCfO8CgU3ge4xMSZ5c=" />
diff --git a/Mac/publish/ReleaseNotes.html b/Mac/publish/ReleaseNotes.html
index f426f7f..bdea6bb 100644
--- a/Mac/publish/ReleaseNotes.html
+++ b/Mac/publish/ReleaseNotes.html
@@ -14,12 +14,18 @@
+Tentia 0.5.4
+
+Fixed critical bug which wouldn't find mentions in text
+
+
+
Tentia 0.5.3
Fixed problem where deleted posts weren't removed from Mentions
Fixed problem with localStorage on 10.7
Showind photos now on the profile
-Bugfixes
+Smaller bugfixes
diff --git a/WebKit/scripts/helper/Core.js b/WebKit/scripts/helper/Core.js
index e90433b..4564ee4 100644
--- a/WebKit/scripts/helper/Core.js
+++ b/WebKit/scripts/helper/Core.js
@@ -593,7 +593,7 @@ function(jQuery, Paths, URI, HostApp, Cache) {
var text = node.innerHTML;
var mentions_in_text = [];
- var res = text.match(/(\^[\w]+\.[\w:/.]+)/ig);
+ var res = text.match(/(\^[\w:/.]+)/ig);
if (res) {
for (var i = 0; i < res.length; i++) {
@@ -680,7 +680,7 @@ function(jQuery, Paths, URI, HostApp, Cache) {
})
}
- var res = text.match(/(\^[\w]+\.[\w:/.]+)/ig);
+ var res = text.match(/(\^[\w:/]+\.[\w:/.]+)/ig);
if (res) {
for (var i = 0; i < res.length; i++) {
@@ -693,6 +693,7 @@ function(jQuery, Paths, URI, HostApp, Cache) {
}
}
}
+
return mentions;
}