Debian Package Tracker
Register | Log in
Subscribe

tomboy-ng

Tomboy Notes rewritten to ease installation and cross platform

Choose email to subscribe with

general
  • source: tomboy-ng (main)
  • version: 0.42-1
  • maintainer: David Bannon (DMD)
  • arch: any
  • std-ver: 4.7.0
  • VCS: Git (Browse, QA)
versions [more versions can be listed by madison] [old versions available from snapshot.debian.org]
[pool directory]
  • o-o-stable: 0.32-2
  • oldstable: 0.36a-2
  • stable: 0.42-1
  • testing: 0.42-1
  • unstable: 0.42-1
versioned links
  • 0.32-2: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 0.36a-2: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 0.42-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
binaries
  • tomboy-ng (1 bugs: 0, 1, 0, 0)
action needed
AppStream hints: 1 error for tomboy-ng high
AppStream found metadata issues for packages:
  • tomboy-ng: 1 error
You should get rid of them to provide more metadata about this software.
Created: 2020-12-25 Last update: 2025-01-20 04:00
Fails to build during reproducibility testing normal
A package building reproducibly enables third parties to verify that the source matches the distributed binaries. It has been identified that this source package produced different results, failed to build or had other issues in a test environment. Please read about how to improve the situation!
Created: 2021-02-08 Last update: 2026-08-12 08:31
62 new commits since last upload, is it time to release? normal
vcswatch reports that this package seems to have new commits in its VCS but has not yet updated debian/changelog. You should consider updating the Debian changelog and uploading this new version into the archive.

Here are the relevant commit logs:
commit 08de213345eb712fb1645b7e718be10fa902d5fc
Merge: ebc90c0 b943ab5
Author: David Bannon <dbannon@internode.on.net>
Date:   Sun Aug 2 21:38:38 2026 +1000

    Merge remote-tracking branch 'refs/remotes/origin/master'
    unknown

commit ebc90c0850b45cb2e27c3dabe2172da8c9d2eaf6
Author: David Bannon <dbannon@internode.on.net>
Date:   Sun Aug 2 21:37:28 2026 +1000

    should remove this

commit b943ab545e97140962f04fa8fcf8de8262a7cfb4
Merge: fb4b38f 890e7e8
Author: Davo <davidbannon@users.noreply.github.com>
Date:   Sun Aug 2 21:23:04 2026 +1000

    Merge pull request #352 from WB3IHY/transport-agnostic-bugfixes
    
    Fix a re-entrant sync hang, a SearchNoteBook infinite loop, and pinned-tag log noise
    (note the pinned-tag fix applies to something that author is developing separately. A very minor performance hit ...)

commit 3c09bc7094d3d50f87dfa95048946a60a32f8351
Author: David Bannon <dbannon@internode.on.net>
Date:   Sun Aug 2 19:26:48 2026 +1000

    add gtk3 rpm package, still needs precompiled binary

commit fb4b38fdfb1259f14898f9c9cc24168b06549cf7
Merge: da37349 337afdc
Author: Davo <davidbannon@users.noreply.github.com>
Date:   Thu Jul 30 16:20:56 2026 +1000

    Merge pull request #339 from MengelCode/readme-improvements
    
    Fix typos / punctuation in README file

commit 890e7e88fa116572905f06ec35175e1d92bba89a
Author: Joe WB3IHY <wb3ihy@gmail.com>
Date:   Mon Jul 27 18:22:40 2026 -0400

    fix(sync): fix infinite loop in SearchNoteBook on a stale notebook entry
    
    inc(j) lived inside the `if NoteList.FindID(...) then` branch, so a
    single notebook-membership entry (NBStrL) whose note ID FindID can't
    find in the current NoteList - eg after a sync leaves the notebook
    index briefly out of sync with the note list - left j stuck forever,
    spinning FindID on that same missing ID indefinitely. FindID itself is
    a simple bounded scan (as noted in ccf9466); this was a real, always-
    reproducible infinite loop in the caller, not a rare race.
    
    Found via a live gdb backtrace (debug-symbol build, ptrace-attached
    mid-hang): main thread stuck inside TNoteList.FindID, called from
    SearchNoteBook, searching for a GUID NoteList didn't currently have.
    
    Fix: advance j on every iteration regardless of whether FindID found
    a match.

