Renamed Description

The contents of the post were still called Description now they are Contents to match the dialog.

6 March 2026 · Mark

Post Description Wrong

The notes Contents were still is the capatalize function, commented out now. So This Should be Working 😀

6 March 2026 · Mark

Segmentation Fault On Linux

So it isn’t just Mac that is throwing up an error, also happening one linux. now i have managed to check the code on Debian it is clear something is wrong with the installation or calls in both. it seems to be related to QApplication, but i can’t be arsed to track it down any further. time for a rewrite using QWidget only.

6 March 2026 · Mark

Check For Directory

Create a directory if it doesn’t exist: import os.path isdir = os.path.isdir(postpath) if not isdir: os.mkdir(postpath)

4 March 2026 · Mark

Summer Time Bug Fix

The problem The date: variable in HUGO needs to be actual, not in the past, for the post to register. I don’t know yet why but that isn’t important, only the solution is so… The correct post date format in YAML is: date: 2025-04-01T19:37:18+02:00 The last part of the string +02:00 indicates UTC1 plus 2 hours, which for my current location is CET +1 2. The first solution After a little searching, for the wrong thing (UTC offsets) I came across the Python class: time and the functiontime.daylight specifically. This boolean function returns True if it is Summer Time and False if it is Winter Time, which allows to check the state in an if statement, thus: ...

1 April 2025 · Mark

Summer Time Bug

A bit of a post winter bug My little Hugo post creation app stopped working correctly this morning. The reason was the date formatting in the post date: variable. The code had the date formatted for GMT + 1 and now we have GMT + 2. I haven’t checked what was happening, but assume the date must be in the future for it to fail to post. I can’t see it as a date in the past, which seems more logical given +1 instead of +2. ...

30 March 2025 · Mark