Is your question or issue not listed? Feel free to reach out!
defaults write nl.nielsmouthaan.daily.main enableDebugLog true
zip -rj ~/Desktop/DailyLogs.zip ~/Library/Containers/nl.nielsmouthaan.daily.main/Data/Library/Logs/Daily/.
DailyLogs.zip
on your desktop. Please attach it to your email.defaults write nl.nielsmouthaan.daily.main enableDebugLog false
Shift+Control+D
to open the dashboard.Shift+Control+X
to manually add time for today.Shift+Control+R
to toggle time tracking.Shift+Control+Z
to silently track time.Shift+Control+F
to focus the visible dialog.Shift+Control+S
to allocate time to the selected activity.Shift+Control+C
to close the visible dialog.zip -rj ~/Desktop/DailyBackup.zip ~/Library/Containers/nl.nielsmouthaan.daily.main/Data/Library/Daily
DailyBackup.zip
should now be located in your Desktop folder containing Daily's data files.unzip -o ~/Desktop/DailyBackup.zip -d ~/Library/Containers/nl.nielsmouthaan.daily.main/Data/Library/Daily
rm -rf ~/Library/Containers/nl.nielsmouthaan.daily.main
osascript
command. For example:osascript -e 'tell application "Daily" to print json with report "summary" from (current date) - (1 * days) to (current date)'
tell application "Daily"
set InOneHour to (current date) + (1 * hours)
get registration mode
set registration mode "off"
set registration mode "silent" with activity "Meeting"
set registration mode "silent" with activity "Diner" in "Food"
set registration mode "silent" with activity "Customer presentation" that ends InOneHour
set registration mode "ask"
end tell
tell application "Daily"
set Yesterday to (current date) - (1 * days)
add "Documentation"
add "Homework" with duration 10
add "Phone call" with duration 10 for Yesterday
add "Diner" in "Food" with duration 20
edit "Lunch" with duration 15
edit "Coffee" with duration 15 for Yesterday
edit "Diner" in "Food" with duration 15 for Yesterday
end tell
tell application "Daily"
add group "Food"
delete group "Food"
add activity "Diner"
add activity "Diner" in "Food"
delete activity "Diner"
delete activity "Diner" in "Food"
rename activity "Diner" to "Breakfast"
merge activity "Diner" into "Breakfast"
archive activity "Breakfast"
unarchive activity "Coffee"
archive group "Food"
unarchive group "Food"
move activity "Diner" in "Food" to "Food & Drinks"
ungroup activity "Diner" in "Food"
end tell
tell application "Daily"
set LastWeek to (current date) - (7 * days)
set Today to (current date)
set Location to "/Users/niels/Desktop/"
export csv with report "summary" from LastWeek to Today to file (POSIX file (Location & "summary.csv")) with time rounding
export csv with report "daily" from LastWeek to Today to file (POSIX file (Location & "daily.csv")) with time rounding
export csv with report "timesheet" from LastWeek to Today to file (POSIX file (Location & "timesheet.csv"))
export csv with report "timesheet" from LastWeek to Today to file (POSIX file (Location & "timesheet.csv")) for group "Food"
export json with report "summary" from LastWeek to Today with duration format "text" to file (POSIX file (Location & "summary.json")) with time rounding
export json with report "timesheet" from LastWeek to Today with duration format "seconds" to file (POSIX file (Location & "timesheet.json")) with time rounding
export json with report "timesheet" from LastWeek to Today with duration format "seconds" to file (POSIX file (Location & "timesheet.json")) for group "Food"
export json with report "timesheet" from LastWeek to Today with duration format "seconds" to file (POSIX file (Location & "timesheet.json")) with groups as separate values and archived activities excluded
print json with report "summary" from LastWeek to Today with duration format "text" with time rounding
print json with report "timesheet" from LastWeek to Today with duration format "seconds" with time rounding
print json with report "timesheet" from LastWeek to Today with duration format "seconds" for group "Food"
print json with report "timesheet" from LastWeek to Today with duration format "seconds" with groups as separate values and archived activities excluded
export pdf with report "timesheet" from LastWeek to Today to file (POSIX file (Location & "timesheet.pdf"))
export pdf with report "timesheet" from LastWeek to Today to file (POSIX file (Location & "timesheet.pdf")) for group "Food" with time rounding
export pdf with report "summary" from LastWeek to Today to file (POSIX file (Location & "summary.pdf")) with groups as separate values and archived activities excluded
export toggl from LastWeek to Today with email "[email protected]" using format "%client%: %project%" and fallback "client" with tags "" billable "yes" to file (POSIX file (Location & "toggl.csv"))
export activities to file (POSIX file (Location & "activities.json"))
export activities to file (POSIX file (Location & "activities.json")) with groups as separate values and archived activities excluded
export activities to file (POSIX file (Location & "activities.json")) for group "Food"
print activities
print activities with groups as separate values and archived activities excluded
print activities for group "Food"
end tell
Send your question to [email protected] and we will get back to you.