commit 2b94166307fbc394979f05d76a5efda19cd339da
Author: Joe WB3IHY <wb3ihy@gmail.com>
Date:   Sun Jul 26 20:24:24 2026 -0400

    fix(loadnote): recognise pinned/-pinned as known tags
    
    TBLoadNote.ActOnTag's whitelist covers open-on-startup and every other
    structural element but omitted pinned/-pinned, so every single .note
    file (native or synced) logged "unrecognised tag" for its pinned
    element - harmless (no functional effect, just log noise visible when
    run from a terminal), but a real, pre-existing gap.

commit 073efe9325e01ab29bd94fdc4eae2c6e02325ede
Author: Joe WB3IHY <wb3ihy@gmail.com>
Date:   Sun Jul 26 16:26:50 2026 -0400

    fix(sync): fix re-entrant FormActivate causing an infinite hang
    
    TFormSync.FormActivate called SyncProgress('FormActivate') - which
    pumps the message queue via Application.ProcessMessages - before
    clearing the ReadyToRun guard flag. If that pump caused GTK to deliver
    a redundant activate/focus event for the same window (observed in
    practice on this system), a second, re-entrant FormActivate call would
    still see ReadyToRun = True and re-enter JoinSync/ManualSync while the
    first call was still running, racing two syncs against each other.
    
    Found via a real hang: deleting a note remotely that was also a
    notebook member spun the main thread indefinitely inside the resulting
    recursive note-list search (confirmed via gdb backtrace on a
    debug-symbol build - TNoteList.FindID itself is a simple bounded loop,
    the actual bug was the re-entrant call stacking on top of it). Not
    specific to the new Web Sync transport - any transport's remote-delete
    path could in principle hit the same race - but this is the first test
    that happened to exercise "remote delete of a notebook-member note"
    for real.
    
    Fix: check-and-clear ReadyToRun as the very first thing in
    FormActivate, before any call that can pump messages.
    
    Verified fixed: same remote-delete-of-notebook-member-note scenario
    that reliably hung before now completes correctly.

commit da3734979816c0d7a04792eb3e3af49a1cc8a0ac
Author: David Bannon <dbannon@internode.on.net>
Date:   Sat Jul 25 22:05:37 2026 +1000

    Debian Build, dependency bug

commit 5b057e47b4a2f2655ab8364ba078cf3b8676ffa9
Author: David Bannon <dbannon@internode.on.net>
Date:   Sat Jul 25 21:05:30 2026 +1000

    Debian Build changes, to deal with #346 and extend model to gtk3 etc

commit 75edfedd333b064394a91b2c2394f5956ee27fda
Author: David Bannon <dbannon@internode.on.net>
Date:   Thu Jul 23 16:23:21 2026 +1000

    po related updates from Roy

commit 0ee475dc3a0d6bd0c92295d445dbe3d8740c211e
Author: David Bannon <dbannon@internode.on.net>
Date:   Mon Jul 20 18:41:15 2026 +1000

    Minimum libc6 and dep on libayatana-appindicator3-1 for gtk3 ver

commit dd28beb3cd812399878047f2ac49a0138a076c2a
Author: David Bannon <dbannon@internode.on.net>
Date:   Sat Jul 18 17:48:58 2026 +1000

    gtk3 needs same extra extensions as gtk2

commit 12ab38a4a645f89b68b5c2dfc1fc2c7ef64d4da1
Author: David Bannon <dbannon@internode.on.net>
Date:   Tue Jul 14 15:26:57 2026 +1000

    Windows does not have cnetdb

