Skip to content

Commit 7d46fe0

Browse files
authored
Merge pull request #39 from OfficerHalf/release/2.3.0
Release/2.3.0
2 parents e18b4ed + 589ffd0 commit 7d46fe0

File tree

7 files changed

+12
-5
lines changed

7 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 2.3.0
2+
3+
## Features
4+
5+
- Glob matching support. Contributed by @rliugorilla!
6+
17
# 2.2.0
28

39
## Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Install from the community plugin registry under the name Auto Class, by using t
1010

1111
### Use
1212

13-
Classes can be applied based on a note's path or tags. In settings, configure a folder path or tag and the classes to apply to the children of that folder or the files with that tag
13+
Classes can be applied based on a note's path or tags. In settings, configure a folder path or tag and the classes to apply to the children of that folder or the files with that tag. For advanced use-cases, enable glob matching in settings.
1414

1515
![AutoClass](doc/screenshot.png)
1616

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "auto-class",
33
"name": "Auto Class",
4-
"version": "2.2.0",
4+
"version": "2.3.0",
55
"minAppVersion": "0.13.11",
66
"description": "Automatically apply CSS classes to the markdown view based on a note's path and tags.",
77
"author": "OfficerHalf",

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "auto-class",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "Automatically apply CSS classes to the markdown view based on a note's path and tags.",
55
"main": "main.js",
66
"scripts": {

src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ export const DEFAULT_SETTINGS: AutoClassPluginSettings = {
66
{ path: 'Example Path/Subfolder/', classes: ['example-class'], scope: ClassMatchScope.Read },
77
{ tag: '#ExampleTag', classes: ['another-class'], scope: ClassMatchScope.Edit }
88
],
9-
version: '2.2.0'
9+
version: '2.3.0'
1010
};

versions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"2.3.0": "0.13.11",
23
"2.2.0": "0.13.11",
34
"2.1.0": "0.12.12",
45
"2.0.0": "0.12.12",

0 commit comments

Comments
 (0)