diff --git a/LICENSE b/LICENSE index e7ad2ec..d5cfc10 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2026 Tushar Pokle +Copyright (c) 2026, Tushar Pokle. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/web/engine/src/index.ts b/web/engine/src/index.ts index e2b83df..f90f134 100644 --- a/web/engine/src/index.ts +++ b/web/engine/src/index.ts @@ -1,3 +1,5 @@ +// Copyright (c) 2026, Tushar Pokle. All rights reserved. + // Public API export { sanitizeText } from './sanitize'; export { parseIGC, type IGCFile, type IGCFix, type IGCHeader, type IGCEvent, type IGCTask, type IGCTaskPoint } from './igc-parser'; diff --git a/web/frontend/src/about.html b/web/frontend/src/about.html index 8a23baa..acb9df8 100644 --- a/web/frontend/src/about.html +++ b/web/frontend/src/about.html @@ -1,3 +1,4 @@ + diff --git a/web/frontend/src/analysis.html b/web/frontend/src/analysis.html index e42af53..f77eb58 100644 --- a/web/frontend/src/analysis.html +++ b/web/frontend/src/analysis.html @@ -1,3 +1,4 @@ + diff --git a/web/frontend/src/analysis/main.ts b/web/frontend/src/analysis/main.ts index e23c11c..8f39278 100644 --- a/web/frontend/src/analysis/main.ts +++ b/web/frontend/src/analysis/main.ts @@ -1,3 +1,5 @@ +// Copyright (c) 2026, Tushar Pokle. All rights reserved. + /** * IGC Analysis Tool - Main Entry Point * diff --git a/web/frontend/src/dashboard.html b/web/frontend/src/dashboard.html index c6b3423..320af2c 100644 --- a/web/frontend/src/dashboard.html +++ b/web/frontend/src/dashboard.html @@ -1,3 +1,4 @@ + diff --git a/web/frontend/src/index.html b/web/frontend/src/index.html index 8b24669..6ef8c16 100644 --- a/web/frontend/src/index.html +++ b/web/frontend/src/index.html @@ -1,3 +1,4 @@ + diff --git a/web/frontend/src/index.ts b/web/frontend/src/index.ts index ce4a864..1e66532 100644 --- a/web/frontend/src/index.ts +++ b/web/frontend/src/index.ts @@ -1,2 +1,4 @@ +// Copyright (c) 2026, Tushar Pokle. All rights reserved. + // Placeholder for future Pages functions/scripts export {}; diff --git a/web/frontend/src/legal.html b/web/frontend/src/legal.html index c41e1cb..e4bee29 100644 --- a/web/frontend/src/legal.html +++ b/web/frontend/src/legal.html @@ -1,3 +1,4 @@ + diff --git a/web/frontend/src/onboarding.html b/web/frontend/src/onboarding.html index f158fb9..bdfab05 100644 --- a/web/frontend/src/onboarding.html +++ b/web/frontend/src/onboarding.html @@ -1,3 +1,4 @@ + diff --git a/web/frontend/src/scoring.html b/web/frontend/src/scoring.html index 2a03e29..556909c 100644 --- a/web/frontend/src/scoring.html +++ b/web/frontend/src/scoring.html @@ -1,3 +1,4 @@ + diff --git a/web/samples/src/index.ts b/web/samples/src/index.ts index dc92da5..d517acb 100644 --- a/web/samples/src/index.ts +++ b/web/samples/src/index.ts @@ -1,3 +1,5 @@ +// Copyright (c) 2026, Tushar Pokle. All rights reserved. + /** GAP scoring parameters for a sample competition */ export interface SampleCompGAPParams { scoring: 'HG' | 'PG'; diff --git a/web/workers/airscore-api/src/index.ts b/web/workers/airscore-api/src/index.ts index 8c40696..a19d04f 100644 --- a/web/workers/airscore-api/src/index.ts +++ b/web/workers/airscore-api/src/index.ts @@ -1,3 +1,5 @@ +// Copyright (c) 2026, Tushar Pokle. All rights reserved. + /** * AirScore API Worker * diff --git a/web/workers/auth-api/src/index.ts b/web/workers/auth-api/src/index.ts index 8204961..47fcb9d 100644 --- a/web/workers/auth-api/src/index.ts +++ b/web/workers/auth-api/src/index.ts @@ -1,3 +1,5 @@ +// Copyright (c) 2026, Tushar Pokle. All rights reserved. + import { Hono } from "hono"; import { cors } from "hono/cors"; import { createAuth, type AuthEnv } from "./auth";