commit d2ccd8af4e43155f8fbf352476412f69a040e0d4
Author: David Bannon <dbannon@internode.on.net>
Date:   Tue Jul 14 12:48:28 2026 +1000

    update to support packaging a (prebuilt) gtk3 -ng

commit d21eb5c4c630b68f3c9673d3df336b44651e8ffd
Author: David Bannon <dbannon@internode.on.net>
Date:   Mon Jul 13 20:51:27 2026 +1000

    update misty readme

commit c89a3eddbf36a161ffecadc4e69265fa05b2151a
Author: David Bannon <dbannon@internode.on.net>
Date:   Sun Jul 12 21:23:06 2026 +1000

    Extended timeouts for syncgithub

commit 146f1b86402cb7db240af2e3333c0de7e6dce66c
Author: David Bannon <dbannon@internode.on.net>
Date:   Sat Jul 11 21:10:44 2026 +1000

    Misty : one system speaking to Misty at one time.

commit bf40aa92c3879efa8d5be753d95083b883abd546
Author: David Bannon <dbannon@internode.on.net>
Date:   Sat Jul 11 21:09:41 2026 +1000

    tomboy-ng : one system speaking to Misty at one time.

commit e62ee464751772eb82c878e6b95741aecde2c243
Author: David Bannon <dbannon@internode.on.net>
Date:   Sun Jun 21 19:46:46 2026 +1000

    language

commit a3563c917801e47e8b66b69ba85c5aab4cddb8f6
Author: David Bannon <dbannon@internode.on.net>
Date:   Mon Jun 8 21:08:07 2026 +1000

    Added menu to editbox Search button

commit 0fd113e6ccbd564c0b86b2ee49d3aea8c73ad285
Author: David Bannon <dbannon@internode.on.net>
Date:   Sun Jun 7 22:15:22 2026 +1000

    Spanish Translation, altered msg

commit 47d40116811532631b0e85d12c24a964d4a202af
Author: David Bannon <dbannon@internode.on.net>
Date:   Sat Jun 6 19:08:38 2026 +1000

    use # for bash comments !

commit 7055a1b509e89832f9280f7720b528fd8db7619b
Author: David Bannon <dbannon@internode.on.net>
Date:   Sat Jun 6 18:18:58 2026 +1000

    tweaks to tab order, misty doc. Leave qt5 rpm to depend on qt5pas, no lib ??

commit 337f044d86065174fe8500120cf1ee3d034ac380
Author: David Bannon <dbannon@internode.on.net>
Date:   Sun May 31 20:14:53 2026 +1000

    Cleaned up tabbing through Sync settings pages, changed some speed butt to TBitBtn, delay after first DNS failure

commit d94206dca1f38904240fadfd05ec138d90d3cef9
Author: David Bannon <dbannon@internode.on.net>
Date:   Thu May 28 14:58:32 2026 +1000

    Misty better network error handling.

commit a684725a30e5846d3c7b2c968a1471d230bf6e18
Author: David Bannon <dbannon@internode.on.net>
Date:   Tue May 26 18:04:05 2026 +1000

    update Misty note

commit 5cede9b4be3e4e0c5b0fef8150ba42dee7ab28f4
Author: David Bannon <dbannon@internode.on.net>
Date:   Tue May 26 15:26:55 2026 +1000

    correct URL on FQD name

commit 49ecae4133a4433fb9ac19416b9f7ef00f595d41
Author: David Bannon <dbannon@internode.on.net>
Date:   Sat May 23 19:52:36 2026 +1000

    better work with gethostname, added -D Domain

commit 738ee192d35c2c67a3419504c17197c56c9befcf
Author: David Bannon <dbannon@internode.on.net>
Date:   Wed May 20 18:41:00 2026 +1000

    Fix Windows host call

commit 235aaf49a973ca4da543543f558895aa11c8b86a
Author: David Bannon <dbannon@internode.on.net>
Date:   Mon May 18 22:14:01 2026 +1000

    Tweak Misty Packaging

