269ad51f7e
When a secured packet is accepted (por_ok) and a card is selected in the SP-page card dropdown, the new normalized counter is written back into that preset (cards[].cntr), persisted via cardsSave() and reflected in the presets table via cardsRender(). Placeholder option and unselected state are skipped. Form bump + preset sync happen in the same okPor block, so form and stored preset always climb together. Version 1.9.7 -> 1.9.8 everywhere; SW cache otaman-v18 -> otaman-v19
18 lines
613 B
TOML
18 lines
613 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pysim-otaman-server"
|
|
version = "1.9.8"
|
|
description = "HTTP REST server wrapping pysim for the OTAMan PWA"
|
|
requires-python = ">=3.8"
|
|
# pysim is a git-only dependency installed explicitly by setup.bat/setup.sh.
|
|
# Declaring it here would make pip resolve its full tree (including the SMPP
|
|
# bridge -> Twisted -> twisted-iocpsupport, which needs MSVC on Windows).
|
|
|
|
[project.scripts]
|
|
pysim-otaman-server = "pysim_otaman_server.__main__:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["pysim_otaman_server*"] |