Skip to content

Commit

Permalink
chore(doc): remove .DS_Store files from doc and doc/img directories
Browse files Browse the repository at this point in the history
refactor(config.yaml): update km-10 value from 69k to 75k for consistency
refactor(plan.go): adjust training session details in CreatePlan function for better clarity and accuracy
  • Loading branch information
jandroav committed May 12, 2024
1 parent ca0c692 commit 6ffe84c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Binary file removed doc/.DS_Store
Binary file not shown.
Binary file removed doc/img/.DS_Store
Binary file not shown.
8 changes: 4 additions & 4 deletions pkg/common/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,15 @@ planConfig:
c2-42: 3S + 3 X 2U C/1 MIN S + 3 X 1I C/2 MIN S + 3 X 400 R C/400 S + 3S (16k)
c1-21: 18S (18k)
c2-21: 3S + 3 X 2U C/1 MIN S + 3 X 1I C/2 MIN S + 3 X 400 R C/400 S + 3S (16k)
c1-10: 3S + 5 X 2U C/1 MIN + 3S (11k)
c1-10: 3S + 5 X 2U C/1 MIN + 3S (16k)
c2-10: 4S + 6 x 1I C/400 TR + 2S (12k)
pre1: 16S
pre2: 3S + 9U + 3S
km-pre:
km-42: 151k
km-21: 79k
km-10: 69k
s10:
km-10: 75k
s10:
c1-42: 10S + 10M + 2U + 10M + 2U + 3S (37k)
c2-42: 3S + 4 X 3U C/2 MIN S + 3S (18k)
c1-21: 3S + 5M + 2U + 5M + 2U + 2S (19k)
Expand All @@ -128,7 +128,7 @@ planConfig:
km-42: 155k
km-21: 81k
km-10: 69k
s11:
s11:
c1-42: 3S + 3 X 3U C/2 MIN S + 16E (31k)
c2-42: 3S + 3 X 3U C/2 MIN S + 3S (17k)
c1-21: 3S + 3 X 3U C/2 MIN S + 3S (16k)
Expand Down
4 changes: 2 additions & 2 deletions pkg/plan/plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ func CreatePlan(vtrainConfig structs.VtrainConfig, distance string, raceDate str
// Print or save the training sessions and scheduled dates
fmt.Println(color.Colorize(color.Yellow, "\nSemana "+strconv.Itoa(week)))
if week != 12 {
fmt.Printf("\tLunes\t\t(%s): 5S + 10 A/D + FUERZA + 3S\n", startDate.AddDate(0, 0, (week-1)*7+1).Format("2006-01-02"))
fmt.Printf("\tLunes\t\t(%s): 12S + 8 A/D\n", startDate.AddDate(0, 0, (week-1)*7+1).Format("2006-01-02"))
} else {
fmt.Printf("\tLunes\t\t(%s): 10S\n", startDate.AddDate(0, 0, (week-1)*7+1).Format("2006-01-02"))
}
Expand All @@ -360,7 +360,7 @@ func CreatePlan(vtrainConfig structs.VtrainConfig, distance string, raceDate str
fmt.Println(color.Colorize(color.Blue, "\tJueves\t\t("+startDate.AddDate(0, 0, (week-1)*7+4).Format("2006-01-02")+"): "+"Descanso"))
}
if week != 12 {
fmt.Printf("\tViernes\t\t(%s): 5S + 10 A/D + FUERZA + 3S\n", startDate.AddDate(0, 0, (week-1)*7+5).Format("2006-01-02"))
fmt.Printf("\tViernes\t\t(%s): 8S + 10 A/D + FUERZA\n", startDate.AddDate(0, 0, (week-1)*7+5).Format("2006-01-02"))
} else {
fmt.Println(color.Colorize(color.Blue, "\tViernes\t\t("+startDate.AddDate(0, 0, (week-1)*7+5).Format("2006-01-02")+"): "+"Descanso"))
}
Expand Down

0 comments on commit 6ffe84c

Please sign in to comment.