Skip to content

Commit

Permalink
build: release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nathonius committed Nov 13, 2021
1 parent 3f1b4e8 commit 6a200f5
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 1.4.0

## Features

- Revamp settings. Now you can update a path with a new scope, new folder, and add or remove classes.
- Configured paths can be re-ordered by dragging.
- Use icons to show the scope of a path.

## Fixes

- Ensure the plugin works for both linked and unlinked panes.

# 1.3.0

## Features
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "auto-class",
"name": "Auto Class",
"version": "1.3.0",
"version": "1.4.0",
"minAppVersion": "0.12.12",
"description": "Automatically apply CSS classes to the markdown view based on a note's path.",
"author": "OfficerHalf",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auto-class",
"version": "1.3.0",
"version": "1.4.0",
"description": "Automatically apply CSS classes to the markdown view based on a note's path.",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import { AutoClassPluginSettings } from './interfaces';

export const DEFAULT_SETTINGS: AutoClassPluginSettings = {
paths: [{ path: 'Example Path/Subfolder/', classes: ['example-class'], scope: ClassPathScope.Preview }],
version: '1.3.0'
version: '1.4.0'
};
1 change: 1 addition & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"1.4.0": "0.12.12",
"1.3.0": "0.12.12",
"1.2.1": "0.12.12",
"1.2.0": "0.12.12",
Expand Down

0 comments on commit 6a200f5

Please sign in to comment.