Skip to content

Commit 12809df

Browse files
authored
Merge pull request #6116 from oqtane/dev
10.1.1 Release
2 parents 779a3dd + 8276153 commit 12809df

36 files changed

+229
-129
lines changed

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<PropertyGroup>
33
<TargetFramework>net10.0</TargetFramework>
44
<Configurations>Debug;Release</Configurations>
5-
<Version>10.1.0</Version>
5+
<Version>10.1.1</Version>
66
<Product>Oqtane</Product>
77
<Authors>Shaun Walker</Authors>
88
<Company>.NET Foundation</Company>
99
<Description>CMS and Application Framework for Blazor and .NET MAUI</Description>
1010
<Copyright>.NET Foundation</Copyright>
1111
<PackageProjectUrl>https://www.oqtane.org</PackageProjectUrl>
1212
<PackageLicenseUrl>https://github.com/oqtane/oqtane.framework/blob/dev/LICENSE</PackageLicenseUrl>
13-
<PackageReleaseNotes>https://github.com/oqtane/oqtane.framework/releases/tag/v10.1.0</PackageReleaseNotes>
13+
<PackageReleaseNotes>https://github.com/oqtane/oqtane.framework/releases/tag/v10.1.1</PackageReleaseNotes>
1414
<RepositoryUrl>https://github.com/oqtane/oqtane.framework</RepositoryUrl>
1515
<RepositoryType>Git</RepositoryType>
1616
</PropertyGroup>

Oqtane.Application/Client/Oqtane.Application.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="Oqtane.Client" Version="10.1.0" />
26+
<PackageReference Include="Oqtane.Client" Version="10.1.1" />
2727
</ItemGroup>
2828

2929
</Project>

Oqtane.Application/Oqtane.Application.Template.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>Oqtane.Application.Template</id>
5-
<version>10.1.0</version>
5+
<version>10.1.1</version>
66
<title>Oqtane Application Template For Blazor</title>
77
<authors>Shaun Walker</authors>
88
<requireLicenseAcceptance>false</requireLicenseAcceptance>

Oqtane.Application/Server/Oqtane.Application.Server.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</ItemGroup>
3434

3535
<ItemGroup>
36-
<PackageReference Include="Oqtane.Server" Version="10.1.0" />
36+
<PackageReference Include="Oqtane.Server" Version="10.1.1" />
3737
</ItemGroup>
3838

3939
</Project>

Oqtane.Application/Shared/Oqtane.Application.Shared.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</ItemGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Oqtane.Shared" Version="10.1.0" />
14+
<PackageReference Include="Oqtane.Shared" Version="10.1.1" />
1515
</ItemGroup>
1616

1717
</Project>

Oqtane.Client/Modules/Admin/GlobalReplace/Index.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</div>
2929
</div>
3030
<div class="row mb-1 align-items-center">
31-
<Label Class="col-sm-3" For="site" HelpText="Specify if site properties should be updated (ie. name, headcontent, bodycontent)" ResourceKey="Site">Site Properties? </Label>
31+
<Label Class="col-sm-3" For="site" HelpText="Specify if site information should be updated (ie. name, head content, body content, settings)" ResourceKey="Site">Site Info? </Label>
3232
<div class="col-sm-9">
3333
<select id="site" class="form-select" @bind="@_site">
3434
<option value="True">@SharedLocalizer["Yes"]</option>
@@ -37,7 +37,7 @@
3737
</div>
3838
</div>
3939
<div class="row mb-1 align-items-center">
40-
<Label Class="col-sm-3" For="pages" HelpText="Specify if page properties should be updated (ie. name, title, headcontent, bodycontent)" ResourceKey="Pages">Page Properties? </Label>
40+
<Label Class="col-sm-3" For="pages" HelpText="Specify if page information should be updated (ie. name, title, head content, body content, settings)" ResourceKey="Pages">Page Info? </Label>
4141
<div class="col-sm-9">
4242
<select id="pages" class="form-select" @bind="@_pages">
4343
<option value="True">@SharedLocalizer["Yes"]</option>
@@ -46,7 +46,7 @@
4646
</div>
4747
</div>
4848
<div class="row mb-1 align-items-center">
49-
<Label Class="col-sm-3" For="modules" HelpText="Specify if module properties should be updated (ie. title, header, footer)" ResourceKey="Modules">Module Properties? </Label>
49+
<Label Class="col-sm-3" For="modules" HelpText="Specify if module information should be updated (ie. title, header, footer, settings)" ResourceKey="Modules">Module Info? </Label>
5050
<div class="col-sm-9">
5151
<select id="modules" class="form-select" @bind="@_modules">
5252
<option value="True">@SharedLocalizer["Yes"]</option>

