bumped version to 2.2.6

This commit is contained in:
Billy Lo 2021-11-01 09:48:56 -04:00
parent 71e5ca77cb
commit e8806c7631
5 changed files with 7 additions and 4 deletions

1
.gitignore vendored
View File

@ -35,3 +35,4 @@ yarn-error.log*
*.local
*.local
.env.local
build2.sh

View File

@ -3,3 +3,4 @@ docker push gcr.io/broadcast2patients/covidpass2
gcloud config set project broadcast2patients
gcloud config set run/region us-east1
gcloud run deploy covidpass2 --image gcr.io/broadcast2patients/covidpass2:latest --platform managed

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-25 (v2.2.5)</div>
<div className="flex pt-4 flex-row space-x-4 justify-center text-md flex-wrap">Last updated: 2021-11-01 (v2.2.6)</div>
</footer>
</main>
</div>

View File

@ -107,13 +107,14 @@ function Index(): JSX.Element {
<div className="region-card">Virginia</div>
</div> */}
<b>{displayPassCount}</b><br/><br/>
<b>Nunavut and Manitoba support added</b> - Oct 25th update:
Nov 1 morning update:
<br />
<br />
<ul className="list-decimal list-outside" style={{ marginLeft: '20px' }}>
<li><b>New for iPhone users: You can now quickly access the original PDF receipt from your wallet pass</b> (by tapping ... on the top right to see details). If you have already imported your pass, just delete the old one and re-import to get this convenience feature.</li>
<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>Support for newly-released Manitoba federal-standard QR codes</li>
<li>(Often-requested) support added for importing proof-of-vaccination into Google Pay on Android 8.1+</li>
<li>(Often-requested) support added for importing proof-of-vaccination into <b>Google Pay</b> on Android 8.1+</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

@ -3,7 +3,7 @@ import { Integrations } from '@sentry/tracing';
export const initSentry = () => {
SentryModule.init({
release: 'grassroots_covidpass@2.2.5', // App version. Needs to be manually updated as we go unless we make the build smarter
release: 'grassroots_covidpass@2.2.6', // App version. Needs to be manually updated as we go unless we make the build smarter
dsn: 'https://51370d7af0994761b465bc148129c1de@o997324.ingest.sentry.io/5955697', // this is the sponsored account for use going forward
integrations: [
new Integrations.BrowserTracing(),