mirror of
https://github.com/TagStudioDev/TagStudio.git
synced 2026-01-28 22:01:24 +00:00
Fixes: #200 Fixes: #365 Fixes: #512 Fixes: #800 fix(pyproject): resolve mix-up of mypy and pytest chore(ci): remove legacy scripts chore: format with new mypy rules; fix translation test wip(ci/mypy): remove config flag fix(pyinstaller): use correct dict access fix(resources): usage in ts_qt.py feat(nix/package): validate tests with pytest hook fix(nix/package): remove old dependency patch feat(nix): support Darwin fix(nix/package): move check deps to checkInputs fix(nix/shell): typo fix(nix/shell): correctly wrap Python with Qt args fix(pyproject): specify mypy-extensions feat(nix/package): provide pillow-jxl-plugin nix(nix/package): split into multiple files, allow overriding of JXL and vtf2img fix(nix/shell): provide FFmpeg on runtime feat(flake): output pillow-jxl-plugin and vtf2img fix(nix/package): load pipewire feat(nix/package): run tests on pillow-jxl-plugin fix: remove extra noqa comment docs: update installation docs docs: shrink table size on docs site nit(nix/package): pipewire not needed in buildInputs docs: update commands, environment, setup fix: use consistent possessives chore: format with prettier, add ignore flags fix(pyinstaller): consume from pyproject Revert "fix(pyinstaller): consume from pyproject" This reverts commit 398cd4e5630a3e83d22d15286d7ac59b4c07c5d6. refactor: use icon from resource manager Also fixes incorrect path currently used in ts_qt.py. nix(pyinstaller): replace use of sys.platform with platform.system docs: add build section Co-authored-by: Travis Abendshien <46939827+CyanVoxel@users.noreply.github.com>
143 lines
3.4 KiB
YAML
143 lines
3.4 KiB
YAML
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
|
|
|
|
# MkDocs: https://www.mkdocs.org/
|
|
# Material for MkDocs: https://squidfunk.github.io/mkdocs-material/
|
|
|
|
# To install:
|
|
# pip install mkdocs-material
|
|
|
|
# To run the preview server:
|
|
# mkdocs serve
|
|
|
|
site_name: TagStudio
|
|
site_description: "A User-Focused Photo & File Management System"
|
|
site_url: https://docs.tagstud.io/
|
|
repo_url: https://github.com/TagStudioDev/TagStudio
|
|
edit_uri: blob/main/docs/
|
|
repo_name: TagStudioDev/TagStudio
|
|
|
|
extra:
|
|
social:
|
|
- icon: fontawesome/brands/github
|
|
link: https://github.com/TagStudioDev
|
|
- icon: fontawesome/brands/discord
|
|
link: https://discord.gg/hRNnVKhF2G
|
|
tags:
|
|
Upcoming Feature: upcoming
|
|
|
|
# by default the navigation is an alphanumerically sorted,
|
|
# nested list of all the Markdown files found within the /docs directory
|
|
# where index files are always first
|
|
# uncomment the following to configure the navigation manually:
|
|
|
|
# nav:
|
|
# - Home:
|
|
# - index.md
|
|
# - install.md
|
|
# - usage.md
|
|
# - Library:
|
|
# - library/index.md
|
|
# - library/entry.md
|
|
# - library/entry_groups.md
|
|
# - library/field.md
|
|
# - library/tag.md
|
|
# - library/tag_categories.md
|
|
# - library/tag_overrides.md
|
|
# - Utilities:
|
|
# - utilities/macro.md
|
|
# - Updates:
|
|
# - updates/changelog.md
|
|
# - updates/roadmap.md
|
|
# - updates/db_migration.md
|
|
|
|
theme:
|
|
name: material
|
|
palette:
|
|
# Palette toggle for automatic mode
|
|
- media: "(prefers-color-scheme)"
|
|
toggle:
|
|
icon: material/brightness-auto
|
|
name: Switch to light mode
|
|
# Palette toggle for light mode
|
|
- media: "(prefers-color-scheme: light)"
|
|
scheme: default
|
|
primary: deep purple
|
|
accent: deep purple
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
# Palette toggle for dark mode
|
|
- media: "(prefers-color-scheme: dark)"
|
|
scheme: slate
|
|
primary: deep purple
|
|
accent: deep purple
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: SSwitch to system preference
|
|
logo: assets/icon.png
|
|
favicon: assets/icon.ico
|
|
font: false # use system fonts
|
|
language: en
|
|
features:
|
|
- navigation.instant
|
|
- navigation.indexes
|
|
- navigation.tracking
|
|
- navigation.expand
|
|
- navigation.sections
|
|
#- navigation.tabs
|
|
#- content.tabs.link
|
|
#- navigation.top
|
|
- search.suggest
|
|
- content.code.annotate
|
|
- content.code.copy
|
|
- content.action.edit
|
|
icon:
|
|
repo: fontawesome/brands/github
|
|
tag:
|
|
upcoming: material/flask-outline
|
|
|
|
markdown_extensions:
|
|
|
|
# Python Markdown
|
|
- abbr
|
|
- admonition
|
|
- attr_list
|
|
- def_list
|
|
- footnotes
|
|
- md_in_html
|
|
- toc:
|
|
permalink: true
|
|
|
|
# Python Markdown Extensions
|
|
- pymdownx.arithmatex:
|
|
generic: true
|
|
- pymdownx.betterem:
|
|
smart_enable: all
|
|
- pymdownx.caret
|
|
- pymdownx.details
|
|
- pymdownx.highlight
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.keys
|
|
- pymdownx.mark
|
|
- pymdownx.smartsymbols
|
|
- pymdownx.superfences:
|
|
custom_fences:
|
|
- name: mermaid
|
|
class: mermaid
|
|
format: !!python/name:pymdownx.superfences.fence_code_format
|
|
- pymdownx.tabbed:
|
|
alternate_style: true
|
|
- pymdownx.tasklist:
|
|
custom_checkbox: true
|
|
- pymdownx.tilde
|
|
- pymdownx.snippets
|
|
|
|
plugins:
|
|
- search
|
|
- tags
|
|
- social: # social embed cards
|
|
enabled: !ENV [CI, false] # enabled only when running in CI (eg GitHub Actions)
|
|
|
|
extra_css:
|
|
- stylesheets/extra.css
|