Skip to content

Commit e1927da

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 405b3d0 + 3461074 commit e1927da

File tree

7 files changed

+12
-17
lines changed

7 files changed

+12
-17
lines changed

dotnet/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<AbpVersion>8.1.3</AbpVersion>
55
<AbpLeptonXThemeVersion>3.1.*-*</AbpLeptonXThemeVersion>
6-
<BlazoriseVersion>1.5.0</BlazoriseVersion>
6+
<BlazoriseVersion>1.5.2</BlazoriseVersion>
77

88
</PropertyGroup>
99
</Project>

dotnet/common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<LangVersion>latest</LangVersion>
4-
<Version>2.12.0</Version>
4+
<Version>2.12.1</Version>
55
<NoWarn>$(NoWarn);CS1591;CS0436</NoWarn>
66
<AbpProjectType>app</AbpProjectType>
77
</PropertyGroup>

dotnet/src/EasyAbp.AbpHelper.Gui.Application/UpdateCheck/UpdateCheckAppService.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
using Newtonsoft.Json.Linq;
88
using Volo.Abp.Application.Services;
99
using Volo.Abp.Caching;
10-
using Volo.Abp.DependencyInjection;
11-
using Volo.Abp.Json;
1210

1311
namespace EasyAbp.AbpHelper.Gui.UpdateCheck
1412
{
@@ -17,16 +15,13 @@ public class UpdateCheckAppService : ApplicationService, IUpdateCheckAppService
1715
private const string LatestReleaseUri = "https://api.github.com/repos/EasyAbp/AbpHelper.GUI/releases/latest";
1816
private const int CacheExpirationMinutes = 10;
1917

20-
private readonly IJsonSerializer _jsonSerializer;
2118
private readonly IHttpClientFactory _httpClientFactory;
2219
private readonly IDistributedCache<UpdateCheckCacheItem> _cache;
2320

2421
public UpdateCheckAppService(
25-
IJsonSerializer jsonSerializer,
2622
IHttpClientFactory httpClientFactory,
2723
IDistributedCache<UpdateCheckCacheItem> cache)
2824
{
29-
_jsonSerializer = jsonSerializer;
3025
_httpClientFactory = httpClientFactory;
3126
_cache = cache;
3227
}
@@ -59,8 +54,8 @@ protected virtual async Task<string> RequestLatestVersionFromGithubRepositoryAsy
5954
client.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue("product", "1"));
6055

6156
var str = await client.GetStringAsync(LatestReleaseUri);
62-
var data = _jsonSerializer.Deserialize<JObject>(str);
63-
57+
var data = JObject.Parse(str);
58+
6459
var tagName = data["tag_name"]?.ToString() ?? "";
6560

6661
return tagName.Replace("v", "");
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"version": "2.12.0",
2+
"version": "2.12.1",
33
"name": "easyabp-abphelper-gui",
44
"private": true,
55
"dependencies": {
6-
"@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~3.1.0",
7-
"@abp/aspnetcore.components.server.leptonxlitetheme": "~3.1.0"
6+
"@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~3.1.3",
7+
"@abp/aspnetcore.components.server.leptonxlitetheme": "~3.1.3"
88
}
99
}

dotnet/src/EasyAbp.AbpHelper.Gui.Blazor/wwwroot/libs/timeago/locales/jquery.timeago.uz.js

100644100755
File mode changed.

dotnet/src/EasyAbp.AbpHelper.Gui.Blazor/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# yarn lockfile v1
33

44

5-
"@abp/aspnetcore.components.server.leptonxlitetheme@~3.1.0":
5+
"@abp/aspnetcore.components.server.leptonxlitetheme@~3.1.3":
66
version "3.1.3"
7-
resolved "https://registry.npmjs.org/@abp/aspnetcore.components.server.leptonxlitetheme/-/aspnetcore.components.server.leptonxlitetheme-3.1.3.tgz#d2abe0eea924cf4a52a84756c3c6091a903bb625"
7+
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.components.server.leptonxlitetheme/-/aspnetcore.components.server.leptonxlitetheme-3.1.3.tgz#d2abe0eea924cf4a52a84756c3c6091a903bb625"
88
integrity sha512-8XF7pQDRAvOTL8UQBMrpDMdHFTRlmosqUsFVg8XKY7kZkrGWEzuABLE0jbfviYlLuzHHMo/8VDqkDauMaCvILw==
99
dependencies:
1010
"@abp/aspnetcore.components.server.theming" "~8.1.3"
@@ -17,9 +17,9 @@
1717
"@abp/bootstrap" "~8.1.3"
1818
"@abp/font-awesome" "~8.1.3"
1919

20-
"@abp/aspnetcore.mvc.ui.theme.leptonxlite@~3.1.0":
20+
"@abp/aspnetcore.mvc.ui.theme.leptonxlite@~3.1.3":
2121
version "3.1.3"
22-
resolved "https://registry.npmjs.org/@abp/aspnetcore.mvc.ui.theme.leptonxlite/-/aspnetcore.mvc.ui.theme.leptonxlite-3.1.3.tgz#c0096f346760a93e6b3ef5059704de388b7e9c60"
22+
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.leptonxlite/-/aspnetcore.mvc.ui.theme.leptonxlite-3.1.3.tgz#c0096f346760a93e6b3ef5059704de388b7e9c60"
2323
integrity sha512-ztGbPTjrRzGtH+FNt0jwCnEMD60SjxQExi8WBgmeIzLViBk+F/jJhclZAQ2dkTe2IaPtpR7ftU6F8R9vAoXLdw==
2424
dependencies:
2525
"@abp/aspnetcore.mvc.ui.theme.shared" "~8.1.3"

electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "abphelper-gui",
33
"productName": "AbpHelper",
4-
"version": "2.12.0",
4+
"version": "2.12.1",
55
"license": "Apache-2.0",
66
"description": "AbpHelper is a tool that helps you with developing Abp vNext applications.",
77
"repository": "https://github.com/EasyAbp/AbpHelper.GUI",

0 commit comments

Comments
 (0)