Skip to content

Commit

Permalink
Merge pull request #195 from gaelj/release
Browse files Browse the repository at this point in the history
πŸ”– Bump version to 0.8.12
  • Loading branch information
gaelj authored Nov 6, 2024
2 parents 4d0f6ed + c081cab commit ac82a12
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -479,5 +479,6 @@ $RECYCLE.BIN/
# Auto-generated files

**/wwwroot/*.js
**/wwwroot/*.map

build/**/*
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 0.8.12 - 2024-11-06

### ⚑️ Improve performance

- Add attribute `data-permanent` to container div

### πŸ“ Add or update documentation

- Add FAQ about blazor server interactive
- Include JS source maps in release

### πŸ™ˆ Add or update a .gitignore file

- git ignore map files

## 0.8.11 - 2024-10-22

### βͺ Revert changes
Expand Down
2 changes: 1 addition & 1 deletion CodeMirror6/CodeMirror6.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AssemblyName>GaelJ.BlazorCodeMirror6</AssemblyName>
<IsPackable>true</IsPackable>
<PackageId>GaelJ.BlazorCodeMirror6</PackageId>
<Version>0.8.11</Version>
<Version>0.8.12</Version>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
2 changes: 1 addition & 1 deletion CodeMirror6/CodeMirror6WrapperInternal.razor
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</div>
}

<div id=@SetupId @attributes=@AdditionalAttributes style=@EditorStyle>
<div id=@SetupId @attributes=@AdditionalAttributes style=@EditorStyle data-permanent>
</div>

<div id=@BottomBarId>
Expand Down
1 change: 1 addition & 0 deletions CodeMirror6/NodeLib/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export default {
dir: '../wwwroot',
format: "esm",
name: 'CodeMirror',
sourcemap: true,
},
plugins: [commonjs(), json(), nodeResolve(), typescript()],
};
2 changes: 1 addition & 1 deletion Examples.BlazorServer/Examples.BlazorServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>0.8.11</Version>
<Version>0.8.12</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
<Version>0.8.11</Version>
<Version>0.8.12</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Sentry.AspNetCore" Version="4.12.0" />
Expand Down
2 changes: 1 addition & 1 deletion Examples.BlazorWasm/Examples.BlazorWasm.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
<Version>0.8.11</Version>
<Version>0.8.12</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser-wasm" />
Expand Down
2 changes: 1 addition & 1 deletion Examples.Common/Examples.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<Version>0.8.11</Version>
<Version>0.8.12</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
Expand Down
17 changes: 7 additions & 10 deletions NEW_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
### βͺ Revert changes
### ⚑️ Improve performance

- Remove code comments
- Add attribute `data-permanent` to container div

### ✨ Introduce new features

- Add InitializeAsync method to allow forced re-init if needed (Issue rendering after the first time #187)

### πŸ› Fix a bug
### πŸ“ Add or update documentation

- Fix versioning
- Add FAQ about blazor server interactive
- Include JS source maps in release

### πŸ“ Add or update documentation
### πŸ™ˆ Add or update a .gitignore file

- Update changelog for 0.8.11
- git ignore map files
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ We welcome contributions!
## FAQs / Troubleshooting

- If you have npm / rollup errors when building (for example after pulling recent changes), `dotnet clean` will delete the `node_modules` directory. Then run `dotnet build` again.
- If you are using Blazor Server Interactive rendering mode, you must include `<HeadOutlet @rendermode="InteractiveServer" />` in the `head` section of [`App.razor`](Examples.BlazorServerInteractive/Components/App.razor). Not doing so will break the editor when navigating to it after the initial page load.

## Changelog

Expand Down

0 comments on commit ac82a12

Please sign in to comment.