Page 1 of 1

Edit search tab listing

PostPosted: Thu Jan 27, 2022 2:36 pm
by dane
Is there a way to edit the drop-down listing of searches on the search tab. There are searches that I rerun from time to time, but they keep rolling off the bottom of the list due to less important, transitory searches. Are the items in the list stored in an editable file? or accessible somehow?

Thanks,
DaDane

Re: Edit search tab listing

PostPosted: Thu Jan 27, 2022 4:41 pm
by Quade
They're stored in "GuiItems.db3" in your user tree but you'd need some tool to edit Sqlite databases.

When you use a search it bubbles to the top again but, if it sits unused long enough new searches can push the old out.

Re: Edit search tab listing

PostPosted: Fri Jan 28, 2022 5:46 pm
by dane
That's very kewl! Had to find some tools (sqlite studio) which provides a graphical interface. Had some trouble installing, but eventually got it. Took a little time to find how to edit the database, and now...it works. Thanks, that'll be a big help.

btw, is the filestructure (db3) from the old pc database tool dbase III? I know they went out of business many years ago, but they had built some good tools along the way. I wouldn't be surprised if their data structures outlived them.

Thanks for the help,
DaDane

Re: Edit search tab listing

PostPosted: Sat Jan 29, 2022 12:23 pm
by Quade
Sqlite is the most popular database probably in the world. It's used everywhere including android phones and I believe IOS. It's a format that works the same under Linux as Windows.

The ".db3" is just my own name for the extension. From when I switched to Sqlite version 3.

Re: Edit search tab listing

PostPosted: Sat Jan 29, 2022 4:10 pm
by dane
Ah! You had me in a flashback there.

In the guiitems file, what's the difference between the various items - from list, filter list, download history, search list? I get not to fool with sizes and age, but what about the others?

Also, for every .db3 file there seems to be a .db3-shm & .db3-wal. Sqlite doesn't want anything to do with these - are they backups, indexes, or something?

Thanks for being so open about this.
DaDane

Re: Edit search tab listing

PostPosted: Sat Jan 29, 2022 5:23 pm
by itimpi
dane wrote:Also, for every .db3 file there seems to be a .db3-shm & .db3-wal. Sqlite doesn't want anything to do with these - are they backups, indexes, or something?
DaDane

Those files are created automatically as part of the way SQLite commits updates. Most of the time they are transient and then disappear once all the database updates are fully committed.

Re: Edit search tab listing

PostPosted: Sun Jan 30, 2022 12:17 am
by Quade
In the guiitems file, what's the difference between the various items - from list, filter list, download history, search list? I get not to fool with sizes and age, but what about the others?


The search tab has a distinct list from the post list, files list and download list. The one you probably want to monitor is the "search list".

Re: Edit search tab listing

PostPosted: Sun Jan 30, 2022 9:47 am
by dane
Thanks Quade and thanks too to you itimpi

DaDane