Skip to content

Commit

Permalink
Update Logos
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertOstermann committed Apr 22, 2024
1 parent 6ea7635 commit 5d823d8
Show file tree
Hide file tree
Showing 12 changed files with 29 additions and 10 deletions.
Binary file added client/public/EAGLE_BALL_LOGO.ico
Binary file not shown.
Binary file added client/public/EAGLE_BALL_LOGO.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions client/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<!-- <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> -->
<link rel="icon" href="%PUBLIC_URL%/EAGLE_BALL_LOGO.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="The Maple River Basketball Website" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/android/android-launchericon-192-192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand Down
26 changes: 20 additions & 6 deletions client/public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,33 @@
"name": "Maple River Basketball",
"icons": [
{
"src": "favicon.ico",
"src": "EAGLE_BALL_LOGO.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"src": "android/android-launchericon-512-512.png",
"sizes": "512x512"
},
{
"src": "android/android-launchericon-192-192.png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
"src": "android/android-launchericon-144-144.png",
"sizes": "144x144"
},
{
"src": "android/android-launchericon-96-96.png",
"sizes": "96x96"
},
{
"src": "android/android-launchericon-72-72.png",
"sizes": "72x72"
},
{
"src": "android/android-launchericon-48-48.png",
"sizes": "48x48"
}
],
"start_url": ".",
Expand Down
4 changes: 2 additions & 2 deletions server/src/database/database.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import "dotenv/config";

import pg from "pg";

import "dotenv/config";

const { Pool } = pg;

const environment: string = process.env.NODE_ENV || "development";
Expand Down
4 changes: 4 additions & 0 deletions sql/archive/archive_entries.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ CREATE TABLE IF NOT EXISTS archive_entries (
INSERT INTO archive_entries
SELECT * FROM entries;

-- Set all users to inactive
UPDATE "users"
SET active = false;

-- Query the archive entries table
SELECT
archive_entries.*,
Expand Down

0 comments on commit 5d823d8

Please sign in to comment.