Skip to content

Commit

Permalink
added public key fingerprint field
Browse files Browse the repository at this point in the history
  • Loading branch information
vishnuraghavb committed Jan 26, 2021
1 parent 1e74451 commit 9478b06
Show file tree
Hide file tree
Showing 5 changed files with 3,101 additions and 2,832 deletions.
8 changes: 4 additions & 4 deletions components/FeaturedContentLoader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@
<script>
import { convertFileToBuffer } from 'id3-parser/lib/universal/helpers'
import { parse } from 'id3-parser'
import pdfjs from 'pdfjs-dist'
import pdfjsWorker from 'pdfjs-dist/build/pdf.worker.entry'
const pdfjs = require('pdfjs-dist/build/pdf.min')
const pdfjsWorker = require('pdfjs-dist/build/pdf.worker.entry')
pdfjs.GlobalWorkerOptions.workerSrc = pdfjsWorker
pdfjs.disableWorker = true
pdfjs.workerSrc = false
export default {
props: [
'featured',
Expand Down
8 changes: 4 additions & 4 deletions components/Vcard.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<pre v-show="false" ref="vCard">
<pre v-show="false" ref="vCard">
BEGIN:VCARD
VERSION:3.0
N:{{ vCard.FN }};;;;
Expand All @@ -10,13 +10,13 @@ TEL;TYPE=work,pref:{{ vCard.TEL1 }}
TEL;TYPE=work:{{ vCard.TEL2 }}
EMAIL;TYPE=work:{{ vCard.EMAIL }}
URL:{{ vCard.URL }}
KEY:OPENPGP4FPR:{{ vCard.KEY }}
UID:{{ vCard.UID }}
END:VCARD</pre
>
END:VCARD</pre>
</template>

<script>
export default {
props: ['vCard'],
props: [ 'vCard' ],
}
</script>
Loading

0 comments on commit 9478b06

Please sign in to comment.