Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
7a99455
feat: add spoo.me extension with theme provider, button component, an…
Zingzy Mar 19, 2026
ceacba1
feat: add API integration for URL management and authentication
Zingzy Mar 19, 2026
7358480
feat: implement side panel with notification system and URL shortenin…
Zingzy Mar 19, 2026
6636cd1
feat: add authentication section, offline banner, and theme provider
Zingzy Mar 19, 2026
6341f65
feat: implement side panel with account, analytics, dashboard, QR, se…
Zingzy Mar 19, 2026
e3adc4a
feat: update UrlsTab to use new parameter naming conventions
Zingzy Mar 19, 2026
a9c4f20
feat: refactor AnalyticsTab and UrlsTab for improved readability and …
Zingzy Mar 20, 2026
cea8947
fix
Zingzy Mar 20, 2026
8582179
feat: add toast notification system and update settings structure
Zingzy Mar 20, 2026
260ced9
feat: refactor SettingsTab and UrlsTab for improved UI components and…
Zingzy Mar 20, 2026
7689947
feat: add UserMenu component for user profile and logout functionality
Zingzy Mar 20, 2026
dfa9f94
feat: implement device authentication flow and refactor related compo…
Zingzy Apr 3, 2026
757dbb7
feat: implement access token refresh mechanism and improve error hand…
Zingzy Apr 3, 2026
905deb8
refactor: streamline import statements and type definitions for clarity
Zingzy Apr 3, 2026
d674c3a
feat: enhance authentication flow with timeout for token refresh and …
Zingzy Apr 3, 2026
2e16f3f
fix: improve ChartTooltipContent to handle null values and enhance to…
Zingzy Apr 4, 2026
72dbafa
refactor: update tsconfig.json by removing baseUrl for improved path …
Zingzy Apr 4, 2026
572c0eb
feat: implement device refresh endpoint and enhance token management …
Zingzy Apr 4, 2026
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
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# API base URL — override for local development
# VITE_API_BASE_URL=http://127.0.0.1:8000
# VITE_QR_API_BASE_URL=http://127.0.0.1:8001
44 changes: 44 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
check:
name: Lint, Typecheck & Build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: oven-sh/setup-bun@v2
with:
bun-version: latest

- name: Install dependencies
run: bun install --frozen-lockfile

- name: Lint
run: bun run lint

- name: Typecheck
run: bun run typecheck

- name: Build (Chrome)
run: bun run build

- name: Build (Firefox)
run: bun run build:firefox

- name: Check bundle size
run: |
TOTAL=$(du -sb .output/chrome-mv3/ | cut -f1)
TOTAL_KB=$((TOTAL / 1024))
echo "Total bundle size: ${TOTAL_KB}KB"
if [ "$TOTAL_KB" -gt 1024 ]; then
echo "::error::Bundle size ${TOTAL_KB}KB exceeds 1MB limit"
exit 1
fi
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
.output
*.tsbuildinfo
stats.html
stats-*.json
.wxt
web-ext.config.ts

Comment thread
Zingzy marked this conversation as resolved.
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

.env
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,5 @@
All Rights Reserved</h6>

<p align="center">
<a href="https://github.com/spoo-me/url-shortener/blob/master/LICENSE.txt"><img src="https://img.shields.io/static/v1.svg?style=for-the-badge&label=License&message=APACHE-2.0&logoColor=d9e0ee&colorA=363a4f&colorB=b7bdf8"/></a>
<a href="https://github.com/spoo-me/spoo/blob/master/LICENSE.txt"><img src="https://img.shields.io/static/v1.svg?style=for-the-badge&label=License&message=APACHE-2.0&logoColor=d9e0ee&colorA=363a4f&colorB=b7bdf8"/></a>
Comment thread
Zingzy marked this conversation as resolved.
</p>
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Please include the following details in your report:

## Security Updates

We will notify users about security updates through our [GitHub repository](https://github.com/spoo-me/url-shortener) and our [Discord server](https://spoo.me/discord). Please ensure you are subscribed to notifications to stay informed about important updates.
We will notify users about security updates through our [GitHub repository](https://github.com/spoo-me/spoo) and our [Discord server](https://spoo.me/discord). Please ensure you are subscribed to notifications to stay informed about important updates.

## Security Best Practices

Expand Down
260 changes: 0 additions & 260 deletions background.js

This file was deleted.

Loading
Loading