-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update release notes * Move API changes to PublicAPI.Shipped.txt * Update version number * Bump Bootstrap version in template * Update simple MQTT tutorial * Update README.md
- Loading branch information
1 parent
d1a5191
commit 00fce6c
Showing
112 changed files
with
687 additions
and
84,903 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
"Major": 4, | ||
"Minor": 0, | ||
"Patch": 0, | ||
"PreRelease": "pre" | ||
"PreRelease": "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
144 changes: 72 additions & 72 deletions
144
examples/ExampleHostedAdapter/Pages/Shared/_Layout.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,81 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>@ViewData["Title"] - App Store Connect Adapter Host</title> | ||
<link rel="stylesheet" href="~/lib/bootstrap/css/bootstrap.min.css" /> | ||
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" /> | ||
<link rel="stylesheet" href="~/ExampleHostedAdapter.styles.css" asp-append-version="true" /> | ||
<script defer src="~/lib/font-awesome/js/all.min.js" data-auto-replace-svg="nest"></script> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>@ViewData["Title"] - App Store Connect Adapter Host</title> | ||
<link rel="stylesheet" href="~/lib/bootstrap/css/bootstrap.min.css" /> | ||
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" /> | ||
<link rel="stylesheet" href="~/ExampleHostedAdapter.styles.css" asp-append-version="true" /> | ||
<script defer src="~/lib/font-awesome/js/all.min.js" data-auto-replace-svg="nest"></script> | ||
</head> | ||
<body> | ||
<header> | ||
<nav class="navbar navbar-expand-sm navbar-toggleable-sm border-bottom box-shadow mb-3"> | ||
<div class="container-fluid"> | ||
<a class="navbar-brand" asp-area="" asp-page="/Index">ASC Adapter Host</a> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between"> | ||
<ul class="navbar-nav d-flex"> | ||
<li class="nav-item"> | ||
<a class="nav-link" asp-area="" asp-page="/Index" title="Home"> | ||
<i class="fa-solid fa-house fa-fw"></i> | ||
Home | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" asp-area="" asp-page="/Settings" title="Modify adapter settings"> | ||
<i class="fa-solid fa-gears fa-fw"></i> | ||
Settings | ||
</a> | ||
</li> | ||
</ul> | ||
<ul class="navbar-nav d-flex"> | ||
<li class="nav-item dropdown"> | ||
<button class="btn btn-link nav-link dropdown-toggle" id="theme-toggle" type="button" aria-expanded="false" data-bs-toggle="dropdown" title="Select theme"> | ||
<i class="fa-solid fa-circle-half-stroke fa-fw"></i> | ||
</button> | ||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="theme-toggle"> | ||
<li> | ||
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="light" title="Light mode"> | ||
<i class="fa-solid fa-sun fa-fw me-2"></i> | ||
Light | ||
<i class="fa-solid fa-check fa-fw ms-auto d-none" data-active-indicator></i> | ||
</button> | ||
</li> | ||
<li> | ||
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="dark" title="Dark mode"> | ||
<i class="fa-solid fa-moon fa-fw me-2"></i> | ||
Dark | ||
<i class="fa-solid fa-check fa-fw ms-auto d-none" data-active-indicator></i> | ||
</button> | ||
</li> | ||
<li> | ||
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="auto" title="Use system theme"> | ||
<i class="fa-solid fa-circle-half-stroke fa-fw me-2"></i> | ||
Auto | ||
<i class="fa-solid fa-check fa-fw ms-auto d-none" data-active-indicator></i> | ||
</button> | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
</header> | ||
<div class="container-fluid"> | ||
<main role="main" class="pb-3"> | ||
@RenderBody() | ||
</main> | ||
</div> | ||
<header> | ||
<nav class="navbar navbar-expand-sm navbar-toggleable-sm border-bottom box-shadow mb-3"> | ||
<div class="container-fluid"> | ||
<a class="navbar-brand" asp-area="" asp-page="/Index">ASC Adapter Host</a> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between"> | ||
<ul class="navbar-nav d-flex"> | ||
<li class="nav-item"> | ||
<a class="nav-link" asp-area="" asp-page="/Index" title="Home"> | ||
<i class="fa-solid fa-house fa-fw"></i> | ||
Home | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" asp-area="" asp-page="/Settings" title="Modify adapter settings"> | ||
<i class="fa-solid fa-gears fa-fw"></i> | ||
Settings | ||
</a> | ||
</li> | ||
</ul> | ||
<ul class="navbar-nav d-flex"> | ||
<li class="nav-item dropdown"> | ||
<button class="btn btn-link nav-link dropdown-toggle" id="theme-toggle" type="button" aria-expanded="false" data-bs-toggle="dropdown" title="Select theme"> | ||
<i class="fa-solid fa-circle-half-stroke fa-fw"></i> | ||
</button> | ||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="theme-toggle"> | ||
<li> | ||
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="light" title="Light mode"> | ||
<i class="fa-solid fa-sun fa-fw me-2"></i> | ||
Light | ||
<i class="fa-solid fa-check fa-fw ms-auto d-none" data-active-indicator></i> | ||
</button> | ||
</li> | ||
<li> | ||
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="dark" title="Dark mode"> | ||
<i class="fa-solid fa-moon fa-fw me-2"></i> | ||
Dark | ||
<i class="fa-solid fa-check fa-fw ms-auto d-none" data-active-indicator></i> | ||
</button> | ||
</li> | ||
<li> | ||
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="auto" title="Use system theme"> | ||
<i class="fa-solid fa-circle-half-stroke fa-fw me-2"></i> | ||
Auto | ||
<i class="fa-solid fa-check fa-fw ms-auto d-none" data-active-indicator></i> | ||
</button> | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
</header> | ||
<div class="container-fluid"> | ||
<main role="main" class="pb-3"> | ||
@RenderBody() | ||
</main> | ||
</div> | ||
|
||
<script src="~/lib/jquery/jquery.min.js"></script> | ||
<script src="~/lib/bootstrap/js/bootstrap.bundle.min.js"></script> | ||
<script src="~/js/site.js" asp-append-version="true"></script> | ||
<script src="~/lib/jquery/jquery.min.js"></script> | ||
<script src="~/lib/bootstrap/js/bootstrap.bundle.min.js"></script> | ||
<script src="~/js/site.js" asp-append-version="true"></script> | ||
|
||
@await RenderSectionAsync("Scripts", required: false) | ||
@await RenderSectionAsync("Scripts", required: false) | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
{ | ||
"provider": "cdnjs", | ||
"library": "[email protected].2", | ||
"library": "[email protected].3", | ||
"destination": "wwwroot/lib/bootstrap/", | ||
"files": [ | ||
"js/*", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.