If for any reason anyone else wants a way to switch from unlocked gallery to unlocked scenes only gallery, just paste this (be sure it's indented and that those are spaces not tabs) at the top of script.rpy:
init python:
persistent.FILLMAHGALLERY = False
def FLIPGALLERY():
persistent.FILLMAHGALLERY = not persistent.FILLMAHGALLERY
Then open Menus.rpy, search for renpy.seen_label(gallery_picked
) on line 607 (I might actually have messed with line numbers tinkering with the file the other day) and add an or statetement with the above persistent.flag.
The line should then read:
if renpy.seen_label(gallery_picked) or persistent.FILLMAHGALLERY:
(Remember to keep the original indentation here)
This way when you're in the console in the gallery you can call FLIPGALLERY() and it should switch between full unlock and only unlocked scenes. To reset the unlock progress, the command is
persistent._clear(progress=True).
Obviously you need unrpyc to get an .rpy file since the last version came with only .rpyc if I'm not mistaken.
It's not that useful of a thing, but might be interesting for someone else.