Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DemoNStack/DemoNStack/Controllers/NStackController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ protected NStackController(INStackAppService nStackAppService)

protected async Task<DataMetaWrapper<Translation>> GetTranslations()
{
return await NStackAppService.GetResourceAsync<Translation>(Request.GetCurrentLanguage(), NStackPlatform.Web, "1.3.0");
return await NStackAppService.GetResourceAsync<Translation>(Request.GetCurrentLanguage(), NStackPlatform.Web, "1.3.1");
}

protected Guid GetUserId()
Expand Down
2 changes: 1 addition & 1 deletion DemoNStack/DemoNStack/DemoNStack.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NStack.SDK" Version="1.3.0" />
<PackageReference Include="NStack.SDK" Version="1.3.1" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public NavbarViewComponent(INStackAppService nStackAppService, IMemoryCache memo

public async Task<IViewComponentResult> InvokeAsync()
{
var res = await NStackAppService.GetResourceAsync<Translation>(Request.GetCurrentLanguage(), NStackPlatform.Web, "1.3.0");
var res = await NStackAppService.GetResourceAsync<Translation>(Request.GetCurrentLanguage(), NStackPlatform.Web, "1.3.1");

var viewModel = new NavbarViewModel
{
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion NStack/NStack/NStack.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<PackageIcon>Nodes logo.png</PackageIcon>
<AssemblyName>NStack.SDK</AssemblyName>
<RootNamespace>NStack.SDK</RootNamespace>
<Version>1.3.0</Version>
<Version>1.3.1</Version>
<Description>Use this SDK to interact with NStack. This SDK contains injectable services to get translations etc. from NStack.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
Expand Down