From 50f7ccdf09460aac339fe434d8c186a65c5f3c21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Can=20Karag=C3=B6z?= Date: Tue, 7 Apr 2026 02:15:53 +0300 Subject: [PATCH] Update 0.1.0-preview.1 --- .ultimateauth/pack.bat.txt | 27 ------- .ultimateauth/package.bat | 27 ------- ...eBeam.UltimateAuth.Docs.Wasm.Client.csproj | 28 +++---- .../Layout/MainLayout.razor | 14 +++- .../Pages/DocsLandingPage.razor | 30 +++++++ .../Pages/Home.razor | 11 ++- .../Pages/NotFound.razor | 10 ++- .../Pages/Samples.razor | 73 ++++++++++++++++++ .../CodeBeam.UltimateAuth.Docs.Wasm.csproj | 21 ++--- .../Components/App.razor | 16 ++++ .../wwwroot/app.css | 1 - .../wwwroot/favicon.png | Bin 1148 -> 0 bytes ...ateAuth.Sample.BlazorStandaloneWasm.csproj | 1 - 13 files changed, 172 insertions(+), 87 deletions(-) delete mode 100644 .ultimateauth/pack.bat.txt delete mode 100644 .ultimateauth/package.bat create mode 100644 docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/Pages/DocsLandingPage.razor create mode 100644 docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/Pages/Samples.razor delete mode 100644 docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm/wwwroot/favicon.png diff --git a/.ultimateauth/pack.bat.txt b/.ultimateauth/pack.bat.txt deleted file mode 100644 index fec6d194..00000000 --- a/.ultimateauth/pack.bat.txt +++ /dev/null @@ -1,27 +0,0 @@ -@echo off - -echo ============================== -echo Packing UltimateAuth packages -echo ============================== - -REM eski paketleri temizle -if exist nupkgs ( - echo Cleaning old packages... - rmdir /s /q nupkgs -) - -REM pack işlemi -echo Running dotnet pack... -dotnet pack -c Release -o ./nupkgs - -REM sonuç kontrol -if %errorlevel% neq 0 ( - echo ❌ Pack failed! - pause - exit /b %errorlevel% -) - -echo ✅ Pack completed successfully! -echo Packages are in /nupkgs - -pause \ No newline at end of file diff --git a/.ultimateauth/package.bat b/.ultimateauth/package.bat deleted file mode 100644 index fec6d194..00000000 --- a/.ultimateauth/package.bat +++ /dev/null @@ -1,27 +0,0 @@ -@echo off - -echo ============================== -echo Packing UltimateAuth packages -echo ============================== - -REM eski paketleri temizle -if exist nupkgs ( - echo Cleaning old packages... - rmdir /s /q nupkgs -) - -REM pack işlemi -echo Running dotnet pack... -dotnet pack -c Release -o ./nupkgs - -REM sonuç kontrol -if %errorlevel% neq 0 ( - echo ❌ Pack failed! - pause - exit /b %errorlevel% -) - -echo ✅ Pack completed successfully! -echo Packages are in /nupkgs - -pause \ No newline at end of file diff --git a/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/CodeBeam.UltimateAuth.Docs.Wasm.Client.csproj b/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/CodeBeam.UltimateAuth.Docs.Wasm.Client.csproj index a3aa3d95..bb9cbd6e 100644 --- a/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/CodeBeam.UltimateAuth.Docs.Wasm.Client.csproj +++ b/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/CodeBeam.UltimateAuth.Docs.Wasm.Client.csproj @@ -1,18 +1,20 @@  - - net10.0 - enable - enable - true - Default - true - + + net10.0 + enable + enable + true + Default + true + false + - - - - - + + + + + + diff --git a/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/Layout/MainLayout.razor b/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/Layout/MainLayout.razor index f0a2d1ce..40ae601b 100644 --- a/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/Layout/MainLayout.razor +++ b/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/Layout/MainLayout.razor @@ -8,6 +8,7 @@ +
@@ -17,16 +18,18 @@
- Docs (Preparing) - Donate + Docs + Samples + Donate
-
+
+
@@ -35,7 +38,10 @@ - Preparing + Home + Docs + Samples + Donate diff --git a/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/Pages/DocsLandingPage.razor b/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/Pages/DocsLandingPage.razor new file mode 100644 index 00000000..be6a91bc --- /dev/null +++ b/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/Pages/DocsLandingPage.razor @@ -0,0 +1,30 @@ +@page "/docs" + + + + + UltimateAuth Docs + The modern way to understand authentication — unified, simple and powerful. + + + + This page is preparing. + + + But the documentation is currently available in markdown format and covers core concepts, architecture, flows and integration guides. + + + + Start exploring the docs to understand how UltimateAuth simplifies authentication across sessions, cookies and tokens. + + + + Read Documentation + + + + Full documentation site is coming soon. + + + + \ No newline at end of file diff --git a/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/Pages/Home.razor b/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/Pages/Home.razor index b6b11844..5be34301 100644 --- a/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/Pages/Home.razor +++ b/docs/website/CodeBeam.UltimateAuth.Docs.Wasm/CodeBeam.UltimateAuth.Docs.Wasm.Client/Pages/Home.razor @@ -92,12 +92,13 @@
+