Why on earth is there no option to delete saves? Even the thing when you hover over a save and press delete isn't working and that should be a feature that's in renpy by default.
you can add the delete key back in if you add
key "save_delete" action FileDelete(slot) into screens.rpy below
style "slot_name_text" line 801 so it looks like
Python:
if FileSaveName(slot):
$ fn = FileSaveName(slot)
if fn and ("-" in fn):
$ y = fn.split("-")
text fn:
style "slot_name_text"
key "save_delete" action FileDelete(slot)
No idea if it needs to be there but I tested it and it works there. I'm in habit of replacing any and all save naming stuff no idea why folks don't just rename the page title. At least the bad mustard code doesn't completly break keyboard navigation like the persistant text input box ones that are set to grab all key input.