Skip to content

Commit

Permalink
bug fix: bad RPE annotation parse
Browse files Browse the repository at this point in the history
  • Loading branch information
bandinopla committed Aug 8, 2024
1 parent 7e9b516 commit 039b135
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions public/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
- 2.30.3 : 2024-08-08
* Bug report by @asambol : in the journals the RPE annotation are persed incorrectly as a reference to a username in some cases.

- 2.30.2 : 2024-08-01
* Reported by @Duke309 : the recover autosave popups all the time unnecesarly when editing new days.

Expand Down
2 changes: 1 addition & 1 deletion src/componentes/journal/jparser.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const _imgTagMatcher = {
const _newlineMatcher = { match:/^\s*$/, block: m=>({ type:TYPE.NEWLINE }) }

const _unameMentionMatcher = {
match: /^@([a-z0-9_]+)/i,
match: /^@([a-z0-9_]{4,})/i,
block: m=>({ type:TYPE.UNAME, uname: m[1] })
}

Expand Down
2 changes: 1 addition & 1 deletion src/version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"buildMajor":"2","buildMinor":30,"buildRevision":2,"buildTag":"RELEASE","when":"Thu, 01 Aug 2024 20:05:13 GMT"}
{"buildMajor":"2","buildMinor":30,"buildRevision":3,"buildTag":"RELEASE","when":"Thu, 08 Aug 2024 14:18:19 GMT"}

0 comments on commit 039b135

Please sign in to comment.