63993acfee | ||
---|---|---|
archive | ||
attachments | ||
priorities | ||
tags | ||
README.md |
README.md
2020-12-22
AdHoc
- Quirk that prevented tests from running
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
- Solution
Pulls
- #2100 - Expand Local Notifications -
debugging
- Resolved the weird bug where adding
MarshalJSON()
to theNotification
struct would result in a fail- Initially I thought that the problem was because the
signal.send()
was handling thejson.Marshalling
in a strange way - The real bug was in
signal.send()
and caused by the newBody.Type
field not being set. - This wasn't immediately obvious because
signal.send()
uses a logger to record errors and the logger wasn't printing to the terminal, therefore a failed marshal resulted in an error not about the thing that had actually gone wrong, adding lots ofspew.Dumps()
helped - A minor note the
signal
package has some weird structure, for example setting and getting a package var as a kind of global, therefore maintaining an implicit "package state".
- Initially I thought that the problem was because the
- Resolved the weird bug where adding
2020-12-21
Pulls
- #2100 - Expand Local Notifications -
debugging
- Working on a weird bug where adding
MarshalJSON()
to theNotification
struct would result in a fail.
- Working on a weird bug where adding
Review
- #2046 - Communities -
approved
- status-im/specs#150 - Feature/org channels -
feedback
- Discussing primarily the functionality related to the
grant
concept - details
- Discussing primarily the functionality related to the
2020-12-18
Ad Hoc
- Resolve weird issue on my machine where make vendor has started throwing
modvendor: command not found
- Caused by an Apple update https://stackoverflow.com/a/59138750/1700106
- Solution was to rename
./bash_profile
to./zprofile
- Compile list of known technical debt in
status-go
- Document Here
- Based on the
//TODO
items in the code - Gone through all directories up to
protocol
, need to finishprotocol
, allprotocol
sub directories and all remaining directories
Review
- #2046 - Communities -
feedback
- Initial review require a deeper review of the core functionality
Schedule
- 14:00 GMT - Core Retro
- https://meet.google.com/hqw-nsfk-xoq
- A review / summary of the year.
2020-12-17
Pulls
- #2100 - Expand Local Notifications -
commits
,research
- https://notes.status.im/notifications-android
- Currently have a bug that I think is caused by a the jsonMarshal func not working as intented, need to resolve this next before proceeding
2020-12-16
Pulls
- #2051 - Profile Images -
commits
- Related to debugging
- Issue finally resolved by Cammellos
Issues
Schedule
- 14:00 GMT - Samuel & Andrea 1-to-1
- https://meet.google.com/rhy-trwc-ybb
- Notes :
- Profile Images
status-go
notifications improvement- Adding
Notifications
field toMessageResponse
struct and parsing in thePublisherSignalHandler
- Adding