Compare commits
No commits in common. "64ddd9075c850a7928dc988ca9432decc7d4bbda" and "0bb7a62b7589903da87f1c7d1a341214f3464b99" have entirely different histories.
64ddd9075c
...
0bb7a62b75
3 changed files with 1 additions and 34 deletions
|
@ -40,7 +40,6 @@ def makeSelection(scr, SELECTIONS, MSGS):
|
||||||
elif inchar == curses.KEY_DOWN and selection < selection_count - 1:
|
elif inchar == curses.KEY_DOWN and selection < selection_count - 1:
|
||||||
selection += 1
|
selection += 1
|
||||||
addSound("keyenter")
|
addSound("keyenter")
|
||||||
addSound("keyenter")
|
|
||||||
if MSGS and MSGS[selection]:
|
if MSGS and MSGS[selection]:
|
||||||
whole_line = '> ' + MSGS[selection]
|
whole_line = '> ' + MSGS[selection]
|
||||||
space = width - len(whole_line) % width
|
space = width - len(whole_line) % width
|
||||||
|
@ -49,6 +48,7 @@ def makeSelection(scr, SELECTIONS, MSGS):
|
||||||
scr.addstr(whole_line)
|
scr.addstr(whole_line)
|
||||||
scr.refresh()
|
scr.refresh()
|
||||||
sleep(2)
|
sleep(2)
|
||||||
|
addSound("keyenter")
|
||||||
return selection
|
return selection
|
||||||
|
|
||||||
|
|
||||||
|
|
17
poetry.lock
generated
17
poetry.lock
generated
|
@ -1,17 +0,0 @@
|
||||||
# This file is automatically @generated by Poetry and should not be changed by hand.
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "playsound"
|
|
||||||
version = "1.3.0"
|
|
||||||
description = "Pure Python, cross platform, single function module with no dependencies for playing sounds."
|
|
||||||
category = "main"
|
|
||||||
optional = false
|
|
||||||
python-versions = "*"
|
|
||||||
files = [
|
|
||||||
{file = "playsound-1.3.0.tar.gz", hash = "sha256:cc6ed11d773034b0ef624e6bb4bf50f4b76b8414a59ce6d38afb89b423297ced"},
|
|
||||||
]
|
|
||||||
|
|
||||||
[metadata]
|
|
||||||
lock-version = "2.0"
|
|
||||||
python-versions = "^3.11"
|
|
||||||
content-hash = "79b7abd6f582a63358e09c50526f3f746f0564d87d938f8487db77c09481756f"
|
|
|
@ -1,16 +0,0 @@
|
||||||
[tool.poetry]
|
|
||||||
name = "fallout-term"
|
|
||||||
version = "0.0.1"
|
|
||||||
description = ""
|
|
||||||
authors = ["Firepup Sixfifty <firepyp650@gmail.com>"]
|
|
||||||
readme = "README.md"
|
|
||||||
packages = []
|
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
|
||||||
python = "^3.11"
|
|
||||||
playsound = "^1.3.0"
|
|
||||||
|
|
||||||
|
|
||||||
[build-system]
|
|
||||||
requires = ["poetry-core"]
|
|
||||||
build-backend = "poetry.core.masonry.api"
|
|
Loading…
Reference in a new issue