Feature Request: As a story developer, I would like to only need to update the checkpoint column when a change happens (Improved Checkpoints (Quality of Life improvement)) #16
Currently, you need a checkpoint on every row in the spreadsheet and if you forget one, and someone happens to try to use the rewind feature while on that 'screen', it won't work and gives no error.
Instead of setting it with each line, why don't we only set it if it's changed?
So when we see 0 we set it to zero.
And we leave it set to 0 unless we see a different number.
( if !currentCheckpoint && !null )
This means authors would only need to make an entry for changes, making an entry on every line wouldn't cause any issues (setting it to the same value makes no change), but forgetting to add an entry won't break it.
Currently, you need a checkpoint on every row in the spreadsheet and if you forget one, and someone happens to try to use the rewind feature while on that 'screen', it won't work and gives no error.
Instead of setting it with each line, why don't we only set it if it's changed?
So when we see
0
we set it to zero. And we leave it set to0
unless we see a different number.( if !currentCheckpoint && !null )
This means authors would only need to make an entry for changes, making an entry on every line wouldn't cause any issues (setting it to the same value makes no change), but forgetting to add an entry won't break it.