Skip to content

Commit

Permalink
Updated bundle scripts and README (OutSystems#95)
Browse files Browse the repository at this point in the history
* Update bundle and README

* Update README.md

* Update README.md

* Bump version to trigger redeploy
  • Loading branch information
alvesmiguel1 authored Jul 11, 2023
1 parent d5d5cc8 commit 6ae2541
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CefGlue.Demo.Avalonia/bundle-arm64.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

dotnet msbuild -t:BundleApp -p:RuntimeIdentifier=osx-arm64
dotnet msbuild -t:BundleApp -p:RuntimeIdentifier=osx-arm64 -p:Platform=ARM64

TARGETAPP=bin/Debug/ARM64/net6.0/osx-arm64/publish/CefGlueDemoAvalonia.app/Contents/MacOS
TARGETAPP=bin/ARM64/Debug/net6.0/osx-arm64/publish/CefGlueDemoAvalonia.app/Contents/MacOS
chmod +x "$TARGETAPP/CefGlueBrowserProcess/Xilium.CefGlue.BrowserProcess"
chmod +x "$TARGETAPP/Xilium.CefGlue.Demo.Avalonia"
4 changes: 2 additions & 2 deletions CefGlue.Demo.Avalonia/bundle-x64.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

dotnet msbuild -t:BundleApp -p:RuntimeIdentifier=osx-x64
dotnet msbuild -t:BundleApp -p:RuntimeIdentifier=osx-x64 -p:Platform=x64

TARGETAPP=bin/Debug/x64/net6.0/osx-x64/publish/CefGlueDemoAvalonia.app/Contents/MacOS
TARGETAPP=bin/x64/Debug/net6.0/osx-x64/publish/CefGlueDemoAvalonia.app/Contents/MacOS
chmod +x "$TARGETAPP/CefGlueBrowserProcess/Xilium.CefGlue.BrowserProcess"
chmod +x "$TARGETAPP/Xilium.CefGlue.Demo.Avalonia"
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<PropertyGroup>
<PackageOutputPath>$(MSBuildProjectDirectory)\..\Nuget\output</PackageOutputPath>
<Version>106.5249.9</Version>
<Version>106.5249.10</Version>
<Authors>XiliumHQ,OutSystems</Authors>
<Product>CefGlue</Product>
<AssemblyTitle>CefGlue</AssemblyTitle>
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ CefGlue lets you embed Chromium in .NET apps. It is a .NET wrapper control aroun
It can be used from C# or any other CLR language and provides both Avalonia and WPF web browser control implementations.
The Avalonia implementation runs on Windows and macOS. Linux is not supported yet.

Currently only x64 architecture is supported.
Currently only x64 and ARM64 architectures are supported.

## Releases
Stable binaries are released on NuGet, and contain everything you need to embed Chromium in your .NET/CLR application.
- [![CefGlue.Avalonia](https://img.shields.io/nuget/v/CefGlue.Avalonia.svg?style=flat&label=CefGlue-Avalonia)](https://www.nuget.org/packages/CefGlue.Avalonia/)
- [![CefGlue.Avalonia.ARM64](https://img.shields.io/nuget/v/CefGlue.Avalonia.ARM64.svg?style=flat&label=CefGlue-Avalonia-ARM64)](https://www.nuget.org/packages/CefGlue.Avalonia.ARM64/)
- [![CefGlue.Common](https://img.shields.io/nuget/v/CefGlue.Common.svg?style=flat&label=CefGlue-Common)](https://www.nuget.org/packages/CefGlue.Common/)
- [![CefGlue.Common.ARM64](https://img.shields.io/nuget/v/CefGlue.Common.ARM64.svg?style=flat&label=CefGlue-Common-ARM64)](https://www.nuget.org/packages/CefGlue.Common.ARM64/)
- [![CefGlue.WPF](https://img.shields.io/nuget/v/CefGlue.WPF.svg?style=flat&label=CefGlue-WPF)](https://www.nuget.org/packages/CefGlue.WPF/)
- [![CefGlue.WPF.ARM64](https://img.shields.io/nuget/v/CefGlue.WPF.ARM64.svg?style=flat&label=CefGlue-WPF-ARM64)](https://www.nuget.org/packages/CefGlue.WPF.ARM64/)

## Documentation
See the [Avalonia sample](CefGlue.Demo.Avalonia) or [WPF sample](CefGlue.Demo.WPF) projects for example web browsers built with CefGlue. They demo some of the available features.

0 comments on commit 6ae2541

Please sign in to comment.