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
should now be located in your Desktop folder. Please attach this file to an email containing a clear description of the issue and send it to [email protected].defaults write nl.nielsmouthaan.daily.main enableDebugLog false
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/Data/Library/Daily
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 "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
edit "Lunch" with duration 15
edit "Coffee" with duration 15 for Yesterday
end tell
tell application "Daily"
add activity "Diner"
rename activity "Diner" to "Breakfast"
merge activity "Diner" into "Breakfast"
enable activity "Breakfast"
disable activity "Coffee"
hide activity "Lunch"
unhide activity "Diner"
delete activity "Breakfast"
export activities to file POSIX file "/Volumes/Macintosh HD/Users/YourUsername/Desktop/activities.json"
print activities
end tell
tell application "Daily"
set LastWeek to (current date) - (7 * days)
set Today to (current date)
set Location to choose folder with prompt "Please select a folder where you want to store the exported files:"
export csv with report "summary" from LastWeek to Today with delimiter "," with duration format "H:mm:ss" to file POSIX path of Location & "summary.csv" with time rounding
export csv with report "daily" from LastWeek to Today with delimiter "," with duration format "minutes" to file POSIX path of Location & "daily.csv" without time rounding
export json with report "summary" from LastWeek to Today with duration format "text" to file POSIX path of Location & "summary.json" with time rounding
export json with report "daily" from LastWeek to Today with duration format "seconds" to file POSIX path of Location & "daily.json" without time rounding
print json with report "summary" from LastWeek to Today with duration format "minutes" with time rounding
end tell
Send your question to [email protected] and we will get back to you.