Skip to content

Commit 3ed6adc

Browse files
committed
2 parents 5e44d4c + fa3f09b commit 3ed6adc

24 files changed

Lines changed: 101 additions & 68 deletions

.github/workflows/ci.yaml

Whitespace-only changes.
File renamed without changes.

graphics/Promo/SARC_Edit.png

180 KB
Loading

graphics/Promo/tkproj_Edit.png

93.9 KB
Loading

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"name": "totk-vscode",
33
"icon": "icons/ExtensionIcon.png",
4-
"publisher": "totk-editor",
5-
"displayName": "totk-vscode",
6-
"description": "Edit various TOTK formats natively in VSCode",
7-
"version": "0.0.1",
4+
"publisher": "TKVSC-Team",
5+
"displayName": "TKVSC",
6+
"description": "Canonically Amazing",
7+
"version": "0.0.1-beta",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/Mindstormman06/totk-vscode.git"
10+
"url": "https://github.com/TKVSC-Team/totk-vscode"
1111
},
12-
"homepage": "https://github.com/Mindstormman06/totk-vscode#readme",
12+
"homepage": "https://discord.gg/vwPnX2uB8s",
1313
"bugs": {
14-
"url": "https://github.com/Mindstormman06/totk-vscode/issues"
14+
"url": "https://github.com/TKVSC-Team/totk-vscode/issues"
1515
},
1616
"engines": {
1717
"vscode": "^1.120.0"

pyproject.toml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[project]
2+
name = "totk-vscode-python"
3+
version = "0.1.0"
4+
description = "Python scripts for TOTK VSCode extension"
5+
requires-python = ">=3.9"
6+
dependencies = [
7+
"oead>=1.2.9.post4",
8+
"zstandard>=0.22.0",
9+
"mmh3>=4.0.0",
10+
"Pillow>=10.0.0",
11+
"texture2ddecoder>=1.0.4",
12+
"PyYAML>=6.0"
13+
]
14+
15+
[tool.ruff]
16+
line-length = 100
17+
target-version = "py39"
18+
19+
[tool.ruff.lint]
20+
select = [
21+
"E", # pycodestyle errors
22+
"W", # pycodestyle warnings
23+
"F", # pyflakes
24+
"I", # isort
25+
"B", # flake8-bugbear
26+
"C4", # flake8-comprehensions
27+
]
28+
ignore = [
29+
"E501", # line too long, handled by formatter
30+
]
31+
32+
[tool.ruff.format]
33+
quote-style = "double"
34+
indent-style = "space"

python/aamp_io.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from pathlib import Path
66

77
import oead
8-
98
from zstd_totk import compress_container, decompress_container
109

1110
_EXTENSIONS_PATH = Path(__file__).parent.parent / 'config' / 'aamp-extensions.json'

0 commit comments

Comments
 (0)