From dc3c14a177e75ce4aaea875dc620782343910fdc Mon Sep 17 00:00:00 2001 From: goyimnose Date: Thu, 1 Jan 2026 02:02:48 -0500 Subject: [PATCH 1/4] Delete .vscode/settings.json --- .vscode/settings.json | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index cb73650..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "editor.formatOnSave": true, - "editor.defaultFormatter": "ms-python.python", - - "python.formatting.provider": "yapf", - "python.formatting.yapfArgs": ["--style", ".style.yapf"], - - "[python]": { - "editor.defaultFormatter": "ms-python.python", - "editor.formatOnSave": true - } -} From 118767199cc4db9b5e0893bdc1a1bfdb36b280db Mon Sep 17 00:00:00 2001 From: goyimnose Date: Thu, 1 Jan 2026 02:03:02 -0500 Subject: [PATCH 2/4] Delete .github/workflows/smoke-mm.yml --- .github/workflows/smoke-mm.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/smoke-mm.yml diff --git a/.github/workflows/smoke-mm.yml b/.github/workflows/smoke-mm.yml deleted file mode 100644 index 71f2ba6..0000000 --- a/.github/workflows/smoke-mm.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: smoke-mm - -on: - pull_request: - push: - branches: - - main - -jobs: - smoke: - name: Install & smoke test mm --help - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.11' - - - name: Create venv and install - run: | - python -m venv venv - . venv/bin/activate - python -m pip install -U pip - python -m pip install -e ./scripts - - - name: Run smoke test (mm --help) - run: | - . venv/bin/activate - mm --help From 8bf99b2a0333de2513d5ac7187aade75a0b6e17b Mon Sep 17 00:00:00 2001 From: goyimnose Date: Thu, 1 Jan 2026 02:03:10 -0500 Subject: [PATCH 3/4] Delete .gitignore --- .gitignore | 240 ----------------------------------------------------- 1 file changed, 240 deletions(-) delete mode 100644 .gitignore diff --git a/.gitignore b/.gitignore deleted file mode 100644 index d77c823..0000000 --- a/.gitignore +++ /dev/null @@ -1,240 +0,0 @@ -# ---> Python -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class -config.conf -config.d/ -# C extensions -*.so -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST -test_* -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec -cookies.txt -# Installer logs -pip-log.txt -pip-delete-this-directory.txt -backup/ -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -*.py,cover -.hypothesis/ -.pytest_cache/ -cover/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py -db.sqlite3 -db.sqlite3-journal - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -.pybuilder/ -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# IPython -profile_default/ -ipython_config.py -config.conf -config.d/ -# pyenv -# For a library or package, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# .python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# UV -# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -#uv.lock - -# poetry -# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control -#poetry.lock - -# pdm -# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. -#pdm.lock -# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it -# in version control. -# https://pdm.fming.dev/latest/usage/project/#working-with-version-control -.pdm.toml -.pdm-python -.pdm-build/ - -# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm -__pypackages__/ - -# Celery stuff -celerybeat-schedule -celerybeat.pid - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - -# pytype static type analyzer -.pytype/ - -# Cython debug symbols -cython_debug/ - -# PyCharm -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ - -# Ruff stuff: -.ruff_cache/ - -# PyPI configuration file -.pypirc - -# ---> Lua -# Compiled Lua sources -luac.out - -# luarocks build files -*.src.rock -*.zip -*.tar.gz - -# Object files -*.o -*.os -*.ko -*.obj -*.elf - -# Precompiled Headers -*.gch -*.pch - -# Libraries -*.lib -*.a -*.la -*.lo -*.def -*.exp - -# Shared objects (inc. Windows DLLs) -*.dll -*.so -*.so.* -*.dylib - -# Executables -*.exe -*.out -*.app -*.i*86 -*.x86_64 -*.hex - - -config.conf -config.d/ -MPV/ffmpeg/* - -Log/ -Log/medeia_macina/telegram.session -*.session -example.py -test* -MPV/portable_config/watch_later* -hydrusnetwork -.style.yapf -.yapfignore -tests/ -scripts/mm.ps1 -scripts/mm -.style.yapf -.yapfignore - - From 989eeb723c0a349df1be01663ff7bc43d2bbb490 Mon Sep 17 00:00:00 2001 From: goyimnose Date: Thu, 1 Jan 2026 02:03:18 -0500 Subject: [PATCH 4/4] Delete .gitattributes --- .gitattributes | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index c6e7763..0000000 --- a/.gitattributes +++ /dev/null @@ -1,42 +0,0 @@ -# Auto detect text files and normalize line endings to LF -* text=auto - -# Python files -*.py text eol=lf -*.pyx text eol=lf -*.pyi text eol=lf - -# Shell scripts -*.sh text eol=lf -*.bash text eol=lf - -# Windows batch files -*.bat text eol=crlf -*.cmd text eol=crlf -*.ps1 text eol=crlf - -# Config files -*.json text eol=lf -*.toml text eol=lf -*.yaml text eol=lf -*.yml text eol=lf -*.ini text eol=lf -*.cfg text eol=lf - -# Documentation -*.md text eol=lf -README text eol=lf -LICENSE text eol=lf - -# Binary files -*.db binary -*.sqlite binary -*.png binary -*.jpg binary -*.jpeg binary -*.gif binary -*.webp binary -*.mov binary -*.mp4 binary -*.webm binary -*.pdf binary