Howdy @Stefan, welcome to PhotoStructure!
Apologies for the latency, this post got stuck in a Discourse moderation queue (and it didnât help that I was offline for a couple days out with COVID )
Youâve raised a couple issues. Iâll work through them:
Can I change the order of the ârootâ tags on the home page?
There isnât an easy GUI pointy-clicky way to reorder root tags, but, if youâre not afraid to get a little nerdy, I can help.
The tags
table in your PhotoStructure library has an ordinal
column to determine the order on the front end. Weâre going to change the ordinal of the fs
root folder to be less than then When
.
Steps:
- Shut down PhotoStructure
- Install a SQLite database editor. https://sqlitestudio.pl/ and https://sqlitebrowser.org/ are both open source and free. Iâll show instructions for SQLite Studio below.
- Open your library database in the editor. The path will be $path-to-your-library
/.photostructure/models/db.sqlite3
- Select âTools > Open SQL editorâ
- Enter this into the âQueryâ area:
SELECT *
FROM Tag
WHERE parentId IS NULL
ORDER BY ordinal;
and hit f9 or click the âplayâ button to execute the query. You should be staring at this window:
-
Click the âordinalâ cell on the row of the tag you want to edit, and give it a value smaller than 1 (the value that âWhenâ has) (note that fractional and negative numbers are both valid). Make any other ordinal changes youâd like.
-
Commit the change by typing
Ctrl+Return
or by clicking theright below the âGrid viewâ tab. You can verify you mathed everything out correctly by replaying the first query.
-
Quit. Restart PhotoStructure.
Can I change where ânextâ and âpreviousâ goes?
Unfortunately, the current version always ignores the context of where you started browsing assetsâânextâ and âpreviousâ always go to the chronologically next and previous assets. This is a known (frustrating) bug, and will be addressed in a future version.