1 Commits

Author SHA1 Message Date
Gitea Actions 48730fcf26 chore: bump version to v0.1.9 2026-04-27 02:39:24 +00:00
6 changed files with 16 additions and 10 deletions
+6
View File
@@ -1,3 +1,9 @@
## [0.1.9] - 2026-04-27
### Patch Changes
- test: remove migrated Playwright tests (epic3-rankings, home-page)
## [0.1.8] - 2026-04-27
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "euchre_camp",
"version": "0.1.8",
"version": "0.1.9",
"private": true,
"scripts": {
"dev": "NEXT_PUBLIC_GIT_COMMIT=$(git rev-parse --short HEAD) next dev",
+1 -1
View File
@@ -258,7 +258,7 @@ export default function AdminPlayersPage() {
</div>
{/* Player Table */}
<div className="bg-white shadow rounded-lg overflow-x-auto">
<div className="bg-white shadow rounded-lg overflow-hidden">
<table className="min-w-full divide-y divide-gray-200">
<thead className="bg-gray-50">
<tr>
+1 -1
View File
@@ -22,7 +22,7 @@ export default function RootLayout({
lang="en"
className={`${inter.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col overflow-x-hidden">
<body className="min-h-full flex flex-col">
<SessionProvider>
{children}
<Footer />
+3 -3
View File
@@ -59,7 +59,7 @@ export default function RankingsClient({ players }: { players: PlayerWithRatings
{/* Elo Rating Tab */}
{activeTab === "elo" && (
<div className="bg-white shadow overflow-x-auto sm:rounded-lg">
<div className="bg-white shadow overflow-hidden sm:rounded-lg">
<h2 className="text-xl font-semibold text-gray-900 px-6 py-4 border-b">
Elo Rating Rankings
</h2>
@@ -117,7 +117,7 @@ export default function RankingsClient({ players }: { players: PlayerWithRatings
{/* OpenSkill Rating Tab */}
{activeTab === "openskill" && (
<div className="bg-white shadow overflow-x-auto sm:rounded-lg">
<div className="bg-white shadow overflow-hidden sm:rounded-lg">
<h2 className="text-xl font-semibold text-gray-900 px-6 py-4 border-b">
OpenSkill Rating Rankings
</h2>
@@ -178,7 +178,7 @@ export default function RankingsClient({ players }: { players: PlayerWithRatings
{/* Glicko2 Rating Tab */}
{activeTab === "glicko2" && (
<div className="bg-white shadow overflow-x-auto sm:rounded-lg">
<div className="bg-white shadow overflow-hidden sm:rounded-lg">
<h2 className="text-xl font-semibold text-gray-900 px-6 py-4 border-b">
Glicko2 Rating Rankings
</h2>
+4 -4
View File
@@ -50,14 +50,14 @@ export default function Navigation() {
<nav className="bg-white shadow-sm">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="flex justify-between h-16">
<div className="flex items-center min-w-0 overflow-hidden">
<div className="flex items-center">
<Link
href="/wordmark-redirect"
className="text-xl font-bold text-gray-900 no-underline flex-shrink-0"
className="text-xl font-bold text-gray-900 no-underline"
>
EuchreCamp
</Link>
<div className="hidden md:ml-6 md:flex md:space-x-8 min-w-0 overflow-hidden">
<div className="hidden md:ml-6 md:flex md:space-x-8">
<Link
href="/rankings"
className="border-transparent text-gray-500 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
@@ -110,7 +110,7 @@ export default function Navigation() {
)}
</div>
</div>
<div className="flex items-center min-w-0 overflow-hidden">
<div className="flex items-center">
{loading ? (
<div className="text-gray-500">Loading...</div>
) : session ? (