Closed efaulhaber closed 3 months ago
That's expected behavior :) The program gets updated when you finish workouts, and it runs the scripts. So, if you change weights, reps, timer, RPE, etc in progress
, it rewrites the program text - because the program text is also a reflection of the current state of a program. I thought about having the program text and the program state separated, but couldn't find a non-confusing and easy-to-use way to do so...
progress: lp(5kg)
is a linear progression, so it adds 5lb to the current weight, but not to 1RM. Usually you want to update 1RM during 1RM testing, which doesn't happen every workout. So yeah, it will rewrite your 60% of 1RM to something like 75kg after applying the progression.
And if you don't like that - you can always switch to a custom script, which you did :)
I see, thanks for the quick reply! I guess it would be nice to add to the docs that percentages will be replaced? Or did I just miss that?
Btw, would you be interested in adding more popular programs to the list of built-in programs? I implemented Madcow 5x5 and 5/3/1 Boring But Big, and I'd be happy to give them to you once I've tested them in the gym.
I guess it would be nice to add to the docs that percentages will be replaced? Or did I just miss that?
Maybe I missed it, will check!
I implemented Madcow 5x5 and 5/3/1 Boring But Big, and I'd be happy to give them to you once I've tested them in the gym.
Oh yeah, that'd be great, thanks!
I just started using the app (I'm absolutely stoked btw) and wrote down my current program (Madcow 5x5).
Current behavior
It's using percentages (of 5RM, but whatever), so I wrote it like this:
I guess what happens when I finish the exercise is that the variable
weight
is increased, which then overwrites the percentage numbers in the program to:As a workaround, I wrote a custom progress script, which seems to work as expected:
Am I overlooking something? Or is this the current behavior?
Expected behavior
If it is the current behavior, I'd suggest the following feature:
1rm
is increased by the same progress increment.So, e.g., this exercise
where 50% is of the 1rm
120kg
, after a completed set would be changed towhere 50% is now of the 1rm
125kg
.I'm sorry if this is bullshit. As I said, it's my very first time using Liftosaur.