commit 28a229b451192861634a527a5b1de8ae6f087d7c
Author: David Bannon <dbannon@internode.on.net>
Date:   Mon May 18 10:34:51 2026 +1000

    Misty config file and safer password entry

commit 466c6454004b6fac6472185f96579daf69804a51
Author: David Bannon <dbannon@internode.on.net>
Date:   Mon May 18 10:33:38 2026 +1000

    better reporting with invalid Misty password

commit 2483f7aeaa3ac92dfc78685fe8698dbdf2a1632b
Author: David Bannon <dbannon@internode.on.net>
Date:   Thu May 14 16:58:32 2026 +1000

    force Qt5 or Qt6 to use libxcb - thanks Alexx2000

commit 2bb5ca27dc795496bf19917c7efed88776844a71
Author: David Bannon <dbannon@internode.on.net>
Date:   Tue May 12 22:05:00 2026 +1000

    fixed bug reported by Roy, maybe #345 too ?

commit 8c014c2535cf9a9ed7aacb0922b4d743e2e37282
Author: David Bannon <dbannon@internode.on.net>
Date:   Tue May 12 22:00:53 2026 +1000

    Windows version compiles, wonder if it runs ?

commit 8a246c2dc6dc66649b1aca470b80bdccaa00579c
Author: David Bannon <dbannon@internode.on.net>
Date:   Sun May 10 10:48:55 2026 +1000

    first cut at a windows Misty, but still in a tgz !

commit a38c3dba16338fffbd461a42bc904649c52c9fd7
Author: David Bannon <dbannon@internode.on.net>
Date:   Wed May 6 22:09:34 2026 +1000

    Finally, got this misty packaging right

commit 64881eb5e5fd3b606ac50722ad0e7500d790bab9
Author: David Bannon <dbannon@internode.on.net>
Date:   Wed May 6 21:38:57 2026 +1000

    package.bash now tars misty up and we have a readme

commit 11d024d96915d390809cda59a8de69e65d42d6b2
Author: David Bannon <dbannon@internode.on.net>
Date:   Wed May 6 18:53:55 2026 +1000

    correct path in package script

commit 1a32de5efe64b82d53d5d5c004134b9ac548e74b
Author: David Bannon <dbannon@internode.on.net>
Date:   Wed May 6 18:47:11 2026 +1000

    Lets build Misty with same package script

commit c8943dc5243c03f1314c1a6e513bdeab3cebd6f9
Author: David Bannon <dbannon@internode.on.net>
Date:   Wed May 6 17:56:39 2026 +1000

    Lets build Misty with same package script

commit be05ae7bb32f979a578b2e14ca58e8cd6303aa4c
Author: David Bannon <dbannon@internode.on.net>
Date:   Wed May 6 16:12:53 2026 +1000

    last tweaks b4 an alpha release, 0.42c

commit f0c4edc4cfbb64a8208d1c2a075c5a03627f9e03
Author: David Bannon <dbannon@internode.on.net>
Date:   Mon May 4 20:00:14 2026 +1000

    removed linux only unit that mvs xwindow between workspaces frm project

commit 5a38bb6813fcf68cf275311f6e4f0e5d7dbffd0d
Author: David Bannon <dbannon@internode.on.net>
Date:   Mon May 4 19:37:31 2026 +1000

    remove some writeln, more auto layout of Settings box

commit 5b551028ee8e0a046912ce2f3e4931c9f79013a7
Author: David Bannon <dbannon@internode.on.net>
Date:   Sun May 3 20:28:35 2026 +1000

    enable misty by default

commit 97ecdf248551e86417c0d5ca8a696668fc8af050
Author: David Bannon <dbannon@internode.on.net>
Date:   Sun May 3 19:59:04 2026 +1000

    usable defaults for parameters, tweak help

