-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from gaelj/release
Release 0.6.4
- Loading branch information
Showing
17 changed files
with
98 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { EditorState, StateField, StateEffect, Extension } from "@codemirror/state"; | ||
|
||
|
||
const idField = StateField.define<string>({ | ||
create() { | ||
return "" | ||
}, | ||
update(value, tr) { | ||
return value; | ||
} | ||
}); | ||
|
||
export function createEditorWithId(id: string): Extension { | ||
return idField.init(() => id) | ||
} | ||
|
||
export function getIdFromState(state: EditorState): string { | ||
return state.field(idField) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,15 @@ | ||
### ✨ Introduce new features | ||
|
||
- Add ScrollIntoView command | ||
|
||
### ⚡️ Improve performance | ||
|
||
- Don't dispatch empty changes in setConfiguration | ||
- Add ShowMarkdownControlCharactersAroundCursor parameter | ||
|
||
### ⬆️ Upgrade dependencies | ||
|
||
- Update Microsoft.AspNetCore.Components.Web to 8.0.2 | ||
- Update Microsoft to 8.0.2 | ||
|
||
### 🎨 Improve structure / format of the code | ||
|
||
- Cleanup diagrams | ||
|
||
### 🔊 Add or update logs | ||
|
||
- Add loggings for local storage | ||
|
||
### 🔧 Add or update configuration files | ||
|
||
- Add github source link | ||
|
||
### 🗑️ Deprecate code that needs to be cleaned up | ||
|
||
- Remove useless localStorageKey copy | ||
- Improve local storage management | ||
|
||
### 🚚 Move or rename resources (e.g., files, paths) | ||
### 💄 Add or update the UI and style files | ||
|
||
- Move initial logs earlier | ||
- Ensure correct aspect ratio of svg diagrams |