v2 #2

Merged
shoopea merged 29 commits from v2 into master 2023-08-21 20:03:11 +02:00
2 changed files with 6 additions and 6 deletions
Showing only changes of commit e07c1c4f3f - Show all commits

4
app.go
View File

@ -380,7 +380,7 @@ func (a *App) NextSchedule(now time.Time) (string, error) {
}
}
if t.Year() < now.Year() || t.Month() != now.Month() {
return "month", nil
return "monthly", nil
}
}
@ -395,7 +395,7 @@ func (a *App) NextSchedule(now time.Time) (string, error) {
ny, nw := now.ISOWeek()
ty, tw := t.ISOWeek()
if ty < ny || tw < nw {
return "month", nil
return "weekly", nil
}
}

View File

@ -1,7 +1,7 @@
// Code generated by version.sh (@generated) DO NOT EDIT.
package main
var githash = "c372d43"
var githash = "db05789"
var branch = "v2"
var buildstamp = "2023-06-30_22:15:16"
var commits = "63"
var version = "c372d43-b63 - 2023-06-30_22:15:16"
var buildstamp = "2023-07-01_12:10:14"
var commits = "64"
var version = "db05789-b64 - 2023-07-01_12:10:14"