commit ef772b7a7d852bf769eaaca3fe5eafb30722992d
Author: David Bannon <dbannon@internode.on.net>
Date:   Sun May 3 12:16:41 2026 +1000

    Misty now using basic username/password auth

commit c5c36b6008ebf36d031cd876323d8fce0e68c7d4
Author: David Bannon <dbannon@internode.on.net>
Date:   Sun May 3 12:13:59 2026 +1000

    tb now using basic username/password auth in Misty

commit 3e794a0633693b0dcda97c77555283acdc63bd38
Author: David Bannon <dbannon@internode.on.net>
Date:   Thu Apr 30 22:54:08 2026 +1000

    added some debug lines to watch Misty, remove later

commit f8efd2d4cafd04cf5a54246308713a6e83b3861b
Author: David Bannon <dbannon@internode.on.net>
Date:   Tue Apr 28 20:09:48 2026 +1000

    Misty-Small and some odds and ends

commit 59c2c6cb9a76a36874b7f789ef0dbe2a79ef8db2
Author: David Bannon <dbannon@internode.on.net>
Date:   Tue Apr 28 19:48:44 2026 +1000

    Misty only, try to resolve mDNS hostnames, lots of testing needed

commit 9fd557bfa50327b1bced0630dc730aeb43daa5db
Author: David Bannon <dbannon@internode.on.net>
Date:   Wed Apr 22 18:52:44 2026 +1000

    Add CLI switch to enable Misty

commit e8cfe80bd362d977f3effb3c6c54d4e85aaa31da
Author: David Bannon <dbannon@internode.on.net>
Date:   Fri Apr 10 21:53:45 2026 +1000

    Address #342, when searching, an opening note should jump to term even if wrapped in inverted commas.

commit 9aa8c5a6fb736aadd0456a3e2e24a553b56222dc
Author: David Bannon <dbannon@internode.on.net>
Date:   Fri Apr 10 14:20:08 2026 +1000

    Fixed flow n problem from #336, incidental fix saving underline with title

commit 9324e86ebe3710396f757a3999f12e721cb8a1c1
Author: David Bannon <dbannon@internode.on.net>
Date:   Wed Apr 8 20:41:47 2026 +1000

    deal with #343, renaming notebooks, also a ToDo rewriting notes with changed names

commit 367ddce7530ac87e23e785c7fafd35a06ffe1f39
Author: David Bannon <dbannon@internode.on.net>
Date:   Tue Apr 7 20:32:43 2026 +1000

    Address #336, newline added to end of note

commit 210d6fd28191a541316f85b01b270fde8625c544
Author: David Bannon <dbannon@internode.on.net>
Date:   Mon Apr 6 18:52:48 2026 +1000

    remove some gtk2 debugs and clean up some ToDos

commit d7556161a74723bf60001d3601e044af0e38665c
Author: David Bannon <dbannon@internode.on.net>
Date:   Mon Mar 16 17:21:06 2026 +1100

    some ugly Gtk3 fixes, form size, dont save in thread

commit 8d329786e576bc2786e2c9d95b049cc46ffc0a11
Author: David Bannon <dbannon@internode.on.net>
Date:   Wed Mar 11 15:28:44 2026 +1100

    minor code cleanup

commit 337afdcd58524bbf2ddcdb50ae0c62db6b7efcc4
Author: Manuel Engel <manuel-engel-97@gmx.de>
Date:   Sun Nov 30 17:25:32 2025 +0100

    Fix typos / punctuation.

commit 9e096f1c3261c6a0496f03dafe731324d42050bf
Author: David Bannon <dbannon@internode.on.net>
Date:   Sun Oct 26 19:50:42 2025 +1100

    minor comment tweaks
