Skip to content

Commit

Permalink
Use a dark theme for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Mar 23, 2020
1 parent dac03e8 commit 4d4542b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions docs/src/markdown/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- **FIX**: If we only have one pattern (exclusion patterns not included) we can disable unique path filtering on returns
as you cannot have a duplicate path with only one inclusion pattern.

## 6.0.0
## 6.0

- **NEW**: Tilde user expansion support via the new `GLOBTILDE` flag.
- **NEW**: `glob` by default now returns only unique results, regardless of whether multiple patterns that match the
Expand Down Expand Up @@ -50,7 +50,7 @@
- **FIX**: In `glob`, avoid using up too many file descriptors by acquiring all file/folder names under a directory in
one batch before recursing into other folders.

## 5.0.0
## 5.0

- **NEW**: Add `wcmatch.pathlib` which contains `pathlib` variants that uses `wcmatch.glob` instead of the default
Python glob.
Expand Down Expand Up @@ -96,7 +96,7 @@
- **FIX**: Fix regression with exclusion patterns that use braces in `glob`.
- **FIX**: Translate functions should have `NODIR` patterns exclude if matched not exclude if not matched.

## 4.0.0
## 4.0

- **NEW**: Deprecated `WcMatch` class methods `kill` and `reset`. `WcMatch` should be broken with a simple `break`
statement instead.
Expand Down Expand Up @@ -127,7 +127,7 @@
patterns to potentially avoid calling hidden if the pattern doesn't match. The reduced `lstat` calls improve
performance.

## 3.0.0
## 3.0

- **NEW**: `globsplit` and `fnsplit` have been deprecated. Users are encouraged to use the new `SPLIT` flag to allow
functions to use multiple wildcard paths delimited by `|`.
Expand Down Expand Up @@ -181,10 +181,10 @@

- **FIX**: Can't install due to requirements being assigned to setup opposed to install.

## 2.0.0
## 2.0

!!! danger "Breaking Changes"
Version 2.0.0 introduces breaking changes in regards to flags. This is meant to bring about consistency amongst the
Version 2.0 introduces breaking changes in regards to flags. This is meant to bring about consistency amongst the
provided libraries. Flag names have been changed in some cases, and logic has been inverted in some cases.

- **NEW**: Glob's `NOBRACE`, `NOGLOBSTAR`, and `NOEXTGLOB` flags are now `BRACE`, `GLOBSTAR`, and `EXTGLOB` and now
Expand Down Expand Up @@ -214,7 +214,7 @@
`''`, and if `''` is used, all files will be matched. This works better for when full path is enabled as you get the
same file matching logic.

## 1.0.0
## 1.0

- Initial release

Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ docs_dir: docs/src/markdown
theme:
name: material
palette:
primary: blue
accent: blue
primary: drac-purple
accent: drac-purple
font:
text: Roboto
code: Roboto Mono
Expand Down
2 changes: 1 addition & 1 deletion requirements/docs.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
mkdocs_pymdownx_material_extras==1.0b5
mkdocs_pymdownx_material_extras==1.0b10
mkdocs-git-revision-date-localized-plugin
pyspelling

0 comments on commit 4d4542b

Please sign in to comment.