Merge branch 'main' into fastlink-to-original-pdf

This commit is contained in:
Billy Lo 2021-10-25 17:28:00 -04:00
commit 1c53c63b57
7 changed files with 20 additions and 7 deletions

View File

@ -45,6 +45,7 @@ const options = [
{ label: 'Ontario', value: 'https://covid19.ontariohealth.ca'},
{ label: 'Newfoundland and Labrador', value: 'https://vaccineportal.nlchi.nl.ca/'},
{ label: 'Northwest Territories', value: 'https://www.gov.nt.ca/covid-19/en/request/proof-vaccination'},
{ label: 'Nunavut', value: 'https://gov.nu.ca/sites/default/files/covid_proof_of_vaccination_qa_for_nunavut_october_14_2021.pdf'},
{ label: 'Nova Scotia', value: 'https://novascotia.flow.canimmunize.ca/en/portal'},
{ label: 'Prince Edward Island', value: 'https://pei.flow.canimmunize.ca/en/portal'},
{ label: 'Québec', value: 'https://covid19.quebec.ca/PreuveVaccinale'},

View File

@ -32,7 +32,7 @@ function Page(props: PageProps): JSX.Element {
<a href="https://github.com/billylo1/covidpass" className="underline">{t('common:gitHub')}</a>
<a href="https://vaccine-ontario.ca" className="underline">{t('common:returnToMainSite')}</a>
</nav>
<div className="flex pt-4 flex-row space-x-4 justify-center text-md flex-wrap">Last updated: 2021-10-23 (v2.2.2)</div>
<div className="flex pt-4 flex-row space-x-4 justify-center text-md flex-wrap">Last updated: 2021-10-23 (v2.2.3)</div>
</footer>
</main>
</div>

View File

@ -1,6 +1,6 @@
{
"name": "grassroots_covidpass",
"version": "2.2.2",
"version": "2.2.3",
"author": "Billy Lo <billy@vaccine-ontario.ca>",
"license": "MIT",
"private": false,

View File

@ -82,8 +82,9 @@ function Index(): JSX.Element {
<div className="region-card">British Columbia</div>
<div className="region-card">Ontario</div>
<div className="region-card">Newfoundland and Labrador</div>
<div className="region-card">Northwest Territories</div>
<div className="region-card">Northwest Territories</div>
<div className="region-card">Nova Scotia</div>
<div className="region-card">Nunavut</div>
<div className="region-card">Prince Edward Island</div>
<div className="region-card">Québec</div>
<div className="region-card">Saskatchewan</div>
@ -105,12 +106,12 @@ function Index(): JSX.Element {
<div className="region-card">Virginia</div>
</div> */}
<b>{displayPassCount}</b><br/><br/>
<b>Native support for Android - COVID card in your Google Pay wallet</b> - Oct 20th update:
<b>Nunavut support added</b> - Oct 25th update:
<br />
<br />
<ul className="list-decimal list-outside" style={{ marginLeft: '20px' }}>
<li>Thank you very much to the Government of Nunavut for proactively reaching out to us to allow us to add support for Nunavummiut!</li>
<li>(Often-requested) support added for importing proof-of-vaccination into Google Pay on Android 8.1+</li>
<li>Android users can also add a shortcut to your home screen to access your COVID card with a single tap</li>
<li>You can now scan QR codes directly off of paper or a screen with your camera, eliminating the need to upload PDFs or pictures</li>
<li>Support added for importing QR codes from images as well as from PDFs</li>
</ul><br />

View File

@ -28,7 +28,7 @@ familyA: Yes. You can save multiple Apple Wallet, Google Pay, or Photo cards on
freeQ: Is this free and non-commercial?
freeA: Similar to %s, there are no commercial interests. Just volunteers trying to do our part to help the community.
otherProvincesQ: How about support for other provinces or US states?
otherProvincesA: We now have support for Ontario, British Columbia, Québec, Alberta, Saskatchewan, Nova Scotia, Yukon, Northwest Territories, Newfoundland and Labrador, Prince Edward Island, California, New York, New Jersey, Louisiana, Hawaii, Virginia, Utah, Kentucky, Oklahoma, New Mexico, Nevada, Connecticut, and Delaware QR codes. If you have a QR code that is not currently supported by our app, please contact us at %s
otherProvincesA: We now have support for Ontario, British Columbia, Québec, Alberta, Saskatchewan, Nova Scotia, Yukon, Northwest Territories, Nunavut, Newfoundland and Labrador, Prince Edward Island, California, New York, New Jersey, Louisiana, Hawaii, Virginia, Utah, Kentucky, Oklahoma, New Mexico, Nevada, Connecticut, and Delaware QR codes. If you have a QR code that is not currently supported by our app, please contact us at %s
appleWatchQ: How about Apple Watch?
appleWatchA: If you have iCloud sync enabled, you will see the pass on the watch too. Please be aware though that the new QR codes may be too large to display accurately on older Apple Watches due to their screen size.
whyQ: Why have we taken time to build this?

View File

@ -336,6 +336,17 @@ export const issuers = [
y: "RWUlC2s1aEdminnoqyMxtyU4fVlsDLJt36feT0qsJmU",
date: 1634299350636 }
]
},
{
id: "ca.nu",
display: "Nunavut",
iss: "https://pvc.gov.nu.ca/pvc",
keys: [
{ kid: "MXH6EAfEDZ0JH46r3j5axkCTo-QdreVtEXE-dbvydUU",
alg: "ES256", kty: "EC", crv: "P-256", use: "sig",
x: "TW2mjeWs2JRBDblltiq2W00M_Q3gXnCl5FlLKIKV3oQ",
y: "sbraf7XcT2iH7uLUtH_grf5eVF7LltpVb9z8E31WGj4" },
]
}
];

View File

@ -3,7 +3,7 @@ import { Integrations } from '@sentry/tracing';
export const initSentry = () => {
SentryModule.init({
release: 'grassroots_covidpass@2.2.2', // App version. Needs to be manually updated as we go unless we make the build smarter
release: 'grassroots_covidpass@2.2.3', // App version. Needs to be manually updated as we go unless we make the build smarter
dsn: 'https://7120dcf8548c4c5cb148cdde2ed6a778@o1015766.ingest.sentry.io/5981424',
integrations: [
new Integrations.BrowserTracing(),