Skip to content

Releases: reuno721/MiniMapPad

MiniMapPad v2.4

17 Feb 15:51
38586e4

Choose a tag to compare

MiniMapPad screenshot v2.4

MiniMapPad v2.4

  • Python AST mode — built on Python's standard ast module (not regex). Accurate structure extraction including async def, private markers, and return types.
  • PHP lite mode — regex/token scanning. Extracts namespace, use, define/const, class hierarchy (extends / implements), method visibility (pub/pro/pri), static / abstract, and return type hints. Global functions are separated from class methods.
  • Kotlin lite mode (Compose-aware) — imports, declarations, fun signatures + Compose patterns:
    • state vars (by remember / rememberSaveable)
    • LaunchedEffect / DisposableEffect
    • local functions inside Composables
    • UI overlay guards (if (showXxx), ?.let { })
    • @Composable functions classified as top-level regardless of indentation
  • Auto mode — try Python AST first; if parsing fails, silently falls back to the best-matching lite mode. The selected mode is shown in the output header.
  • Auto-copy to clipboard on Generate
  • Optional redaction (secrets / basic PII patterns)
  • Optional TODO warnings
  • Dark mode UI

Windows: download the EXE below (no Python required).
Python: run python minimappad_v2_4.py (Python 3.9+).