Compare commits
2 commits
72b39bc00c
...
b9de1004df
Author | SHA1 | Date | |
---|---|---|---|
b9de1004df | |||
fcb213e058 |
2 changed files with 4 additions and 3 deletions
|
@ -146,7 +146,7 @@ compound_project_tasks = {
|
||||||
"Find It Cambridge — Contributing back to the community": ["Find It Contrib"],
|
"Find It Cambridge — Contributing back to the community": ["Find It Contrib"],
|
||||||
"Find It Cambridge — Planning": ["Find It project management"],
|
"Find It Cambridge — Planning": ["Find It project management"],
|
||||||
"Internal — Contributing back to the community": ["Contrib", "Agaric: contrib", "Contributing", "Agaric contrib", "Agaric contributions"],
|
"Internal — Contributing back to the community": ["Contrib", "Agaric: contrib", "Contributing", "Agaric contrib", "Agaric contributions"],
|
||||||
"Internal — Conferences & Meetups": ["Conference", "Cons", "Camps", "Conferences", "meetup", "meetups"], # Note camp is not here because that maps to Near North camp
|
"Internal — Conferences & Meetups": ["Conference", "Cons", "Camps", "Camp", "Conferences", "meetup", "meetups"],
|
||||||
"Internal — Content": ["Agaric site content", "Agaric content", "content", "blog", "blogging", "writing", "content writing"],
|
"Internal — Content": ["Agaric site content", "Agaric content", "content", "blog", "blogging", "writing", "content writing"],
|
||||||
"Internal — Documentation": ["documentation", "docs", "documenting"],
|
"Internal — Documentation": ["documentation", "docs", "documenting"],
|
||||||
"Internal — Marketing": ["marketing", "Agaric marketing", "promotion", "Agaric promotion"],
|
"Internal — Marketing": ["marketing", "Agaric marketing", "promotion", "Agaric promotion"],
|
||||||
|
@ -229,7 +229,7 @@ harvest_project_names = {
|
||||||
"C-Team support": ["ZEIT", "ZEIT ONLINE", "ZEIT Upgrade", "Zeit D9"],
|
"C-Team support": ["ZEIT", "ZEIT ONLINE", "ZEIT Upgrade", "Zeit D9"],
|
||||||
}
|
}
|
||||||
other_project_names = {
|
other_project_names = {
|
||||||
"Near North camp": ["Near North Camp", "Near North defense", "Encampment support", "Camp support", "NN camp defense", "NN camp", "NN defense", "Near North camp defense", "Camp", "Near North", "Encampment Defense"],
|
"Near North camp": ["Near North Camp", "Near North defense", "Encampment support", "Camp support", "NN camp defense", "NN camp", "NN defense", "Near North camp defense", "Near North", "Encampment Defense"],
|
||||||
"Personal": ["Personal/external", "Personal / external", "External"],
|
"Personal": ["Personal/external", "Personal / external", "External"],
|
||||||
"Tzedakah": ["Community support"],
|
"Tzedakah": ["Community support"],
|
||||||
"PWGD": ["People Who Give a Damn", "PWGD Inc"],
|
"PWGD": ["People Who Give a Damn", "PWGD Inc"],
|
||||||
|
|
|
@ -37,7 +37,8 @@ def pomodoro_logpath():
|
||||||
|
|
||||||
def pomodoro_latest_recorded(timestamp = None):
|
def pomodoro_latest_recorded(timestamp = None):
|
||||||
if timestamp:
|
if timestamp:
|
||||||
config.set('pomodoro', 'second_latest_recorded', pomodoro.get('latest_recorded', None))
|
if pomodoro.get('latest_recorded', None):
|
||||||
|
config.set('pomodoro', 'second_latest_recorded', pomodoro.get('latest_recorded'))
|
||||||
config.set('pomodoro', 'latest_recorded', str(timestamp))
|
config.set('pomodoro', 'latest_recorded', str(timestamp))
|
||||||
write()
|
write()
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue