Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modified URLs for Feature Suggestion #170 #172

Merged
merged 6 commits into from
Jul 27, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Incorporated feature #151
  • Loading branch information
epizzarello committed Jul 19, 2022
commit b398451e1d001843be960ebc3462c381e672c430
7 changes: 6 additions & 1 deletion weather-cal-code.js
Original file line number Diff line number Diff line change
@@ -1172,7 +1172,7 @@ const weatherCal = {
colorItem.textColor = reminder.calendar.color
}

if (reminder.isOverdue) { title.textColor = Color.red() }
if (reminder.isOverdue) { title.textColor = new Color(reminderSettings.overdueColor || "ff3b30") }
if (reminder.isOverdue || !reminder.dueDate) { continue }

let timeText
@@ -2237,6 +2237,11 @@ const weatherCal = {
name: "Show overdue reminders",
type: "bool",
},
overdueColor: {
val: "ff3b30",
name: "Overdue Color",
description: "The hex code color value for overdue reminders. Leave blank for the default red.",
},
todayOnly: {
val: false,
name: "Hide reminders due after today",