Skip to content

Commit

Permalink
make use of theCard.note
Browse files Browse the repository at this point in the history
  • Loading branch information
or-else committed Aug 3, 2021
1 parent 8edaf62 commit f1e2455
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/thecard.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ When `JSON` is used to represent `theCard` data, it does it differently than [jC
height: 512, // integer, image height in pixels.
size: 123456 // integer, image size in bytes.
},
note: "Some notes", // string, description of a person or a topic.
//
// None of the following fields are implemented by any known client:
//
Expand All @@ -29,7 +30,7 @@ When `JSON` is used to represent `theCard` data, it does it differently than [jC
prefix: "Dr.", // prefix, such as honorary title or gender designation.
suffix: "Jr.", // suffix, such as 'Jr' or 'II'.
},
org: { // object, organisation the person or topic belongs to.
org: { // object, organization the person or topic belongs to.
fn: "Most Evil Corp", // string, formatted name of the organisation.
title: "CEO", // string, person's job title at the organisation.
},
Expand Down Expand Up @@ -62,7 +63,6 @@ When `JSON` is used to represent `theCard` data, it does it differently than [jC
m: 1, // integer, month 1..12
d: 15 // integer, day 1..31
},
note: "Some notes", // string, notes about the person or topic.
}
```

Expand Down
2 changes: 1 addition & 1 deletion server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ import (

const (
// currentVersion is the current API/protocol version
currentVersion = "0.17"
currentVersion = "0.18"
// minSupportedVersion is the minimum supported API version
minSupportedVersion = "0.16"

Expand Down

0 comments on commit f1e2455

Please sign in to comment.