Remove unnecessary files from distributable zip.

This commit is contained in:
shru 2018-12-29 14:28:20 -05:00
parent 43b22b315a
commit 5150f684a0
4 changed files with 6 additions and 15 deletions

View file

@ -18,5 +18,6 @@ build-and-release:
- love-release -W - love-release -W
# II - Release to itch.io # II - Release to itch.io
- cd releases - cd releases
- FILE=$(ls *-win32.zip) ; butler push "$FILE" "$ITCHIO_USER/$ITCHIO_GAME:win32-$CHANNEL" - FILE=$(ls *-win32.zip) ;
# - FILE=$(ls *-win64.zip) ; butler push "$FILE" "$ITCHIO_USER/$ITCHIO_GAME:win64-$CHANNEL" zip -d "$FILE" "*/lovec.exe" "*/changes.txt" "*/readme.txt" "*.ico" ;
butler push "$FILE" "$ITCHIO_USER/$ITCHIO_GAME:win32-$CHANNEL"

View file

@ -4,15 +4,14 @@ Cave Story Randomizer
Todo Todo
---- ----
- Remove Love files... lovec.exe, readme, etc.
- Trade Sequence Step B: Require random obtainable weapon, instead of always polar star and fireball. - Trade Sequence Step B: Require random obtainable weapon, instead of always polar star and fireball.
- Randomize Booster v0.8 / v2.0 - Randomize Booster v0.8 / v2.0
Issues Issues
------ ------
- [Speedrun] Random Mimiga in top left of Plantation seemingly gave +3? Probably a substition error with Life Capsule. https://youtu.be/PYhd9zhFdAk?t=5280 - Infinite Items at Chaco's?!?!
- [Speedrun] Snake in sisters fight https://youtu.be/PYhd9zhFdAk?t=4769 - [Speedrun] When missiles are replaced, sometimes text will exceed message box after "Opened the chest." text. (ie. https://youtu.be/PYhd9zhFdAk?t=4769)
- Collecting the Super Missile Launcher increases your maximum missiles by 5. This does not normally happen. - Collecting the Super Missile Launcher increases your maximum missiles by 5. This does not normally happen.
- Hell Missile Upgrade uses a unique script and won't be easy to replace. - Hell Missile Upgrade uses a unique script and won't be easy to replace.
- Trading back the Nemesis for the Blade almost certainly will be weird. - Trading back the Nemesis for the Blade almost certainly will be weird.
@ -20,7 +19,6 @@ Issues
Bugs Bugs
---- ----
- Jellyfish juice box told me I got a life capsule, then it said "Max HP increased by 5! Max HP increased by 3!" and then gave me the juice and my HP was actually the same. It's doing this every time I get the juice.
- Jenka gave me a life pot, but since I already had one, nothing happened. It even stayed in the same spot, instead of moving to the front. - Jenka gave me a life pot, but since I already had one, nothing happened. It even stayed in the same spot, instead of moving to the front.
Credits Credits

View file

@ -36,7 +36,7 @@ function C:randomize(path)
-- self:_writePlaintext(tscFiles) -- self:_writePlaintext(tscFiles)
local canNotBreakBlocks = self:_shuffleItems(tscFiles) local canNotBreakBlocks = self:_shuffleItems(tscFiles)
self:_writeModifiedData(tscFiles) self:_writeModifiedData(tscFiles)
-- self:_writePlaintext(tscFiles) self:_writePlaintext(tscFiles)
if canNotBreakBlocks then if canNotBreakBlocks then
self:_copyModifiedFirstCave() self:_copyModifiedFirstCave()
end end

View file

@ -234,14 +234,6 @@ function C:_codec(text, mode)
end end
local decoded = table.concat(chars) local decoded = table.concat(chars)
-- local t = {}
-- decoded:gsub(".",function(c) table.insert(t,c) end)
-- local near = 7
-- for i = encodingCharPosition - near, encodingCharPosition + near do
-- local c = t[i]
-- logDebug(i, c, c:byte())
-- end
return decoded return decoded
end end