Oqtane.Client/Modules/Admin/ModuleDefinitions/Index.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ else
130130

131131
private async Task LoadModuleDefinitions()
132132
{
133-
_moduleDefinitions = _allModuleDefinitions.Where(item => item.Categories.Contains(_category)).ToList();
133+
_moduleDefinitions = _allModuleDefinitions.Where(item => item.Categories.Split(',', StringSplitOptions.RemoveEmptyEntries).Contains(_category)).ToList();
134134
_packages = await PackageService.GetPackageUpdatesAsync("module");
135135
}
136136

Oqtane.Client/Modules/Admin/Site/Index.razor

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1413,10 +1413,13 @@
14131413
{
14141414
if (_siteGroupId != -1)
14151415
{
1416-
var siteGroupMember = await SiteGroupMemberService.GetSiteGroupMemberAsync(PageState.Site.SiteId, _siteGroupId);
1417-
if (siteGroupMember != null)
1416+
if (_siteId != -1)
14181417
{
1419-
await SiteGroupMemberService.DeleteSiteGroupMemberAsync(siteGroupMember.SiteGroupId);
1418+
var siteGroupMember = await SiteGroupMemberService.GetSiteGroupMemberAsync(_siteId, _siteGroupId);
1419+
if (siteGroupMember != null)
1420+
{
1421+
await SiteGroupMemberService.DeleteSiteGroupMemberAsync(siteGroupMember.SiteGroupMemberId);
1422+
}
14201423
}
14211424

14221425
var siteGroupMembers = await SiteGroupMemberService.GetSiteGroupMembersAsync(-1, _siteGroupId);

Oqtane.Client/Oqtane.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="10.0.3" />
1313
<PackageReference Include="Microsoft.Extensions.Localization" Version="10.0.3" />
1414
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.3" />
15-
<PackageReference Include="Radzen.Blazor" Version="9.0.0" />
15+
<PackageReference Include="Radzen.Blazor" Version="9.0.8" />
1616
</ItemGroup>
1717

1818
<ItemGroup>

Oqtane.Client/Resources/Modules/Admin/GlobalReplace/Index.resx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,16 +130,16 @@
130130
<value>Specify if module content should be updated</value>
131131
</data>
132132
<data name="Pages.Text" xml:space="preserve">
133-
<value>Page Properties?</value>
133+
<value>Page Info?</value>
134134
</data>
135135
<data name="Pages.HelpText" xml:space="preserve">
136-
<value>Specify if page properties should be updated (ie. name, title, headcontent, bodycontent)</value>
136+
<value>Specify if page information should be updated (ie. name, title, head content, body content settings)</value>
137137
</data>
138138
<data name="Site.Text" xml:space="preserve">
139-
<value>Site Properties?</value>
139+
<value>Site Info?</value>
140140
</data>
141141
<data name="Site.HelpText" xml:space="preserve">
142-
<value>Specify if site properties should be updated (ie. name, headcontent, bodycontent)</value>
142+
<value>Specify if site information should be updated (ie. name, head content, body content, settings)</value>
143143
</data>
144144
<data name="Replace.Text" xml:space="preserve">
145145
<value>Replace With:</value>
@@ -148,10 +148,10 @@
148148
<value>Specify the replacement content</value>
149149
</data>
150150
<data name="Modules.Text" xml:space="preserve">
151-
<value>Module Properties?</value>
151+
<value>Module Info?</value>
152152
</data>
153153
<data name="Modules.HelpText" xml:space="preserve">
154-
<value>Specify if module properties should be updated (ie. title, header, footer)</value>
154+
<value>Specify if module information should be updated (ie. title, header, footer settings)</value>
155155
</data>
156156
<data name="Success.Save" xml:space="preserve">
157157
<value>Your Global Replace Request Has Been Submitted And Will Be Executed Shortly. Please Be Patient.</value>

0 commit comments

Comments
 (0)