Joaqim Planstedt
Joaqim Planstedt
I have added @FichteFoll's suggestion of passing ranges of episodes to *play* function. His examples: > `play 12 1-` play show 12 from episode 1 onwards. > `play 12 -`...
I'd rather not have a ~/.castget folder if I can avoid it. Channel directory can now be changed with: channel=/home/user/.config/castget/channels For now the setting is just named "channel" to follow...
Since index=0 evaluates as false, the last element will never be removed in _components. https://github.com/soloschenko-grigoriy/gamedev-patterns-ts/blob/148f337040b8285a3debf032e137a9441591ed23/src/utils/ecs/entity.ts#L42 should be: ```ts if (toRemove && index !== undefined) { ``` See: https://github.com/joaqim/gamedev-patterns-ts/commit/e84cbd06485dca97804ab5b47b358dbc2df9302d Where I...