Skip to content

Commit

Permalink
Merge pull request #297 from stride3d/master
Browse files Browse the repository at this point in the history
Initiating deployment of latest website updates to production
  • Loading branch information
VaclavElias authored May 5, 2024
2 parents 208c8c8 + 976a7d3 commit 0dcc8f8
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 26 deletions.
1 change: 1 addition & 0 deletions .github/workflows/stride-website-staging-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- staging
paths-ignore:
- 'README.md'
- 'Stride.Web.sln'
- 'wiki/**'
- '_drafts/**'
- .gitignore
Expand Down
3 changes: 2 additions & 1 deletion _data/site.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.0.25",
"version": "2.0.0.26",
"engine": "Eleventy 2.0",
"title": "Stride Game Engine",
"description": "C# Stride Game Engine is a powerful and versatile game development engine that is based on the C# programming language",
Expand Down Expand Up @@ -30,6 +30,7 @@
"docs-search-url": "https://doc.stride3d.net/latest/en/index.json",
"docs-tutorial-url": "https://doc.stride3d.net/latest/en/tutorials/",
"docs-contributing-url": "https://doc.stride3d.net/latest/en/contributors/index.html",
"docs-community-resources-url": "https://doc.stride3d.net/latest/en/community-resources/index.html",
"dotnet-foundation-url": "https://dotnetfoundation.org/",
"facebook-url": "https://www.facebook.com/stride3d",
"github-discussions-url": "https://github.com/stride3d/stride/discussions",
Expand Down
3 changes: 2 additions & 1 deletion _includes/_top-navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
<li><a class="dropdown-item" href="{{ site.links.docs-manual-jp-url }}" target="_blank" rel="noopener">📚 Manual (JP)</a></li>
<li><a class="dropdown-item" href="{{ site.links.docs-tutorial-url }}" target="_blank" rel="noopener">🎓 Tutorials</a></li>
<li><a class="dropdown-item" href="{{ site.links.docs-release-notes-url }}" target="_blank" rel="noopener">📝 Release Notes</a></li>
<li><a class="dropdown-item" href="{{ site.links.docs-api-url }}" target="_blank" rel="noopener">🔧 API</a></li>
<li><a class="dropdown-item" href="{{ site.links.docs-contributing-url }}" target="_blank" rel="noopener">🌟 Contributing</a></li>
<li><a class="dropdown-item" href="{{ site.links.docs-api-url }}" target="_blank" rel="noopener">🔧 API</a></li>
<li><a class="dropdown-item" href="{{ site.links.docs-community-resources-url }}" target="_blank" rel="noopener">🏋🏽 Community Resources</a></li>
</ul>
</li>
<li class="nav-item">
Expand Down
4 changes: 3 additions & 1 deletion assets/scripts/search.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ permalink: /scripts/search.js
return '📝';
case 'contributors':
return '🌟';
case 'community-resources':
return '🏋🏽';
default:
return '';
}
Expand Down Expand Up @@ -134,7 +136,7 @@ permalink: /scripts/search.js
var docs = Promise.resolve();

if({{site.docs-search}}) {
docs = fetch(`{{site.links.docs-search-url}}`).then(success);
docs = fetch(`{{site.links.docs-search-url}}?version={{site.version}}`).then(success);
}

Promise.all([web, docs])
Expand Down
38 changes: 19 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0"
},
"dependencies": {
"@11ty/eleventy-fetch": "^4.0.0",
"@fortawesome/fontawesome-free": "^6.5.1",
"bootstrap": "^5.3.2",
"@11ty/eleventy-fetch": "^4.0.1",
"@fortawesome/fontawesome-free": "^6.5.2",
"bootstrap": "^5.3.3",
"lunr": "^2.3.9",
"markdown-it-anchor": "^8.6.6",
"markdown-it-table-of-contents": "^0.6.0",
"sass": "^1.69.7"
"sass": "^1.76.0"
}
}

0 comments on commit 0dcc8f8

Please sign in to comment.