mirror of
https://github.com/shadoll/moma.git
synced 2026-08-28 03:27:34 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eb46b3c7ed | ||
|
|
cf250c4089 | ||
|
|
d19fb730d2 |
+11
-2
@@ -28,12 +28,21 @@ powershell -c "irm https://astral.sh/uv/install.sh | iex"
|
|||||||
uv tool install https://github.com/shadoll/moma/releases/latest/download/moma-latest.tar.gz
|
uv tool install https://github.com/shadoll/moma/releases/latest/download/moma-latest.tar.gz
|
||||||
|
|
||||||
# Specific version
|
# Specific version
|
||||||
uv tool install https://github.com/shadoll/moma/releases/download/v0.9.1/moma-0.9.1-py3-none-any.whl
|
uv tool install https://github.com/shadoll/moma/releases/download/v0.9.2/moma-0.9.2-py3-none-any.whl
|
||||||
|
|
||||||
# From PyPI (when published)
|
# From PyPI (when published)
|
||||||
uv tool install moma
|
uv tool install moma
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Reinstall / Upgrade moma
|
||||||
|
```bash
|
||||||
|
# Reinstall (same URL — force overwrite)
|
||||||
|
uv tool install --force https://github.com/shadoll/moma/releases/latest/download/moma-latest.tar.gz
|
||||||
|
|
||||||
|
# Upgrade to a newer specific version
|
||||||
|
uv tool install --force https://github.com/shadoll/moma/releases/download/v0.9.2/moma-0.9.2-py3-none-any.whl
|
||||||
|
```
|
||||||
|
|
||||||
#### Usage
|
#### Usage
|
||||||
```bash
|
```bash
|
||||||
moma # Scan current directory
|
moma # Scan current directory
|
||||||
@@ -47,7 +56,7 @@ moma /path/to/directory # Scan specific directory
|
|||||||
pip install https://github.com/shadoll/moma/releases/latest/download/moma-latest.tar.gz
|
pip install https://github.com/shadoll/moma/releases/latest/download/moma-latest.tar.gz
|
||||||
|
|
||||||
# Specific version
|
# Specific version
|
||||||
pip install https://github.com/shadoll/moma/releases/download/v0.9.1/moma-0.9.1-py3-none-any.whl
|
pip install https://github.com/shadoll/moma/releases/download/v0.9.2/moma-0.9.2-py3-none-any.whl
|
||||||
```
|
```
|
||||||
|
|
||||||
### Method 3: Development Installation
|
### Method 3: Development Installation
|
||||||
|
|||||||
@@ -29,6 +29,78 @@ release: bump
|
|||||||
test:
|
test:
|
||||||
uv run pytest
|
uv run pytest
|
||||||
|
|
||||||
|
# Tag the current version from pyproject.toml and push to origin
|
||||||
|
git-release:
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
import re
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
|
||||||
|
def read_version():
|
||||||
|
with open('pyproject.toml', 'r') as f:
|
||||||
|
content = f.read()
|
||||||
|
m = re.search(r'version = "(\d+\.\d+\.\d+)"', content)
|
||||||
|
return m.group(1) if m else None
|
||||||
|
|
||||||
|
def tag_exists(tag):
|
||||||
|
local = subprocess.run(['git', 'tag', '-l', tag], capture_output=True, text=True)
|
||||||
|
if local.stdout.strip():
|
||||||
|
return True
|
||||||
|
remote = subprocess.run(['git', 'ls-remote', '--tags', 'origin', f'refs/tags/{tag}'], capture_output=True, text=True)
|
||||||
|
return bool(remote.stdout.strip())
|
||||||
|
|
||||||
|
def do_bump():
|
||||||
|
with open('pyproject.toml', 'r') as f:
|
||||||
|
content = f.read()
|
||||||
|
m = re.search(r'version = "(\d+)\.(\d+)\.(\d+)"', content)
|
||||||
|
if not m:
|
||||||
|
print('Version not found in pyproject.toml')
|
||||||
|
sys.exit(1)
|
||||||
|
old = m.group(0).split('"')[1]
|
||||||
|
major, minor, patch = map(int, m.groups())
|
||||||
|
new = f'{major}.{minor}.{patch + 1}'
|
||||||
|
with open('pyproject.toml', 'w') as f:
|
||||||
|
f.write(content.replace(m.group(0), f'version = "{new}"'))
|
||||||
|
with open('INSTALL.md', 'r') as f:
|
||||||
|
install = f.read()
|
||||||
|
with open('INSTALL.md', 'w') as f:
|
||||||
|
f.write(install.replace(old, new))
|
||||||
|
print(f'Version bumped to {new}')
|
||||||
|
return new
|
||||||
|
|
||||||
|
version = read_version()
|
||||||
|
if not version:
|
||||||
|
print('Could not read version from pyproject.toml')
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
tag = f'v{version}'
|
||||||
|
|
||||||
|
if tag_exists(tag):
|
||||||
|
print(f'Tag {tag} already exists.')
|
||||||
|
print(' [c] Cancel')
|
||||||
|
print(' [b] Bump version and continue')
|
||||||
|
print(' [r] Replace tag (delete and re-create)')
|
||||||
|
choice = input('Your choice (c/b/r): ').strip().lower()
|
||||||
|
if choice == 'c' or choice == '':
|
||||||
|
print('Cancelled.')
|
||||||
|
sys.exit(0)
|
||||||
|
elif choice == 'b':
|
||||||
|
version = do_bump()
|
||||||
|
tag = f'v{version}'
|
||||||
|
elif choice == 'r':
|
||||||
|
print(f'Deleting tag {tag} locally and on origin...')
|
||||||
|
subprocess.run(['git', 'tag', '-d', tag])
|
||||||
|
subprocess.run(['git', 'push', 'origin', f':refs/tags/{tag}'])
|
||||||
|
else:
|
||||||
|
print('Unknown choice, cancelling.')
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
print(f'Creating tag {tag}...')
|
||||||
|
subprocess.run(['git', 'tag', tag], check=True)
|
||||||
|
print(f'Pushing tag {tag} to origin...')
|
||||||
|
subprocess.run(['git', 'push', 'origin', tag], check=True)
|
||||||
|
print(f'Done! Tag {tag} pushed.')
|
||||||
|
|
||||||
# Run the application
|
# Run the application
|
||||||
run *ARGS:
|
run *ARGS:
|
||||||
uv run moma {{ARGS}}
|
uv run moma {{ARGS}}
|
||||||
|
|||||||
+10
-2
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "moma"
|
name = "moma"
|
||||||
version = "0.9.1"
|
version = "0.9.2"
|
||||||
description = "Terminal-based media file renamer and metadata viewer"
|
description = "Terminal-based media file renamer and metadata viewer"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
@@ -22,7 +22,15 @@ dev = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[project.scripts]
|
[project.scripts]
|
||||||
moma = "main:main"
|
moma = "src.main:main"
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["setuptools>=61"]
|
||||||
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
|
[tool.setuptools.packages.find]
|
||||||
|
where = ["."]
|
||||||
|
include = ["src*"]
|
||||||
|
|
||||||
[tool.uv]
|
[tool.uv]
|
||||||
package = true
|
package = true
|
||||||
|
|||||||
@@ -11,14 +11,8 @@ class RenameConfirmScreen(Screen):
|
|||||||
#confirm_content {
|
#confirm_content {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
# Button {
|
|
||||||
# background: $surface;
|
|
||||||
# border: solid $surface;
|
|
||||||
}
|
|
||||||
Button:focus {
|
Button:focus {
|
||||||
background: $primary;
|
background: $primary;
|
||||||
# color: $text-primary;
|
|
||||||
# border: solid $primary;
|
|
||||||
}
|
}
|
||||||
#buttons {
|
#buttons {
|
||||||
align: center middle;
|
align: center middle;
|
||||||
|
|||||||
Reference in New Issue
Block a user