Skip to content
This repository has been archived by the owner on Jan 15, 2023. It is now read-only.

Commit

Permalink
Chromely v5 release 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
Fiahblade committed Feb 23, 2020
1 parent a502234 commit 796c41f
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 18 deletions.
37 changes: 31 additions & 6 deletions src/Chromely.CefGlue/Chromely.CefGlue.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,51 @@
<ProductVersion>5.0.77.0-pre04</ProductVersion>
<AssemblyVersion>5.77.0.0</AssemblyVersion>
<FileVersion>5.0.77.0</FileVersion>
<Version>5.0.77.0-pre04</Version>
<Version>5.0.77.0</Version>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Product>Chromely.CefGlue</Product>
<Authors>Chromely Projects</Authors>
<Company>Chromely Projects</Company>
<Copyright>Copyright © 2017-2020 Chromely Projects</Copyright>
<PackageLicenseUrl>https://github.com/chromelyapps/Chromely/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/chromelyapps/Chromely</PackageProjectUrl>
<PackageIcon>chromely.png</PackageIcon>
<PackageTags>Cef Chromium HTML5 Desktop Chromely CefGlue Restful Ajax HTTP XHR MessageRouter .NET Core</PackageTags>
<Description>Chromely CefGlue implementation library - this is in .NET Standard 2.0 as it can be used in both .NET (Windows) and .NET Core (Windows, Linux, MacOS). Chromely.CefGlue version naming is based Chromely and Chromium versions implemented- major.minor.chromuim version.patch e.g 1.0.70.0.</Description>
<PackageReleaseNotes>
- Breaking changes!
- .NET Core 3.0 and MacOS Support - https://github.com/chromelyapps/Chromely/wiki/Migration-to-.NET-Core-3-and-MacOS-Support
</PackageReleaseNotes>
Projects Structure
- All projects are now .NET Standard 2.0
- Chromely.Core - no dependencies.
- Chromely.CefGlue - depends on Chromely.Core and embeds CefGlue source code and CefGlue default handlers.
- Chromely - primary - depends on Chromely.CefGlue and includes native gui implementation for Win, Linux and MacOS. All other non-CefGlue customization will be done here.

New Features
- MacOS support using native Cocoa API
- Full IOC - #106
- MVC- styled controller actions as discussed in #91
- LitJson was replaced by System.Text.Json.
- Optional configuration file - chromelyconfig.json
- Storable App/User settings - IChromelyAppSettings.
- Configuration has received a facelift (see more info link below for more info).

Fixes
- Fixed WinAPIHost not respecting WindowTitle (Windows)
- ToolTips (html-title) working and positioned correctly. (Linux)

Deprecation &amp; Discontinued
- Winapi was removed in favour of .NET Core 3. Win32 pinvoke functionalities will be sourced in pinvoke.net, shintadono's Win32 and other MIT licensed projects.
- CefSharp is no longer supported.
- Default Sup-process was removed for Windows. Sub-process is configurable and developers who need it can include sub-process fullpath in configuration.
- Real-time with Websocket server was removed.

For more info please see
https://github.com/chromelyapps/Chromely/releases/tag/v5.0.0
</PackageReleaseNotes>
<RepositoryType>Github Repository</RepositoryType>
<RepositoryUrl>https://github.com/chromelyapps/Chromely</RepositoryUrl>
<Configurations>Debug;Release;ReleaseLinux;DebugLinux</Configurations>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down Expand Up @@ -62,7 +87,7 @@
</ItemGroup>

<ItemGroup>
<None Include="chromely.png" Pack="true" PackagePath=""/>
<None Include="chromely.png" Pack="true" PackagePath="" />
</ItemGroup>

</Project>
37 changes: 31 additions & 6 deletions src/Chromely.Core/Chromely.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,51 @@
<ProductVersion>5.0.0.0-pre04</ProductVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<FileVersion>5.0.0.0</FileVersion>
<Version>5.0.0.0-pre04</Version>
<Version>5.0.0.0</Version>
<Product>Chromely.Core</Product>
<Authors>Chromely Projects</Authors>
<Company>Chromely Projects</Company>
<PackageTags>Cef Chromium HTML5 Desktop Chromely CefGlue Restful Ajax HTTP XHR MessageRouter NetStandard .NET Core</PackageTags>
<Description>This is a .NET Standard library. It is the base/core library required to build Chromely CefGlue apps on Windows, Linux and MacOS.</Description>
<Copyright>Copyright © 2017-2020 Chromely Projects</Copyright>
<PackageLicenseUrl>https://github.com/chromelyapps/Chromely/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/chromelyapps/Chromely</PackageProjectUrl>
<PackageIcon>chromely.png</PackageIcon>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>
- Breaking changes!
- .NET Core 3.0 and MacOS Support - https://github.com/chromelyapps/Chromely/wiki/Migration-to-.NET-Core-3-and-MacOS-Support
</PackageReleaseNotes>
Projects Structure
- All projects are now .NET Standard 2.0
- Chromely.Core - no dependencies.
- Chromely.CefGlue - depends on Chromely.Core and embeds CefGlue source code and CefGlue default handlers.
- Chromely - primary - depends on Chromely.CefGlue and includes native gui implementation for Win, Linux and MacOS. All other non-CefGlue customization will be done here.

