Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Text files: set LF line endings
* text=auto eol=lf

# Executables/Scripts
*.bat text eol=crlf
*.ps1 text eol=lf
*.sh text eol=lf
*.command text eol=lf

# Python files
*.py text eol=lf
*.pyw text eol=lf

# Documentation
*.md text eol=lf
*.txt text eol=lf
*.adoc text eol=lf

# Web files
*.html text eol=lf
*.css text eol=lf
*.js text eol=lf
*.json text eol=lf
*.jsonc text eol=lf
*.yaml text eol=lf
*.yml text eol=lf

# Binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.webp binary
*.mp3 binary
*.mp4 binary
*.db binary
*.sqlite binary
*.wasm binary
14 changes: 0 additions & 14 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Feature Request
description: Suggest an idea for Hydrus
title: "[Feature]: "
labels: ["experimental", "unconfirmed"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to suggest a new feature!
Please check if your feature request hasn't been suggested before.
- type: textarea
id: feature-description
attributes:
label: Description
description: A clear and concise description of what the feature is.
placeholder: I would like to see...
validations:
required: true
- type: textarea
id: problem-solved
attributes:
label: Problem
description: Is your feature request related to a problem? Please describe.
placeholder: It's frustrating when...
- type: textarea
id: alternatives
attributes:
label: Alternatives
description: Describe any alternative solutions or features you've considered.
- type: textarea
id: additional-context
attributes:
label: Additional Context
description: Add any other context or screenshots about the feature request here.
7 changes: 0 additions & 7 deletions .vscode/settings.json

This file was deleted.

File renamed without changes.
31 changes: 31 additions & 0 deletions dprint.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"incremental": true,
"indentWidth": 2,
"lineWidth": 120,
"typescript": {
"quoteStyle": "preferSingle",
"semiColons": "asi",
"trailingCommas": "es5"
},
"json": {
"trailingCommas": "jsonc"
},
"markdown": {
},
"toml": {
},
"excludes": [
"**/node_modules",
"**/*-lock.json",
"**/target",
"**/dist",
"**/.git"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.95.15.wasm",
"https://plugins.dprint.dev/json-0.21.1.wasm",
"https://plugins.dprint.dev/markdown-0.20.0.wasm",
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.6.0.wasm",
"https://plugins.dprint.dev/toml-0.7.0.wasm"
]
}
14 changes: 14 additions & 0 deletions hydrus.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.trimAutoWhitespace": false,
"editor.renderWhitespace": "boundary",
"files.trimTrailingWhitespace": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.tabSize": 4
}
}
23 changes: 0 additions & 23 deletions license.txt

This file was deleted.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "hydrus"
version = "v659"
description = "A personal booru-style media tagger"
license = {text = "WTFPL-3.0"}
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
Expand Down