Skip to content

Commit

Permalink
chore: update kendo to 2024.3.806
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitar-Goshev committed Aug 12, 2024
1 parent c917e2d commit 4d3f893
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-repos-updates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ echo "Last Themes release version is $LATEST_THEMES_RELEASE"
function getCurrentVersion {
for file in `find . -type f -name "*.cshtml"`
do
CURRENT_VERSION=$(grep -hnr "cdn.kendostatic" $file | head -1 | cut -d '/' -f 4)
CURRENT_VERSION=$(grep -hnr "kendo.cdn" $file | head -1 | cut -d '/' -f 4)
if [ ! -z "$CURRENT_VERSION" ]
then
CURRENT_GLOBAL_VERSION=$CURRENT_VERSION
Expand Down
4 changes: 2 additions & 2 deletions EShop/Web/Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - Web</title>

<link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/9.0.0/fluent/fluent-main.css" />
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/8.2.1/fluent/fluent-main.css" />
<environment names="Development">
<bundle name="wwwroot/bundles/styles.min.css" />
</environment>
Expand All @@ -15,7 +15,7 @@
@RenderSection("loginStyles", false)
<link rel="stylesheet" href="https://unpkg.com/@@progress/kendo-font-icons/dist/index.css" />
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2024.2.514/js/kendo.all.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2024.3.806/js/kendo.all.min.js"></script>
<script src="~/js/product_details.js"></script>
<script src="~/js/shopping_cart.js"></script>
<script src="~/js/datasource.js"></script>
Expand Down

0 comments on commit 4d3f893

Please sign in to comment.