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

Login #36

Merged
merged 22 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
a10dd96
fix: Colors of text and cards failure, found config bugs
MasterLegend2772 Jan 6, 2024
00467f0
feat: Add color and themes to site and fix theme bugs
MasterLegend2772 Jan 6, 2024
67daae9
feat: css bases, themes
TerrifiedPigeon Jan 6, 2024
5687ff1
css base
TerrifiedPigeon Jan 6, 2024
37a9f52
feat: sidebar icon colors
TerrifiedPigeon Jan 6, 2024
4ac94f2
fix: Wording of import export buttons in settings
TerrifiedPigeon Jan 7, 2024
dd8deaa
fix: Button and Coloring QoLs and hovering problems
TerrifiedPigeon Jan 7, 2024
f70caa8
Merge branch 'main' into colors
MasterLegend2772 Jan 7, 2024
fc02056
feat: Added themes and drafts for UI changes
MasterLegend2772 Jan 7, 2024
26f3176
fix: Discord Bot Messages
MasterLegend2772 Jan 13, 2024
1e843da
feat: Added dark/light themes and QoLs to site
MasterLegend2772 Jan 18, 2024
f60bfe0
feat: Add abyss/light themes and other QoLs
MasterLegend2772 Jan 18, 2024
4446bdd
feat: Adding final touches to the theme
MasterLegend2772 Jan 19, 2024
a3a9e30
feat: Add Github OAuth and Discord Draft
MasterLegend2772 Jan 20, 2024
4a7ef40
feat: Add and Moved Login to Settings
MasterLegend2772 Jan 21, 2024
9649ba5
Merge branch 'main' into login
MasterLegend2772 Jan 23, 2024
1fde851
fix: Fixed pnpm-lock.yaml
MasterLegend2772 Jan 23, 2024
2392f4c
Update pnpm-lock.yaml
MasterLegend2772 Jan 23, 2024
a2fd8c4
feat: Delete pnpm-lock.yaml
MasterLegend2772 Jan 23, 2024
4e7bd3c
fix: added env variable in the ci
LudovicMalot Jan 23, 2024
4de7ced
fix: using a more standard approach to env variable
LudovicMalot Jan 23, 2024
906782e
fix: linter
LudovicMalot Jan 23, 2024
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
6 changes: 5 additions & 1 deletion .github/workflows/check-code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ jobs:
node-version: lts/Iron
- run: npm install -g pnpm
- run: pnpm install
- run: pnpm tsc
- name: Check TypeScript
env:
GITHUB_ID: ${{ secrets.AUTH_GITHUB_ID }}
GITHUB_SECRET: ${{ secrets.AUTH_GITHUB_SECRET }}
run: pnpm tsc
check-prettier:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
},
"type": "module",
"dependencies": {
"@auth/core": "^0.21.0",
"@auth/sveltekit": "^0.7.0",
"@mdi/js": "^7.4.47",
"bits-ui": "^0.12.0",
"clsx": "^2.1.0",
Expand Down
Loading