New Features
- MacOS support using native Cocoa API
- Full IOC - #106
- MVC- styled controller actions as discussed in #91
- LitJson was replaced by System.Text.Json.
- Optional configuration file - chromelyconfig.json
- Storable App/User settings - IChromelyAppSettings.
- Configuration has received a facelift (see more info link below for more info).

Fixes
- Fixed WinAPIHost not respecting WindowTitle (Windows)
- ToolTips (html-title) working and positioned correctly. (Linux)

Deprecation &amp; Discontinued
- Winapi was removed in favour of .NET Core 3. Win32 pinvoke functionalities will be sourced in pinvoke.net, shintadono's Win32 and other MIT licensed projects.
- CefSharp is no longer supported.
- Default Sup-process was removed for Windows. Sub-process is configurable and developers who need it can include sub-process fullpath in configuration.
- Real-time with Websocket server was removed.

For more info please see
https://github.com/chromelyapps/Chromely/releases/tag/v5.0.0
</PackageReleaseNotes>
<RepositoryUrl>https://github.com/chromelyapps/Chromely</RepositoryUrl>
<RepositoryType>Github Repository</RepositoryType>
<Configurations>Debug;Release;ReleaseLinux;DebugLinux</Configurations>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down Expand Up @@ -55,7 +80,7 @@
</ItemGroup>

<ItemGroup>
<None Include="chromely.png" Pack="true" PackagePath=""/>
<None Include="chromely.png" Pack="true" PackagePath="" />
</ItemGroup>

</Project>
37 changes: 31 additions & 6 deletions src/Chromely/Chromely.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,51 @@
<ProductVersion>5.0.77.0-pre04</ProductVersion>
<AssemblyVersion>5.77.0.0</AssemblyVersion>
<FileVersion>5.0.77.0</FileVersion>
<Version>5.0.77.0-pre04</Version>
<Version>5.0.77.0</Version>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Product>Chromely</Product>
<Authors>Chromely Projects</Authors>
<Company>Chromely Projects</Company>
<Copyright>Copyright © 2017-2020 Chromely Projects</Copyright>
<PackageLicenseUrl>https://github.com/chromelyapps/Chromely/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/chromelyapps/Chromely</PackageProjectUrl>
<PackageIcon>chromely.png</PackageIcon>
<PackageTags>Cef Chromium HTML5 Desktop Chromely CefGlue Restful Ajax HTTP XHR MessageRouter .NET Core</PackageTags>
<Description>Primary Chromely implementation library - this is in .NET Standard 2.0 as it can be used in both .NET (Windows) and .NET Core (Windows, Linux, MacOS). Chromely version naming is based Chromely and Chromium versions implemented- major.minor.chromuim version.patch e.g 1.0.70.0.</Description>
<PackageReleaseNotes>
- Breaking changes!
- .NET Core 3.0 and MacOS Support - https://github.com/chromelyapps/Chromely/wiki/Migration-to-.NET-Core-3-and-MacOS-Support
</PackageReleaseNotes>
Projects Structure
- All projects are now .NET Standard 2.0
- Chromely.Core - no dependencies.
- Chromely.CefGlue - depends on Chromely.Core and embeds CefGlue source code and CefGlue default handlers.
- Chromely - primary - depends on Chromely.CefGlue and includes native gui implementation for Win, Linux and MacOS. All other non-CefGlue customization will be done here.

New Features
- MacOS support using native Cocoa API
- Full IOC - #106
- MVC- styled controller actions as discussed in #91
- LitJson was replaced by System.Text.Json.
- Optional configuration file - chromelyconfig.json
- Storable App/User settings - IChromelyAppSettings.
- Configuration has received a facelift (see more info link below for more info).

Fixes
- Fixed WinAPIHost not respecting WindowTitle (Windows)
- ToolTips (html-title) working and positioned correctly. (Linux)

Deprecation &amp; Discontinued
- Winapi was removed in favour of .NET Core 3. Win32 pinvoke functionalities will be sourced in pinvoke.net, shintadono's Win32 and other MIT licensed projects.
- CefSharp is no longer supported.
- Default Sup-process was removed for Windows. Sub-process is configurable and developers who need it can include sub-process fullpath in configuration.
- Real-time with Websocket server was removed.

For more info please see
https://github.com/chromelyapps/Chromely/releases/tag/v5.0.0
</PackageReleaseNotes>
<RepositoryType>Github Repository</RepositoryType>
<RepositoryUrl>https://github.com/chromelyapps/Chromely</RepositoryUrl>
<Configurations>Debug;Release;ReleaseLinux;DebugLinux</Configurations>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand All @@ -49,7 +74,7 @@
</PropertyGroup>

<ItemGroup>
<None Include="chromely.png" Pack="true" PackagePath=""/>
<None Include="chromely.png" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 796c41f

Please sign in to comment.