diff --git a/.github/workflows/check-repos-updates.sh b/.github/workflows/check-repos-updates.sh index 3a17ea5..20519cc 100755 --- a/.github/workflows/check-repos-updates.sh +++ b/.github/workflows/check-repos-updates.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash echo "Stage1 Find Updates" LATEST_RELEASE=$(curl -s https://api.github.com/repos/telerik/kendo-ui-core/releases | grep tag_name | head -n 1 | cut -d '"' -f 4) -LATEST_THEMES_RELEASE=$(curl -s https://api.github.com/repos/telerik/kendo-themes/releases | grep -B4 '"prerelease": false' | head -1 | cut -d '"' -f 4 | tr -d v) +LATEST_THEMES_RELEASE=$(curl -s https://api.github.com/repos/telerik/kendo-themes/releases | jq -r '[.[] | select(.prerelease == false)][0].name' | tr -d v) echo "Last release version is $LATEST_RELEASE" echo "Last Themes release version is $LATEST_THEMES_RELEASE" diff --git a/EShop/Web/Views/Shared/_Layout.cshtml b/EShop/Web/Views/Shared/_Layout.cshtml index 4f1cb7f..956b4e2 100644 --- a/EShop/Web/Views/Shared/_Layout.cshtml +++ b/EShop/Web/Views/Shared/_Layout.cshtml @@ -4,8 +4,9 @@ @ViewData["Title"] - Web + - + @@ -21,8 +22,8 @@ - - + + diff --git a/EShop/Web/Web.csproj b/EShop/Web/Web.csproj index 85e2595..4763dc9 100644 --- a/EShop/Web/Web.csproj +++ b/EShop/Web/Web.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -12,13 +12,13 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + - - - - - + + + + + diff --git a/EShop/Web/wwwroot/favicon.ico b/EShop/Web/wwwroot/favicon.ico index a3a7999..667b63a 100644 Binary files a/EShop/Web/wwwroot/favicon.ico and b/EShop/Web/wwwroot/favicon.ico differ