lune

created pr with 124.1 on 2026-04-22T02:46:44Z · by 613b58b7
changed status to closed on 2026-06-21T16:45:31Z · by 66ddd677
Closing as superceded by 126
cmds
checkout latest patchset:
ssh pr.pico.sh print 124 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print 124.[rev] | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 124
set PR to open (enables RSS notifications):
ssh pr.pico.sh pr open 124
set PR to draft (stops RSS notifications):
ssh pr.pico.sh pr draft 124

Patchset 124.1 on 2026-04-22T02:46:44Z · commit dbd8fd6

listing real name of tasks
juan 2026-04-21T03:21:16Z
construction of db for management of decrypted names of tasks
juan 2026-04-21T05:43:09Z
fix UTF8 chracteres
juan 2026-04-21T21:13:24Z
filter by status and coloring types of status
juan 2026-04-21T21:18:53Z
update help
juan 2026-04-21T21:21:36Z
list areas names
juan 2026-04-21T21:44:53Z
adjust table tasks to truncate name and list area
juan 2026-04-21T21:56:40Z
partial implementation of listing tasks by areas
juan 2026-04-21T22:05:20Z
final implementation of listing tasks by areas with UTF-8 chracteres
juan 2026-04-21T22:10:20Z
sort on task list to show first do now
juan 2026-04-21T22:33:29Z
update with 8 char of id and db.go
juan 2026-04-21T23:27:54Z
partial implementation of TUI menu on task update
juan 2026-04-21T23:35:35Z
task name correcion on TUI menu of Update task
juan 2026-04-21T23:38:19Z
TUI menu for update task with others flags
juan 2026-04-21T23:43:02Z
helper for TUI update task
juan 2026-04-21T23:49:56Z
search by first 8 char of note id for editing it
juan 2026-04-22T00:00:17Z
partial implementation on note TUI menu for update
juan 2026-04-22T00:05:46Z
TUI menu notebook just with tags
juan 2026-04-22T00:20:55Z
Note update now let you insert only the first 8 char of notebook id in update
juan 2026-04-22T00:25:53Z
implementation of (lune note notebook-list) for listing all notebooks and its ID
juan 2026-04-22T01:10:51Z
partial implementation of lune note show-content ID
juan 2026-04-22T02:01:11Z
convert \n in new line and \ in space for lune note show-content ID
juan 2026-04-22T02:18:42Z
Semantic diff summary
0 added, 1 modified, 0 signature changed, 0 removed across 1 analyzed file
+5 -9 internal/db/reader.go #
......@@ -245,11 +245,6 @@ func cleanName(s string) string {
245245 return ""
246246 }
247247
248- // If it's valid UTF-8 and contains no null bytes, it's probably fine
249- if utf8.ValidString(s) && !strings.Contains(s, "\x00") {
250- return s
251- }
252-
253248 b := []byte(s)
254249
255250 // Check for UTF-16LE pattern (interleaved nulls)
......@@ -271,11 +266,12 @@ func cleanName(s string) string {
271266 for i := 0; i < len(utf16s); i++ {
272267 utf16s[i] = binary.LittleEndian.Uint16(b[i*2:])
273268 }
274- return string(utf16.Decode(utf16s))
269+ s = string(utf16.Decode(utf16s))
270+ b = []byte(s)
275271 }
276272
277- // If it's not UTF-16 but has invalid UTF-8, it's likely Latin-1 (ISO-8859-1)
278- if !utf8.ValidString(s) {
273+ // Now check if it's valid UTF-8. If not, it's likely Latin-1 (ISO-8859-1)
274+ if !utf8.Valid(b) {
279275 runes := make([]rune, len(b))
280276 for i, v := range b {
281277 runes[i] = rune(v)
......@@ -283,7 +279,7 @@ func cleanName(s string) string {
283279 return string(runes)
284280 }
285281
286- // Fallback: just remove null bytes if it's otherwise valid UTF-8
282+ // Even if it is valid UTF-8, it might contain null bytes from a messy extraction
287283 return strings.ReplaceAll(s, "\x00", "")
288284 }
289285
Back to top