diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json
index 7fdfb014..2322915d 100644
--- a/.config/dotnet-tools.json
+++ b/.config/dotnet-tools.json
@@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"dotnet-outdated-tool": {
- "version": "4.6.4",
+ "version": "4.6.7",
"commands": [
"dotnet-outdated"
],
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ecb22d49..c4d332cb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,19 @@
# Changelog
+## 0.9.2 - 2025-02-26
+
+### ⬆️ Upgrade dependencies
+
+- Update nuget packages
+
+### 🐛 Fix a bug
+
+- Fix logs not in color
+
+### 🗑️ Deprecate code that needs to be cleaned up
+
+- Explicitly loading BlazorCodeMirror6.bundle.scp.css is unneeded and broken (#210)
+
## 0.9.1 - 2024-12-11
### 🐛 Fix a bug
diff --git a/CodeMirror6/CodeMirror6.csproj b/CodeMirror6/CodeMirror6.csproj
index 4db182e7..5394933f 100644
--- a/CodeMirror6/CodeMirror6.csproj
+++ b/CodeMirror6/CodeMirror6.csproj
@@ -9,7 +9,7 @@
GaelJ.BlazorCodeMirror6
true
GaelJ.BlazorCodeMirror6
- 0.9.1
+ 0.9.2
true
snupkg
true
@@ -40,8 +40,8 @@
-
-
+
+
diff --git a/CodeMirror6/NodeLib/src/index.ts b/CodeMirror6/NodeLib/src/index.ts
index 1e25a854..49895713 100644
--- a/CodeMirror6/NodeLib/src/index.ts
+++ b/CodeMirror6/NodeLib/src/index.ts
@@ -65,7 +65,6 @@ export { requestLinterRefresh }
let StyleTag: HTMLStyleElement | null = null
export async function onUpdate() {
- await loadCss("_content/GaelJ.BlazorCodeMirror6/GaelJ.BlazorCodeMirror6.bundle.scp.css")
if (StyleTag) {
const style = document.createElement('style');
style.textContent = StyleTag.textContent
@@ -115,8 +114,6 @@ export async function initCodeMirror(
return
}
- await loadCss("_content/GaelJ.BlazorCodeMirror6/GaelJ.BlazorCodeMirror6.bundle.scp.css")
-
if (setup.debugLogs === true) {
console.log(`Initializing CodeMirror instance ${id}`)
}
diff --git a/Examples.BlazorServer/Examples.BlazorServer.csproj b/Examples.BlazorServer/Examples.BlazorServer.csproj
index 382dfb29..437ca8e3 100644
--- a/Examples.BlazorServer/Examples.BlazorServer.csproj
+++ b/Examples.BlazorServer/Examples.BlazorServer.csproj
@@ -4,13 +4,13 @@
enable
false
enable
- 0.9.1
+ 0.9.2
-
+
diff --git a/Examples.BlazorServer/Properties/launchSettings.json b/Examples.BlazorServer/Properties/launchSettings.json
index ef8fa268..49d1ec2a 100644
--- a/Examples.BlazorServer/Properties/launchSettings.json
+++ b/Examples.BlazorServer/Properties/launchSettings.json
@@ -11,7 +11,7 @@
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
- "launchBrowser": true,
+ "launchBrowser": false,
"applicationUrl": "http://localhost:5188",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
@@ -20,7 +20,7 @@
"https": {
"commandName": "Project",
"dotnetRunMessages": true,
- "launchBrowser": true,
+ "launchBrowser": false,
"applicationUrl": "https://localhost:7045;http://localhost:5188",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
@@ -28,7 +28,7 @@
},
"IIS Express": {
"commandName": "IISExpress",
- "launchBrowser": true,
+ "launchBrowser": false,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
diff --git a/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj b/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj
index 777cbc72..63820733 100644
--- a/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj
+++ b/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj
@@ -4,10 +4,10 @@
enable
enable
false
- 0.9.1
+ 0.9.2
-
+
diff --git a/Examples.BlazorServerInteractive/Properties/launchSettings.json b/Examples.BlazorServerInteractive/Properties/launchSettings.json
index 77e1874c..cea12aca 100644
--- a/Examples.BlazorServerInteractive/Properties/launchSettings.json
+++ b/Examples.BlazorServerInteractive/Properties/launchSettings.json
@@ -12,7 +12,7 @@
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
- "launchBrowser": true,
+ "launchBrowser": false,
"applicationUrl": "http://localhost:5260",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
@@ -21,7 +21,7 @@
"https": {
"commandName": "Project",
"dotnetRunMessages": true,
- "launchBrowser": true,
+ "launchBrowser": false,
"applicationUrl": "https://localhost:7258;http://localhost:5260",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
@@ -29,7 +29,7 @@
},
"IIS Express": {
"commandName": "IISExpress",
- "launchBrowser": true,
+ "launchBrowser": false,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
diff --git a/Examples.BlazorWasm/Examples.BlazorWasm.csproj b/Examples.BlazorWasm/Examples.BlazorWasm.csproj
index 39ac1484..0df8de19 100644
--- a/Examples.BlazorWasm/Examples.BlazorWasm.csproj
+++ b/Examples.BlazorWasm/Examples.BlazorWasm.csproj
@@ -4,14 +4,14 @@
enable
enable
false
- 0.9.1
+ 0.9.2
-
-
+
+
diff --git a/Examples.BlazorWasm/Properties/launchSettings.json b/Examples.BlazorWasm/Properties/launchSettings.json
index a1e27c95..819eda5a 100644
--- a/Examples.BlazorWasm/Properties/launchSettings.json
+++ b/Examples.BlazorWasm/Properties/launchSettings.json
@@ -11,7 +11,7 @@
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
- "launchBrowser": true,
+ "launchBrowser": false,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "http://localhost:5253",
"environmentVariables": {
@@ -21,7 +21,7 @@
"https": {
"commandName": "Project",
"dotnetRunMessages": true,
- "launchBrowser": true,
+ "launchBrowser": false,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "https://localhost:7228;http://localhost:5253",
"environmentVariables": {
@@ -30,7 +30,7 @@
},
"IIS Express": {
"commandName": "IISExpress",
- "launchBrowser": true,
+ "launchBrowser": false,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
diff --git a/Examples.Common/Examples.Common.csproj b/Examples.Common/Examples.Common.csproj
index 7e6c250c..820b7b82 100644
--- a/Examples.Common/Examples.Common.csproj
+++ b/Examples.Common/Examples.Common.csproj
@@ -5,15 +5,15 @@
enable
enable
false
- 0.9.1
+ 0.9.2
-
-
+
+
diff --git a/NEW_CHANGELOG.md b/NEW_CHANGELOG.md
index e6716438..ff78bc12 100644
--- a/NEW_CHANGELOG.md
+++ b/NEW_CHANGELOG.md
@@ -1,3 +1,11 @@
+### ⬆️ Upgrade dependencies
+
+- Update nuget packages
+
### 🐛 Fix a bug
-- Fix CI with dotnet 9
+- Fix logs not in color
+
+### 🗑️ Deprecate code that needs to be cleaned up
+
+- Explicitly loading BlazorCodeMirror6.bundle.scp.css is unneeded and broken (#210)