Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for public release #65

Merged
merged 1 commit into from
Feb 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/favicon.xcf
Binary file not shown.
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{
"name": "washtenaw-id-webapp",
"license": "GPL-3.0-only",
"version": "0.1.0",
"bugs": {
"url": "https://github.com/washtenawIdtreble/washtenaw-id-webapp/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/washtenawIdtreble/washtenaw-id-webapp.git"
},
"private": true,
"dependencies": {
"@faker-js/faker": "^7.6.0",
Expand Down
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon.ico
Binary file not shown.
Binary file added public/icon-192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icon-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 9 additions & 7 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!--Don't change the order of these tags-->
<meta charset="utf-8"/>
<link href="%PUBLIC_URL%/favicon.ico" rel="icon"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<meta content="#000000" name="theme-color"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!---->
<link rel="icon" href="%PUBLIC_URL%/favicon.ico"/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/apple-touch-icon.png">
<link rel="manifest" href="/manifest.json">
<meta name="theme-color" content="#000000"/>
<meta
content="Web site created using create-react-app"
name="description"
content="Find out where to use your Washtenaw County ID and report businesses that refuse to accept it"
/>
<link href="%PUBLIC_URL%/logo192.png" rel="apple-touch-icon"/>
<link href="%PUBLIC_URL%/manifest.json" rel="manifest"/>
<title>React App</title>
<title>Washtenaw ID Project</title>
<script>
if (window.location.host.endsWith("local-gov.id") && window.location.protocol === "http:") {
window.location.assign("https://washtenaw.local-gov.id");
Expand Down
Binary file removed public/logo192.png
Binary file not shown.
Binary file removed public/logo512.png
Binary file not shown.
18 changes: 7 additions & 11 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,21 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"short_name": "ID App",
"name": "Washtenaw ID App",
"description": "Learn about how to use the Washtenaw County ID card",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"src": "/icon-192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"src": "/icon-512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
"background_color": "#062d47",
"theme_color": "#062d47"
}
Loading