-
-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for VCF (and fix ICS detection) (#451)
Co-authored-by: Borewit <[email protected]>
- Loading branch information
Showing
6 changed files
with
43 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
BEGIN:VCARD | ||
VERSION:3.0 | ||
N:Gump;Forrest;;Mr.,; | ||
FN:Forrest Gump | ||
ORG:Bubba Gump Shrimp Co. | ||
TITLE:Shrimp Man | ||
PHOTO;VALUE=URI;TYPE=GIF:http://www.example.com/dir_photos/my_photo.gif | ||
TEL;TYPE=WORK,VOICE:(111) 555-1212 | ||
TEL;TYPE=HOME,VOICE:(404) 555-1212 | ||
ADR;TYPE=WORK,PREF:;;100 Waters Edge;Baytown;LA;30314;United States of America | ||
LABEL;TYPE=WORK,PREF:100 Waters Edge\nBaytown\, LA 30314\nUnited States of America | ||
ADR;TYPE=HOME:;;42 Plantation St.;Baytown;LA;30314;United States of America | ||
LABEL;TYPE=HOME:42 Plantation St.\nBaytown\, LA 30314\nUnited States of America | ||
EMAIL:[email protected] | ||
REV:2008-04-24T19:52:43Z | ||
END:VCARD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -183,7 +183,8 @@ | |
"stl", | ||
"chm", | ||
"3mf", | ||
"zst" | ||
"zst", | ||
"vcf" | ||
], | ||
"devDependencies": { | ||
"@types/node": "^13.1.4", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters