Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e23734d
Updated license date
FlorianRappl Feb 25, 2024
d8175f6
Updated license ref
FlorianRappl Jan 26, 2025
e9c8988
Updated to 2025
FlorianRappl Jan 26, 2025
c20900b
Updated year
FlorianRappl Jan 26, 2025
fabc870
Update funding sources in FUNDING.yml
FlorianRappl Jul 27, 2026
8b339b4
Update copyright year in LICENSE file
FlorianRappl Jul 27, 2026
8564e1c
Started updating versions
FlorianRappl Jul 27, 2026
e6631c1
Fixed domain handling #36
FlorianRappl Jul 27, 2026
09f6f55
Improved packaging formats
FlorianRappl Jul 27, 2026
cd434ce
Fixed and improved for recent .NET
FlorianRappl Jul 27, 2026
c44493e
Migrate NUKE
FlorianRappl Jul 27, 2026
cd36a56
Enhanced CI/CD
FlorianRappl Jul 27, 2026
98aaf61
Adjusted frameworks
FlorianRappl Jul 27, 2026
4cd6ab9
Removed not required property
FlorianRappl Jul 27, 2026
d1dbd0b
Added documentation
FlorianRappl Jul 27, 2026
9e5651a
Updated time
FlorianRappl Jul 29, 2026
e7ecb1a
Added agents info
FlorianRappl Jul 30, 2026
0133070
Added localstorage and sessionstorage
FlorianRappl Jul 30, 2026
2ea5747
Change to be compatible for differerent domains
FlorianRappl Jul 30, 2026
02a8379
Improved API
FlorianRappl Jul 30, 2026
fd47ffe
Modernized and aligned
FlorianRappl Jul 31, 2026
a209063
Fixes and enhancements for the storage provider
FlorianRappl Jul 31, 2026
9132ea1
Implemented more useful DOM APIs
FlorianRappl Jul 31, 2026
eed9e96
Added broadcast channel
FlorianRappl Jul 31, 2026
bdc27b3
Added web locks
FlorianRappl Jul 31, 2026
cfa5345
Implemented more IO APIs
FlorianRappl Jul 31, 2026
d4c24ab
Moved Navigator to AngleSharp.Io
FlorianRappl Jul 31, 2026
326a763
Added XmlHttpRequester
FlorianRappl Jul 31, 2026
d84c8aa
Added fetch
FlorianRappl Jul 31, 2026
e47637d
Improved configuration
FlorianRappl Aug 1, 2026
18635d3
Improved IndexedDB implementation
FlorianRappl Aug 1, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"fallout.cli": {
"version": "11.0.18",
"commands": [
"fallout"
]
}
}
}
167 changes: 89 additions & 78 deletions .nuke/build.schema.json → .fallout/build.schema.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,55 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Build Schema",
"$ref": "#/definitions/build",
"definitions": {
"build": {
"type": "object",
"Host": {
"type": "string",
"enum": [
"AppVeyor",
"AzurePipelines",
"Bamboo",
"Bitbucket",
"Bitrise",
"GitHubActions",
"GitLab",
"Jenkins",
"Rider",
"SpaceAutomation",
"TeamCity",
"Terminal",
"TravisCI",
"VisualStudio",
"VSCode"
]
},
"ExecutableTarget": {
"type": "string",
"enum": [
"Clean",
"Compile",
"CreatePackage",
"Default",
"Package",
"PrePublish",
"Publish",
"PublishPackage",
"PublishPreRelease",
"PublishRelease",
"Restore",
"RunUnitTests"
]
},
"Verbosity": {
"type": "string",
"description": "",
"enum": [
"Verbose",
"Normal",
"Minimal",
"Quiet"
]
},
"FalloutBuild": {
"properties": {
"Configuration": {
"type": "string",
"description": "Configuration to build - Default is 'Debug' (local) or 'Release' (server)",
"enum": [
"Debug",
"Release"
]
},
"Continue": {
"type": "boolean",
"description": "Indicates to continue a previously failed build attempt"
Expand All @@ -23,25 +59,8 @@
"description": "Shows the help text for this build assembly"
},
"Host": {
"type": "string",
"description": "Host for execution. Default is 'automatic'",
"enum": [
"AppVeyor",
"AzurePipelines",
"Bamboo",
"Bitbucket",
"Bitrise",
"GitHubActions",
"GitLab",
"Jenkins",
"Rider",
"SpaceAutomation",
"TeamCity",
"Terminal",
"TravisCI",
"VisualStudio",
"VSCode"
]
"$ref": "#/definitions/Host"
},
"NoLogo": {
"type": "boolean",
Expand All @@ -62,10 +81,6 @@
"type": "string"
}
},
"ReleaseNotesFilePath": {
"type": "string",
"description": "ReleaseNotesFilePath - To determine the SemanticVersion"
},
"Root": {
"type": "string",
"description": "Root directory during build execution"
Expand All @@ -74,61 +89,57 @@
"type": "array",
"description": "List of targets to be skipped. Empty list skips all dependencies",
"items": {
"type": "string",
"enum": [
"Clean",
"Compile",
"CopyFiles",
"CreatePackage",
"Default",
"Package",
"PrePublish",
"Publish",
"PublishPackage",
"PublishPreRelease",
"PublishRelease",
"Restore",
"RunUnitTests"
]
"$ref": "#/definitions/ExecutableTarget"
}
},
"Solution": {
"type": "string",
"description": "Path to a solution file that is automatically loaded"
},
"Target": {
"type": "array",
"description": "List of targets to be invoked. Default is '{default_target}'",
"items": {
"type": "string",
"enum": [
"Clean",
"Compile",
"CopyFiles",
"CreatePackage",
"Default",
"Package",
"PrePublish",
"Publish",
"PublishPackage",
"PublishPreRelease",
"PublishRelease",
"Restore",
"RunUnitTests"
]
"$ref": "#/definitions/ExecutableTarget"
}
},
"Verbosity": {
"type": "string",
"description": "Logging verbosity during build execution. Default is 'Normal'",
"$ref": "#/definitions/Verbosity"
},
"BuildProjectFile": {
"type": [
"null",
"string"
],
"description": "Path to the build project (.csproj) relative to the repository root. Defaults to 'build/_build.csproj' when unset. Read by the Fallout global tool's in-tool runner."
}
}
}
},
"allOf": [
{
"properties": {
"AngleSharpVersion": {
"type": "string",
"description": "AngleSharp package version override (e.g. 1.0.0 for compatibility checks)"
},
"Configuration": {
"type": "string",
"enum": [
"Minimal",
"Normal",
"Quiet",
"Verbose"
]
"Debug",
"Release"
],
"description": "Configuration to build - Default is 'Debug' (local) or 'Release' (server)"
},
"ReleaseNotesFilePath": {
"type": "string",
"description": "ReleaseNotesFilePath - To determine the SemanticVersion"
},
"Solution": {
"type": "string",
"description": "Path to a solution file that is automatically loaded"
}
}
},
{
"$ref": "#/definitions/FalloutBuild"
}
}
}
]
}
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# These are supported funding model platforms

github: FlorianRappl
custom: https://salt.bountysource.com/teams/anglesharp
custom: ['https://www.paypal.me/FlorianRappl', 'https://buymeacoffee.com/florianrappl']
28 changes: 13 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
if: needs.can_document.outputs.value == 'true'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v5

- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v5
with:
node-version: "14.x"
node-version: "20.x"
registry-url: 'https://registry.npmjs.org'

- name: Install Dependencies
Expand All @@ -48,37 +48,35 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v5

- name: Setup dotnet
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
6.0.x
7.0.x
10.0.x

- name: Build
run: ./build.sh
run: ./build.sh -AngleSharpVersion 1.5.0

windows:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v5

- name: Setup dotnet
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
6.0.x
7.0.x
10.0.x

- name: Build
run: |
if ($env:GITHUB_REF -eq "refs/heads/main") {
.\build.ps1 -Target Publish
.\build.ps1 -Target Publish -AngleSharpVersion 1.5.0
} elseif ($env:GITHUB_REF -eq "refs/heads/devel") {
.\build.ps1 -Target PrePublish
.\build.ps1 -Target PrePublish -AngleSharpVersion 1.5.0
} else {
.\build.ps1
.\build.ps1 -AngleSharpVersion 1.5.0
}
10 changes: 6 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ local.properties
[Dd]ebug/
[Rr]elease/
[Bb]in/
[Bb]uild/
build/bin/
build/obj/
[Oo]bj/

# Visual Studio 2015 cache/options directory
Expand Down Expand Up @@ -171,7 +172,8 @@ Desktop.ini
*.egg
*.egg-info
dist
build
build/bin
build/obj
eggs
parts
var
Expand All @@ -195,5 +197,5 @@ pip-log.txt
# Mac crap
.DS_Store

# Nuke build tool
.nuke/temp
# Fallout build tool
.fallout/temp
Loading
Loading