Created: 2026-07-26 Last update: 2026-08-11 21:30
lintian reports 1 warning normal
Lintian reports 1 warning about this package. You should make the package lintian clean getting rid of them.
Created: 2025-01-20 Last update: 2025-01-20 10:32
Standards version of the package is outdated. wishlist
The package should be updated to follow the last version of Debian Policy (Standards-Version 4.7.4 instead of 4.7.0).
Created: 2025-02-21 Last update: 2026-03-31 15:01
news
[rss feed]
  • [2025-01-25] tomboy-ng 0.42-1 MIGRATED to testing (Debian testing watch)
  • [2025-01-19] Accepted tomboy-ng 0.42-1 (source) into unstable (David Bannon) (signed by: Philipp Huebner)
  • [2024-07-05] tomboy-ng 0.40-1 MIGRATED to testing (Debian testing watch)
  • [2024-06-30] Accepted tomboy-ng 0.40-1 (source) into unstable (David Bannon) (signed by: Philipp Huebner)
  • [2024-01-22] tomboy-ng 0.39-1 MIGRATED to testing (Debian testing watch)
  • [2024-01-17] Accepted tomboy-ng 0.39-1 (source) into unstable (David Bannon) (signed by: Philipp Huebner)
  • [2024-01-16] tomboy-ng 0.38-1 MIGRATED to testing (Debian testing watch)
  • [2024-01-11] Accepted tomboy-ng 0.38-1 (source) into unstable (David Bannon) (signed by: Philipp Huebner)
  • [2023-04-14] tomboy-ng 0.36a-2 MIGRATED to testing (Debian testing watch)
  • [2023-04-03] Accepted tomboy-ng 0.36a-2 (source) into unstable (David Bannon) (signed by: Philipp Huebner)
  • [2023-03-29] Accepted tomboy-ng 0.36a-1 (source) into unstable (David Bannon) (signed by: Philipp Huebner)
  • [2023-03-05] tomboy-ng 0.36-1 MIGRATED to testing (Debian testing watch)
  • [2023-02-23] Accepted tomboy-ng 0.36-1 (source) into unstable (David Bannon) (signed by: Philipp Huebner)
  • [2022-12-08] tomboy-ng 0.35-1 MIGRATED to testing (Debian testing watch)
  • [2022-12-02] Accepted tomboy-ng 0.35-1 (source) into unstable (David Bannon) (signed by: Philipp Huebner)
  • [2021-11-30] tomboy-ng 0.34-1 MIGRATED to testing (Debian testing watch)
  • [2021-11-24] Accepted tomboy-ng 0.34-1 (source) into unstable (David Bannon) (signed by: Philipp Huebner)
  • [2021-05-28] tomboy-ng 0.32-2 MIGRATED to testing (Debian testing watch)
  • [2021-05-20] Accepted tomboy-ng 0.32-2 (source) into unstable (David Bannon) (signed by: Philipp Huebner)
  • [2021-02-08] tomboy-ng 0.32-1 MIGRATED to testing (Debian testing watch)
  • [2021-02-03] Accepted tomboy-ng 0.32-1 (source) into unstable (David Bannon) (signed by: Philipp Huebner)
  • [2021-01-02] tomboy-ng 0.31a-2 MIGRATED to testing (Debian testing watch)
  • [2020-12-28] Accepted tomboy-ng 0.31a-2 (source) into unstable (David Bannon) (signed by: Philipp Huebner)
  • [2020-12-24] Accepted tomboy-ng 0.31a-1 (source amd64) into unstable, unstable (Debian FTP Masters) (signed by: Philipp Huebner)
bugs [bug history graph]
  • all: 1
  • RC: 0
  • I&N: 1
  • M&W: 0
  • F&P: 0
  • patch: 0
links
  • homepage
  • lintian (0, 1)
  • buildd: logs, reproducibility, cross
  • popcon
  • browse source code
  • other distros
  • screenshots
  • l10n (-, 81)
ubuntu Ubuntu logo [Information about Ubuntu for Debian Developers]
  • version: 0.42-1build1

Debian Package Tracker — Copyright 2013-2025 The Distro Tracker Developers
Report problems to the tracker.debian.org pseudo-package in the Debian BTS.
Documentation — Bugs — Git Repository — Contributing