Skip to content

Commit

Permalink
Cosmetics for the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed Mar 1, 2024
1 parent 415344f commit d66bcb2
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 224 deletions.
26 changes: 17 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 1.0.0

Released on ?.

- Fixed usage of document ready state (#87) @Sebbs128
- Updated to use AngleSharp v1
- Updated for Jint v3 (#89) @tomvanenckevort

# 0.15.0

Released on Sunday, June 12 2021.
Expand All @@ -16,12 +24,12 @@ Released on Tuesday, March 31 2020.

Released on Friday, September 6 2019.

- Added thread-based event loop implementation `JsEventLoop`
- Included new `WithEventLoop` configuration extensions
- Fixed missing `btoa` and `atob` functions (#55)
- Added `javascript:` URL handler (#47)
- Added new `WithEventLoop` configuration extensions
- Added support for .NET Standard 1.3 (#58)
- Added constructors to `window` (#12)
- Fixed `btoa` and `atob` missing (#55)
- Included `javascript:` URL handler (#47)
- Included support for .NET Standard 1.3 (#58)
- Added thread-based event loop implementation `JsEventLoop`

# 0.12.1

Expand All @@ -34,13 +42,13 @@ Released on Wednesday, May 15 2019.
Released on Tuesday, May 14 2019.

- Properly forward setting window.location (#31)
- Respect window.onload event (#42)
- Support for more APIs to enable jQuery (#43)
- Respect DOMContentLoaded event (#50)
- Restored compatibility with AngleSharp v0.12 (#51)
- Renamed to `AngleSharp.Js` (focus only on JavaScript) (#51)
- Renamed the `WithJavaScript` extension method to `WithJs`
- Changed the namespace from `AngleSharp.Scripting.JavaScript` to `AngleSharp.Js`
- Updated the namespace from `AngleSharp.Scripting.JavaScript` to `AngleSharp.Js`
- Added support for window.onload event (#42)
- Added support for more APIs to enable jQuery (#43)
- Added support for DOMContentLoaded event (#50)

# 0.5.1

Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ AngleSharp.Js contains code written by (in order of first pull request / commit)
* [Georgios Diamantopoulos](https://github.com/georgiosd)
* [miroslav22](https://github.com/miroslav22)
* [doominator42](https://github.com/doominator42)
* [Tom van Enckevort](https://github.com/tomvanenckevort)
* [Wayne Sebbens](https://github.com/Sebbs128)

Without these awesome people AngleSharp.Js could not exist. Thanks to everyone for your contributions! :beers:

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2013 - 2021 AngleSharp
Copyright (c) 2013 - 2024 AngleSharp

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# AngleSharp.Js

[![Build Status](https://img.shields.io/appveyor/ci/FlorianRappl/AngleSharp-Scripting.svg?style=flat-square)](https://ci.appveyor.com/project/FlorianRappl/AngleSharp-Scripting)
[![CI](https://github.com/AngleSharp/AngleSharp.Js/actions/workflows/ci.yml/badge.svg)](https://github.com/AngleSharp/AngleSharp.Js/actions/workflows/ci.yml)
[![GitHub Tag](https://img.shields.io/github/tag/AngleSharp/AngleSharp.Js.svg?style=flat-square)](https://github.com/AngleSharp/AngleSharp.Js/releases)
[![NuGet Count](https://img.shields.io/nuget/dt/AngleSharp.Js.svg?style=flat-square)](https://www.nuget.org/packages/AngleSharp.Js/)
[![Issues Open](https://img.shields.io/github/issues/AngleSharp/AngleSharp.Js.svg?style=flat-square)](https://github.com/AngleSharp/AngleSharp.Js/issues)
Expand Down Expand Up @@ -83,7 +83,7 @@ This project is supported by the [.NET Foundation](https://dotnetfoundation.org)

The MIT License (MIT)

Copyright (c) 2015 - 2020 AngleSharp
Copyright (c) 2015 - 2024 AngleSharp

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
34 changes: 22 additions & 12 deletions src/AngleSharp.Js.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,39 @@
<authors>AngleSharp</authors>
<owners>Florian Rappl</owners>
<license type="expression">MIT</license>
<repository type="git" url="https://github.com/AngleSharp/AngleSharp.Js" />
<projectUrl>https://anglesharp.github.io</projectUrl>
<icon>logo.png</icon>
<readme>README.md</readme>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Integrates a JavaScript engine to AngleSharp.</description>
<releaseNotes>https://github.com/AngleSharp/AngleSharp.Js/blob/master/CHANGELOG.md</releaseNotes>
<copyright>Copyright 2017-2021, AngleSharp</copyright>
<copyright>Copyright 2017-2024s, AngleSharp</copyright>
<tags>html html5 css css3 dom javascript scripting library js scripts runtime jint anglesharp angle</tags>
<dependencies>
<group targetFramework="netstandard2.0">
<dependency id="AngleSharp" version="0.14.0" />
<dependency id="Jint" version="2.10.4" />
<dependency id="AngleSharp" version="[1.0.0,2.0.0)" />
<dependency id="Jint" version="[3.0.0,4.0.0)" />
</group>
<group targetFramework="net46">
<dependency id="AngleSharp" version="0.14.0" />
<dependency id="Jint" version="2.10.4" />
</group>
<group targetFramework="net461">
<dependency id="AngleSharp" version="0.14.0" />
<dependency id="Jint" version="2.10.4" />
<group targetFramework="net462">
<dependency id="AngleSharp" version="[1.0.0,2.0.0)" />
<dependency id="Jint" version="[3.0.0,4.0.0)" />
</group>
<group targetFramework="net472">
<dependency id="AngleSharp" version="0.14.0" />
<dependency id="Jint" version="2.10.4" />
<dependency id="AngleSharp" version="[1.0.0,2.0.0)" />
<dependency id="Jint" version="[3.0.0,4.0.0)" />
</group>
<group targetFramework="net60">
<dependency id="AngleSharp" version="[1.0.0,2.0.0)" />
<dependency id="Jint" version="[3.0.0,4.0.0)" />
</group>
<group targetFramework="net70">
<dependency id="AngleSharp" version="[1.0.0,2.0.0)" />
<dependency id="Jint" version="[3.0.0,4.0.0)" />
</group>
<group targetFramework="net80">
<dependency id="AngleSharp" version="[1.0.0,2.0.0)" />
<dependency id="Jint" version="[3.0.0,4.0.0)" />
</group>
</dependencies>
</metadata>
Expand Down
5 changes: 4 additions & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
<PropertyGroup>
<Description>Integrates a JavaScript engine to AngleSharp.</Description>
<Product>AngleSharp.Js</Product>
<Version>0.15.0</Version>
<Version>1.0.0</Version>
<LangVersion>latest</LangVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)\Key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
</Project>
Binary file added src/Key.snk
Binary file not shown.
199 changes: 0 additions & 199 deletions tools/anglesharp.cake

This file was deleted.

0 comments on commit d66bcb2

Please sign in to comment.