Skip to content

Commit

Permalink
Merge pull request #274 from estruyf/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf authored Feb 28, 2022
2 parents 935b223 + c9c38ef commit f5f558d
Show file tree
Hide file tree
Showing 134 changed files with 5,302 additions and 1,768 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Change Log

## [6.1.0] - 2022-02-28 - [Release notes](https://beta.frontmatter.codes/updates/v6.1.0)

### ✨ New features

- [#176](https://github.com/estruyf/vscode-front-matter/issues/176): New `block` field type that allows you to you to define a group of fields which can be used to create a list of data

### 🎨 Enhancements

- Updated the activity bar icon for better visibility
- Storing the panel collapse section states
- [#241](https://github.com/estruyf/vscode-front-matter/issues/241): Added taxonomy limit field property which allows you to limit the number of selections
- [#242](https://github.com/estruyf/vscode-front-matter/issues/242): Keep comments at the root of the front matter
- [#248](https://github.com/estruyf/vscode-front-matter/issues/248): Added support for front matter highlighting to all file types specified in `frontMatter.content.supportedFileTypes`
- [#255](https://github.com/estruyf/vscode-front-matter/issues/255): Added support for default values on block fields / data creation
- [#257](https://github.com/estruyf/vscode-front-matter/issues/257): Allow preview images to be used in multi-dimensional fields
- [#271](https://github.com/estruyf/vscode-front-matter/issues/271): Added image size placeholders for media snippets

### ⚡️ Optimizations

- Show the data item its details when clicking on the record
- Refactoring of the explorer view panel listeners
- Added `{{now}}` placeholder to the publishing date for content creation
- [#243](https://github.com/estruyf/vscode-front-matter/issues/243): Refactoring front matter parsing

### 🐞 Fixes

- [#247](https://github.com/estruyf/vscode-front-matter/issues/247): Fix the front matter highlighting in markdown documents
- [#261](https://github.com/estruyf/vscode-front-matter/issues/261): Fix to allow that tag and category fields can be renamed
- [#264](https://github.com/estruyf/vscode-front-matter/issues/264): Fix for Windows paths on content folder registration
- [#268](https://github.com/estruyf/vscode-front-matter/issues/268): Fix for panel which only shows loading indicator

## [6.0.0] - 2022-01-25 - [Release Notes](https://beta.frontmatter.codes/updates/v6.0.0)

### ✨ New features
Expand Down
15 changes: 10 additions & 5 deletions assets/media/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}

.inherit {
position: inherit !important;
position: relative !important;
}

.z-10 { z-index: 10 !important; }
Expand Down Expand Up @@ -143,6 +143,7 @@
}

.article__tags {
position: relative;
margin-bottom: 1rem;
}

Expand All @@ -165,6 +166,10 @@
border: 1px solid var(--vscode-inputValidation-infoBorder);
}

.article__tags__input input:disabled {
border-color: transparent;
}

.article__tags__input.freeform {
position: relative;
}
Expand Down Expand Up @@ -448,17 +453,17 @@ input:checked + .field__toggle__slider:before {

.vscode-dark .metadata_field__box {
background: rgba(255, 255, 255, 0.1);
border: 2px dashed rgba(255, 255, 255, 0.2);
border: 1px dashed rgba(255, 255, 255, 0.2);
}

.vscode-light .metadata_field__box {
background: rgba(0, 0, 0, 0.1);
border: 2px dashed rgba(0, 0, 0, 0.2);
border: 1px dashed rgba(0, 0, 0, 0.2);
}

.metadata_field__box {
background: rgba(255, 255, 255, 0.1);
border: 2px dashed rgba(255, 255, 255, 0.2);
border: 1px dashed rgba(255, 255, 255, 0.2);
margin-bottom: .5rem;
padding: .5rem 1rem;
}
Expand Down Expand Up @@ -634,7 +639,7 @@ input:checked + .field__toggle__slider:before {

.metadata_field__preview_image__button {
background-color: transparent;
border: 2px dashed var(--vscode-button-background);
border: 1px dashed var(--vscode-button-background);
padding: 1.5rem;
filter: brightness(85%);
}
Expand Down
Loading

0 comments on commit f5f558d

Please sign in to comment.