Skip to content
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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 2 additions & 0 deletions web/engine/src/index.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
1 change: 1 addition & 0 deletions web/frontend/src/about.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- Copyright (c) 2026, Tushar Pokle. All rights reserved. -->
<!DOCTYPE html>
<html lang="en">

Expand Down
1 change: 1 addition & 0 deletions web/frontend/src/analysis.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- Copyright (c) 2026, Tushar Pokle. All rights reserved. -->
<!DOCTYPE html>
<html lang="en">

Expand Down
2 changes: 2 additions & 0 deletions web/frontend/src/analysis/main.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) 2026, Tushar Pokle. All rights reserved.

/**
* IGC Analysis Tool - Main Entry Point
*
Expand Down
1 change: 1 addition & 0 deletions web/frontend/src/dashboard.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- Copyright (c) 2026, Tushar Pokle. All rights reserved. -->
<!DOCTYPE html>
<html lang="en">

Expand Down
1 change: 1 addition & 0 deletions web/frontend/src/index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- Copyright (c) 2026, Tushar Pokle. All rights reserved. -->
<!DOCTYPE html>
<html lang="en">

Expand Down
2 changes: 2 additions & 0 deletions web/frontend/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
// Copyright (c) 2026, Tushar Pokle. All rights reserved.

// Placeholder for future Pages functions/scripts
export {};
1 change: 1 addition & 0 deletions web/frontend/src/legal.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- Copyright (c) 2026, Tushar Pokle. All rights reserved. -->
<!DOCTYPE html>
<html lang="en">

Expand Down
1 change: 1 addition & 0 deletions web/frontend/src/onboarding.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- Copyright (c) 2026, Tushar Pokle. All rights reserved. -->
<!DOCTYPE html>
<html lang="en">

Expand Down
1 change: 1 addition & 0 deletions web/frontend/src/scoring.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- Copyright (c) 2026, Tushar Pokle. All rights reserved. -->
<!DOCTYPE html>
<html lang="en">

Expand Down
2 changes: 2 additions & 0 deletions web/samples/src/index.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
2 changes: 2 additions & 0 deletions web/workers/airscore-api/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) 2026, Tushar Pokle. All rights reserved.

/**
* AirScore API Worker
*
Expand Down
2 changes: 2 additions & 0 deletions web/workers/auth-api/src/index.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
Loading