Game is kinda nice , cant wait for the next version.
To the dev maybe your should make something like this, for the next versions?
00build.rpy
archive("scripts", "all")
archive("images", "all")
archive("audio", "all")
# Put script files into the scripts archive.
classify("game/**.rpy", "scripts")
classify("game/**.rpyc", "scripts")
# Put images into the images archive.
classify("game/**.jpg", "images")
classify("game/**.png", "images")
classify("game/**.webp", "images")
classify("game/**.webm", "images")
# Put audio into the audio archive.
classify("game/**.webm", "audio")
classify("game/**.ogg", "audio")
classify("game/**.mp3", "audio")
classify("game/**.wav", "audio")