Skip to content

Commit

Permalink
sec bump
Browse files Browse the repository at this point in the history
fixes https://github.com/clux/facemaulers/security/dependabot/14

Signed-off-by: clux <sszynrae@gmail.com>
  • Loading branch information
clux committed Jul 6, 2024
1 parent 93c2aaa commit f6e70b1
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 30 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ This repo uses [foam](https://foambubble.github.io/foam/) as a [campaign brain](

The webpage is using [`mkdocs`](https://www.mkdocs.org/) with [mkdocs-material](https://squidfunk.github.io/mkdocs-material/).

To browse locally in `code`; [clone + install extensions](https://foambubble.github.io/foam/#getting-started) to browes with [markdown links](https://marketplace.visualstudio.com/items?itemName=tchayen.markdown-links).
To browse locally:

- `code`; [clone repo + install extensions](https://foambubble.github.io/foam/#getting-started) to get working [markdown links](https://marketplace.visualstudio.com/items?itemName=tchayen.markdown-links)
- `hx` open with a good markdown language server (e.g. `marksman`) and jump with `goto definition`

## Organisation
Folders generally specify regions, these sometimes coincide entirely with chapters of the campaign, but often not due to the amount of quick teleports between them.
Expand Down
7 changes: 5 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ type: readme
DM notes and brain organisation from a 3.5 year D&D 5e campaign.

## Setup
This repo uses [`foam`](https://foambubble.github.io/foam/) as a [campaign brain](https://clux.github.io/probes/post/2020-09-27-second-brain/).
This repo was setup with [`foam`](https://foambubble.github.io/foam/) as a [campaign brain](https://clux.github.io/probes/post/2020-09-27-second-brain/).

The webpage is using [`mkdocs`](https://www.mkdocs.org/) with [mkdocs-material](https://squidfunk.github.io/mkdocs-material/).

To browse locally in `code`; [clone repo + install extensions](https://foambubble.github.io/foam/#getting-started) to get working [markdown links](https://marketplace.visualstudio.com/items?itemName=tchayen.markdown-links).
To browse locally:

- `code`; [clone repo + install extensions](https://foambubble.github.io/foam/#getting-started) to get working [markdown links](https://marketplace.visualstudio.com/items?itemName=tchayen.markdown-links)
- `hx` open with a good markdown language server (e.g. `marksman`) and jump with `goto definition`

## Organisation
Folders generally specify regions, these sometimes coincide entirely with chapters of the campaign, but often not due to the amount of quick teleports between them.
Expand Down
11 changes: 11 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,14 @@ serve:
stats:
#!/usr/bin/env sh
rg Players: -A 6 docs/recaps/ | rg "\- (\w*)" -r '$1' -o | sort | uniq -c | sort -hr
# helper to try-upgrade everything in the pip environment
upgrade:
#!/usr/bin/env bash
rm -rf ./venv
python3 -m venv venv
source venv/bin/activate
pip3 install mkdocs-material=="9.*"
pip3 install mkdocs-roamlinks-plugin
pip3 install mkdocs-exclude
pip3 freeze > requirements.txt
48 changes: 21 additions & 27 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,37 +1,31 @@
Babel==2.12.1
beautifulsoup4==4.12.2
certifi==2023.7.22
charset-normalizer==3.2.0
Babel==2.15.0
certifi==2024.7.4
charset-normalizer==3.3.2
click==8.1.7
colorama==0.4.6
cssselect==1.2.0
ghp-import==2.1.0
idna==3.4
Jinja2==3.1.2
lxml==4.9.3
Markdown==3.4.4
markdown2==2.4.10
MarkupSafe==2.1.3
idna==3.7
Jinja2==3.1.4
Markdown==3.6
MarkupSafe==2.1.5
mergedeep==1.3.4
mkdocs==1.5.2
mkdocs==1.6.0
mkdocs-exclude==1.0.2
mkdocs-material==9.2.2
mkdocs-material-extensions==1.1.1
mkdocs-get-deps==0.2.0
mkdocs-material==9.5.28
mkdocs-material-extensions==1.3.1
mkdocs-roamlinks-plugin==0.3.2
packaging==23.1
packaging==24.1
paginate==0.5.6
pathspec==0.11.2
platformdirs==3.10.0
Pygments==2.16.1
pymdown-extensions==10.1
pyquery==2.0.0
python-dateutil==2.8.2
pathspec==0.12.1
platformdirs==4.2.2
Pygments==2.18.0
pymdown-extensions==10.8.1
python-dateutil==2.9.0.post0
PyYAML==6.0.1
pyyaml_env_tag==0.1
readtime==3.0.0
regex==2023.8.8
requests==2.31.0
regex==2024.5.15
requests==2.32.3
six==1.16.0
soupsieve==2.4.1
urllib3==2.0.4
watchdog==3.0.0
urllib3==2.2.2
watchdog==4.0.1

0 comments on commit f6e70b1

Please sign in to comment.