Skip to content

Commit

Permalink
Packages version upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
Okeanij committed Jul 14, 2020
1 parent 38337a8 commit f5d137d
Show file tree
Hide file tree
Showing 39 changed files with 154 additions and 145 deletions.
10 changes: 5 additions & 5 deletions Client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sunengine-client",
"version": "2.11.9",
"version": "2.11.10",
"description": "SunEngine - web engine with support of blog, forum and articles functionality",
"productName": "SunEngine",
"author": "Dmitrij Polianin",
Expand All @@ -9,14 +9,14 @@
"dev run": "quasar dev"
},
"dependencies": {
"@quasar/extras": "^1.8.1",
"@quasar/extras": "^1.8.2",
"axios": "^0.19.2",
"js-lock": "^0.1.1",
"quasar": "^1.11.3",
"vue-i18n": "^8.17.7"
"quasar": "^1.12.11",
"vue-i18n": "^8.18.2"
},
"devDependencies": {
"@quasar/app": "^1.8.6",
"@quasar/app": "^1.9.6",
"babel-preset-proposals": "^0.3.0",
"glob": "^7.1.6",
"minimist": "^1.2.5",
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion Client/src/statics/PartialSkins/CenterHomePage/styles.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.partial-skin-center-home-page {
.index-page {
.index-page {z
display: flex;
align-items: center;
flex-direction: column;
Expand Down
Binary file not shown.
4 changes: 4 additions & 0 deletions Client/src/statics/PartialSkins/PaddingsHomePage/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"Name": "PaddingsHomePage",
"Description": "Make border adaptive paddings on index home page"
}
20 changes: 20 additions & 0 deletions Client/src/statics/PartialSkins/PaddingsHomePage/styles.css

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

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

23 changes: 23 additions & 0 deletions Client/src/statics/PartialSkins/PaddingsHomePage/styles.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.partial-skin-paddings-home-page {

$paddings: (6px 12px 24px);

@mixin page-paddings-ip($size) {
padding-right: $size !important;
padding-left: $size !important;
}

.index-page {
@media (max-width: 599px) {
@include page-paddings-ip(nth($paddings, 1));
}

@media (min-width: 600px) and (max-width: 1023px) {
@include page-paddings-ip(nth($paddings, 2));
}

@media (min-width: 1024px) {
@include page-paddings-ip(nth($paddings, 3));
}
}
}
2 changes: 1 addition & 1 deletion README.RU.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# SunEngine

<a href="#"><img src="https://img.shields.io/static/v1?label=%D0%92%D0%B5%D1%80%D1%81%D0%B8%D1%8F&message=v2.11.9&color=green"></a>
<a href="#"><img src="https://img.shields.io/static/v1?label=%D0%92%D0%B5%D1%80%D1%81%D0%B8%D1%8F&message=v2.11.10&color=green"></a>
<a href="#"><img src="https://github.com/sunengine/SunEngine/workflows/.NET%20Core/badge.svg" ></a>
<a href="#"><img src="https://github.com/sunengine/SunEngine/workflows/Quasar/badge.svg" ></a>
<br/>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Build on AspNet Core, VueJS, Quasar.</h3>

# SunEngine

<a href="#"><img src="https://img.shields.io/static/v1?label=Version&message=v2.11.9&color=green"></a>
<a href="#"><img src="https://img.shields.io/static/v1?label=Version&message=v2.11.10&color=green"></a>
<a href="#"><img src="https://github.com/sunengine/SunEngine/workflows/.NET%20Core/badge.svg" ></a>
<a href="#"><img src="https://github.com/sunengine/SunEngine/workflows/Quasar/badge.svg" ></a>
<br/>
Expand Down
6 changes: 3 additions & 3 deletions Server/SunEngine.Admin/Controllers/CacheAdminController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace SunEngine.Admin.Controllers
{
public class CacheAdminController : BaseAdminController
{
protected readonly ISectionsCache SectionsCache;
protected readonly ISectionsCache sectionsCache;
protected readonly ICategoriesCache categoriesCache;
protected readonly IMenuCache menuCache;
protected readonly SpamProtectionCache spamProtectionCache;
Expand All @@ -28,7 +28,7 @@ public CacheAdminController(
SanitizerService sanitizerService,
IServiceProvider serviceProvider) : base(serviceProvider)
{
this.SectionsCache = sectionsCache;
this.sectionsCache = sectionsCache;
this.categoriesCache = categoriesCache;
this.menuCache = menuCache;
this.spamProtectionCache = spamProtectionCache;
Expand All @@ -40,7 +40,7 @@ public CacheAdminController(

public IActionResult ResetAllCache()
{
SectionsCache.Initialize();
sectionsCache.Initialize();
categoriesCache.Initialize();
menuCache.Initialize();
rolesCache.Initialize();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using SunEngine.Admin.Managers;
using SunEngine.Admin.Services;

namespace SunEngine.Admin.Controllers
{
Expand Down
2 changes: 0 additions & 2 deletions Server/SunEngine.Admin/Managers/ConfigurationManager.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using LinqToDB;
using LinqToDB.Data;
using SunEngine.Core.Cache.Services;
using SunEngine.Core.Configuration;
using SunEngine.Core.Configuration.ConfigItemType;
Expand Down
7 changes: 0 additions & 7 deletions Server/SunEngine.Admin/Managers/SectionsAdminManager.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text.Json;
using System.Threading.Tasks;
using LinqToDB;
using Microsoft.AspNetCore.Mvc;
using SunEngine.Admin.Presenters;
using SunEngine.Core.Cache.Services;
using SunEngine.Core.Configuration.ConfigItemType;
using SunEngine.Core.DataBase;
using SunEngine.Core.Models;
using SunEngine.Core.Services;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using LinqToDB;
Expand Down
2 changes: 0 additions & 2 deletions Server/SunEngine.Admin/Presenters/SectionsAdminPresenter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,9 @@
using System.Threading.Tasks;
using LinqToDB;
using SunEngine.Admin.Presenters.ViewModels;
using SunEngine.Core.Cache.Services;
using SunEngine.Core.Configuration.ConfigItemType;
using SunEngine.Core.DataBase;
using SunEngine.Core.Models;
using SunEngine.Core.Sections;
using SunEngine.Core.Security;
using SunEngine.Core.Services;

Expand Down
2 changes: 1 addition & 1 deletion Server/SunEngine.Admin/SunEngine.Admin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NJsonSchema" Version="10.1.18" />
<PackageReference Include="NJsonSchema" Version="10.1.23" />
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
<PackageReference Include="System.Runtime.Caching" Version="4.7.0" />
</ItemGroup>
Expand Down
1 change: 0 additions & 1 deletion Server/SunEngine.Cli/ServerRun.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Namotion.Reflection;
using SunEngine.Core.Configuration;
using SunEngine.Core.DataBase;
using SunEngine.Core.Services;
Expand Down
1 change: 0 additions & 1 deletion Server/SunEngine.Cli/Startup.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Text.Json;
using LinqToDB.Common;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
Expand Down
2 changes: 1 addition & 1 deletion Server/SunEngine.Cli/SunEngine.Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>latest</LangVersion>
<Version>2.11.9</Version>
<Version>2.11.10</Version>
<Title>SunEngine</Title>
<Authors>Dmitrij Polianin</Authors>
<Description>Site engine with blog, forum and articles functionalities on Asp.Net Core and Vue.Js.</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using System.Linq;
using System.Text.Json;
using SunEngine.Core.Cache.Services;
using SunEngine.Core.Errors.Exceptions;
using SunEngine.Core.Models;

namespace SunEngine.Core.Cache.CacheModels
Expand Down
2 changes: 0 additions & 2 deletions Server/SunEngine.Core/Cache/Services/SectionsCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
using System.Collections.Immutable;
using System.Linq;
using SunEngine.Core.Cache.CacheModels;
using SunEngine.Core.Controllers;
using SunEngine.Core.DataBase;
using SunEngine.Core.Models;
using SunEngine.Core.Services;

namespace SunEngine.Core.Cache.Services
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System;
using Microsoft.Extensions.DependencyInjection;
using SunEngine.Core.Presenters;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using System;

namespace SunEngine.Core.Configuration.ConfigItemType
{
public class BooleanItem : ConfigItem<bool>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using System;

namespace SunEngine.Core.Configuration.ConfigItemType
{
public class IntegerItem : ConfigItem<int>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using SunEngine.Core.Utils;

namespace SunEngine.Core.Configuration.ConfigItemType
{
public class JsonItem : StringItem
Expand Down
Loading

0 comments on commit f5d137d

Please sign in to comment.