Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge for v5.1.0 #148

Merged
merged 26 commits into from
Oct 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
3416e55
Fix rending more hooks
estruyf Oct 8, 2021
4494b15
#141 - Page bundle functionality
estruyf Oct 11, 2021
f4a499a
5.1.0
estruyf Oct 11, 2021
2b20cf9
Updated changelog
estruyf Oct 11, 2021
b2709eb
#141 - Support opening of the page bundle folder
estruyf Oct 11, 2021
ce92444
Updated dashboard icon
estruyf Oct 11, 2021
c58a5c6
#142 - Fix for unknown tags
estruyf Oct 11, 2021
f8b7870
Updated changlog
estruyf Oct 11, 2021
c11be0e
#143 - Fix for recent files unique values
estruyf Oct 11, 2021
70099dc
#144 - Fix date value issue
estruyf Oct 11, 2021
df239f2
#144 - Pass a default value when null
estruyf Oct 11, 2021
fae7ab8
Date to string fix
estruyf Oct 11, 2021
0be91c1
#141 - Added support for page bundles with templates
estruyf Oct 11, 2021
8f47cbf
#141 - Merge content creation logic to ArticleHelper
estruyf Oct 12, 2021
defffc4
Remove unused settings
estruyf Oct 12, 2021
8198ce2
Added VSCode webcomponents
estruyf Oct 12, 2021
f51fec5
Fix issue in sorting of taxonomy picker
estruyf Oct 12, 2021
986fd95
#145 - Moved folder registration settings
estruyf Oct 12, 2021
b4cdc4f
Version fixes
estruyf Oct 12, 2021
0590cec
Add version and environment details
estruyf Oct 12, 2021
d97a11f
#146 - Date parsing logic added with fallbacks
estruyf Oct 12, 2021
7d5505d
Updated changelog
estruyf Oct 12, 2021
76b5e99
File check
estruyf Oct 13, 2021
5cc8352
Merge branch 'dev' of github.com:estruyf/vscode-front-matter into dev
estruyf Oct 13, 2021
2fe7c52
#147 - Error boundary added for metadata fields
estruyf Oct 13, 2021
5667906
Update changelog for release
estruyf Oct 13, 2021
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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Change Log

## [5.1.0] - 2021-10-13

### 🎨 Enhancements

- [#141](https://github.com/estruyf/vscode-front-matter/issues/141): Allow content creation for page bundles or single files
- [#145](https://github.com/estruyf/vscode-front-matter/issues/145): Moved folder registration settings to `frontmatter.json` file
- [#147](https://github.com/estruyf/vscode-front-matter/issues/147): Error boundary added for metadata fields

### 🐞 Fixes

- Rendered more hooks than during the previous render in `FileList`
- [#142](https://github.com/estruyf/vscode-front-matter/issues/142): Fix for unknown tags where it throws an error
- [#143](https://github.com/estruyf/vscode-front-matter/issues/143): Fix for duplicate values in the file list
- [#144](https://github.com/estruyf/vscode-front-matter/issues/144): Fix for `toISOString` does not exist on object
- [#146](https://github.com/estruyf/vscode-front-matter/issues/146): Date parsing logic added with fallbacks

## [5.0.0] - 2021-10-07 - [Release Notes](https://beta.frontmatter.codes/updates/v5.0.0)

### ✨ New features
Expand Down
12 changes: 12 additions & 0 deletions assets/icons/frontmatter-short-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions assets/icons/frontmatter-short-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions assets/media/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,25 @@ input:checked + .field__toggle__slider:before {
margin-right: .5rem;
}

.metadata_field__error {
color: var(--vscode-errorForeground);
display: flex;
justify-content: space-between;
align-items: center;
}

.metadata_field__error button {
color: var(--vscode-button-secondaryForeground);
background-color: var(--vscode-button-secondaryBackground);
padding-left: 1rem;
padding-right: 1rem;
width: auto;
}

.metadata_field__error button:hover {
background-color: var(--vscode-button-secondaryHoverBackground);
}

.metadata_field__input, .metadata_field__input:focus,
.metadata_field__textarea, .metadata_field__textarea:focus {
outline: none;
Expand Down
178 changes: 133 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading