Lili (Tlapka)
cb574618a6
working milestones prototype in dashboard
2023-03-14 16:26:04 +01:00
Lili (Tlapka)
68b8588c76
dashboard milestones stub
2023-03-14 15:42:14 +01:00
Lili (Tlapka)
2732967e26
fix error catching in add_to_milestone
2023-03-14 15:14:52 +01:00
Lili (Tlapka)
07c701de71
milestone stub + helpers name change
...
lets hope milestones work
2023-03-14 14:15:18 +01:00
Lili (Tlapka)
90615ce7c6
add colspan to "recent redeems"
...
no longer makes an extra line
2023-03-13 15:29:34 +01:00
Lili (Tlapka)
82d9088c18
first version of passive mode
...
seems to work fine
2023-03-13 15:22:40 +01:00
Lili (Tlapka)
189ffcc1a8
add error check to is_stream_live()
2023-03-13 14:59:20 +01:00
Lili (Tlapka)
c047ec94ac
add auto-refresh to dashboard + fix bug
...
selected "tab"/"button" is now properly highlighted
dashboard refreshes every 30 seconds
2023-01-16 13:30:43 +01:00
Lili (Tlapka)
0c678d8988
add a safeguard for empty list categories redeems
...
remove warnings in readme about it as well
2023-01-16 13:30:15 +01:00
Lili (Tlapka)
dc68887c82
change redeem categories to list format
2023-01-13 18:51:44 +01:00
Lili (Tlapka)
f3d088d6fb
change types to categories
...
to avoid confusion with actual types of redeems like list
2023-01-13 12:57:43 +01:00
Lili (Tlapka)
ae792192e8
add a category example to default redeems
2023-01-13 11:04:30 +01:00
Lili (Tlapka)
ef2f6910e6
add a refresh+clear command
2023-01-13 11:04:01 +01:00
Lili (Tlapka)
10c4f6f514
split long line
2023-01-12 14:40:05 +01:00
Lili (Tlapka)
27812b9480
add first implementation of redeem categories
2023-01-12 14:23:32 +01:00
Lili (Tlapka)
2138650f91
reorganize helpers file
2023-01-12 13:20:28 +01:00
Lili (Tlapka)
d3763d51c3
fix regex to be non-greedy
2023-01-11 10:25:48 +01:00
Lili (Tlapka)
6283a8f948
split long line in db.py
2023-01-09 15:21:20 +01:00
Lili (Tlapka)
537fa01aef
split long lines in redeems_handler.py
2023-01-09 15:17:45 +01:00
Lili (Tlapka)
25589ff69e
add emoji html junk removing function
...
emoji in redeem notes now show up as their shortcodes
2023-01-09 15:08:33 +01:00
Lili (Tlapka)
85c4df9250
add an error message to points read too
2023-01-05 14:32:53 +01:00
Lili (Tlapka)
543dc3e5b9
change logger logs to f-strings
...
I read on a webpage the way it used to be would work
but the webpage lied and I got not all arguments converted error
2023-01-05 14:26:18 +01:00
Lili (Tlapka)
b666211142
better handling of errors in redeems situations
...
short circuit execution that doesnt take away points + better message
2023-01-05 11:27:10 +01:00
Lili (Tlapka)
c978b27799
remove unnecessary import
2023-01-05 11:01:54 +01:00
Lili (Tlapka)
efd773e2e8
fix typo that broke check_counter_exists
2023-01-04 13:53:46 +01:00
Lili (Tlapka)
7625d9b959
check if counter exists before incrementing
...
nonexistant counter prints warning + recommends running refresh-counters
2023-01-04 13:22:47 +01:00
Lili (Tlapka)
f1dfb79f2c
remove prefix comment
2023-01-04 12:41:12 +01:00
Lili (Tlapka)
6a3e74cdec
add prefix sanity check to init
...
tlapbot will throw runtime error if prefix isn't a single character
longer prefixes would break the bot bc of how redeems_handler.py works
2023-01-04 12:38:58 +01:00
Lili (Tlapka)
92a2a77c80
add customized prefix to dashboard
2023-01-04 12:37:56 +01:00
Lili (Tlapka)
3caaed4b35
add customizable prefix
2023-01-04 12:37:45 +01:00
Lili (Tlapka)
a5463c09ee
simplify dashboard file
...
removed redundant assignments to variables
2023-01-04 12:30:38 +01:00
Lili (Tlapka)
3282072b42
split long line
...
was over 100 characters
2023-01-03 13:38:15 +01:00
Lili (Tlapka)
b34524334c
rewrite error message
...
make it clear that read_all_users_with_username reads multiple values
2023-01-03 13:34:06 +01:00
Lili (Tlapka)
8e461c5076
remove redundant list conversion
...
unique_users is only used to iterate over and set is an iterable
so i do not need to convert it to list
2023-01-03 13:32:07 +01:00
Lili (Tlapka)
bafa1eca16
fix behavior with 2 commands + new user crashes
...
issue #5
crash i discovered when testing (users joining when bot is resetting)
2022-12-05 11:36:25 +01:00
Lili (Lin) Pavelů
9c0e709c63
Merge pull request #8 from trwnh/patch-3
...
Fix: Change POST to GET for certain API calls
2022-12-05 11:23:12 +01:00
Lili (Lin) Pavelů
99bdcc16cc
Merge pull request #7 from trwnh/patch-2
...
Fix: Remove strict "is True" check
2022-12-05 11:22:58 +01:00
trwnh
65b68f886e
Fix: Change POST to GET for certain API calls
...
I'm not sure why Owncast responds to a POST when it should be a GET, but this is probably not reliable behaviour
2022-11-30 11:29:00 -06:00
trwnh
fe57550de2
Fix: Remove strict "is True" check
...
`is True` checks that the value points to the same memory. To check for truthiness, use `== True` or simply `if condition`
2022-11-30 11:00:30 -06:00
trwnh
420d954568
Refactor: reduce nesting
...
We can reduce cyclomatic complexity (how far we indented) by checking for a negative condition and exiting early, instead of checking for a positive condition and continuing
2022-11-30 10:45:52 -06:00
Lili (Tlapka)
af36ddff75
change error logger to error
2022-11-25 15:11:42 +01:00
Lili (Tlapka)
22b4ee68d9
add gunicorn logging, GUNICORN to config.py
2022-11-24 16:56:23 +01:00
Lili (Tlapka)
444601dab8
version 1.0.0a2: change prints to logger
...
errors are warning, debug is for spam.
2022-11-24 16:06:01 +01:00
Lili (Tlapka)
5e5e81114f
style fixes
2022-11-22 11:33:05 +01:00
Lili (Tlapka)
5d3a4c3825
remove unused imports
...
hopefully theyre unused lol
2022-11-22 11:23:21 +01:00
Lili (Tlapka)
6f96019257
Add a basic description of tlapbot to !help.
...
Change default to not list redeems, and instead redirect to dashboard
2022-11-09 15:14:10 +01:00
Lili (Tlapka)
e33ab1f74b
more text to explain redeems
2022-11-09 14:54:00 +01:00
Lili (Tlapka)
5ab2e0d8d2
wording update for better clarity
2022-11-09 14:40:27 +01:00
Lili (Tlapka)
f0b918aa2c
add tabs to dashboard
...
tab with recent redeems and counters
then tab with redeems info
recent redeems open by default
2022-11-09 14:35:45 +01:00
Lili (Tlapka)
73194a0fc8
add new functionality to config, info to redeems
2022-11-07 17:31:01 +01:00
Lili (Tlapka)
e4850ab89f
move help to own file, rewrite it
...
for speed and for better info
2022-11-07 17:30:40 +01:00
Lili (Tlapka)
ee1eb66567
remove CLI db stuff from owncast helpers
...
was moved to db.py
2022-11-07 17:30:20 +01:00
Lili (Tlapka)
72800a6311
add list of current redeems to dashboard
...
is currently ugly, needs to be made prettier
2022-11-07 17:30:00 +01:00
Lili (Tlapka)
7b9dbc805c
add new and moved CLI commands to init
2022-11-07 16:45:29 +01:00
Lili (Tlapka)
657854eb5d
move clear-queue to db, add refresh-counters to db
2022-11-07 16:42:45 +01:00
Lili (Tlapka)
2c3109901c
make app silently fail when config is missing
...
since default was already loaded
2022-11-07 16:29:02 +01:00
Lili (Tlapka)
1c295dde29
fix duplicate removal on name change for auth user
2022-11-07 12:56:11 +01:00
Lili (Tlapka)
41d9fc4657
fix duplicate name purging,
...
add name addition to account creation
2022-11-03 15:58:33 +01:00
Lili (Tlapka)
6ec8a31100
add duplicate name removal to webhook catcher
2022-10-25 19:00:43 +02:00
Lili (Tlapka)
95acd70b85
prepare remove duplicate usernames function
...
(NOT TESTED)
2022-10-25 18:58:04 +02:00
Lili (Tlapka)
75bc9f161d
fully fixed redeem clear
2022-10-25 18:37:59 +02:00
Lili (Tlapka)
932ac9ff71
fix counters not resetting hopefully
2022-10-25 18:34:48 +02:00
Lili (Tlapka)
a667f746f3
fix taking away points when no note with note rdm
2022-10-25 18:31:36 +02:00
Lili (Tlapka)
2cf2050dac
dashboard wrong points workaround
...
dashboard now shows the points of every user with same username
2022-10-20 16:10:28 +02:00
Lili (Tlapka)
f0077c56dc
fix default redeems
2022-10-18 15:39:04 +02:00
Lili (Tlapka)
a62c718aa1
add a default redeems file
2022-10-18 14:44:46 +02:00
Lili (Tlapka)
bf49aa16cd
make help send all redeems
...
(the help function needs a rewrite)
2022-10-18 14:40:16 +02:00
Lili (Tlapka)
f9ff27c055
bugfix
2022-10-18 14:10:52 +02:00
Lili (Tlapka)
6a4c8b759a
fix None type error
2022-10-18 14:09:35 +02:00
Lili (Tlapka)
c12bcd68c2
show user's points on dashboard
2022-10-18 14:04:15 +02:00
Lili (Tlapka)
d8230da013
more style fixes everywhere else
2022-10-17 18:47:30 +02:00
Lili (Tlapka)
06114022da
code style fixes
2022-10-17 18:37:49 +02:00
Lili (Tlapka)
f391a7bd12
create points table if not exists
2022-10-13 14:24:36 +02:00
Lili (Tlapka)
f916d46d55
change schema to drop counters and NOT drop points
2022-10-13 14:23:31 +02:00
Lili (Tlapka)
5c6b070a7a
redeems dashboard improvement
2022-10-13 14:09:12 +02:00
Lili (Tlapka)
796febb91f
dashboard fixes
2022-10-13 13:53:42 +02:00
Lili (Tlapka)
dda415f87a
init-db typo fixes
2022-10-13 13:29:38 +02:00
Lili (Tlapka)
3c5a09b2de
update dashboard + dashboard helpers
...
also untested
2022-10-12 15:48:57 +02:00
Lili (Tlapka)
5384076f64
another schema fix
2022-10-12 15:48:18 +02:00
Lili (Tlapka)
4a3927a196
schema fix
2022-10-12 15:48:03 +02:00
Lili (Tlapka)
ede1cca8da
code skeleton fixes
2022-10-12 15:35:36 +02:00
Lili (Tlapka)
099525f9ff
base customizable redeems code skeletons
...
UNTESTED but i think i got it all
2022-10-12 15:31:34 +02:00
Lili (Tlapka)
1faee35169
indent fixes + new helpers + updated helpers
2022-10-12 15:30:12 +02:00
Lili (Tlapka)
062e1c113e
prepare skeletons for configurable redeems
...
move redeem handling code to redeem handler
2022-10-10 15:14:57 +02:00
Lili (Tlapka)
9ce16bb35e
bugfix: only give points to unique users
...
no longer gives people extra points for having more tabs open
2022-09-30 12:01:33 +02:00
Lili (Tlapka)
87cdf9c4ea
remove unnecessary lines from style.css
...
i kept removing things that didn't make the dashboard different
2022-09-29 12:52:27 +02:00
Michcio
570c7c84be
Fix time formatting in redeems dashboard
2022-09-27 18:23:10 +02:00
Lili (Tlapka)
6431705934
remove unused line
2022-09-27 10:32:24 +02:00
Lili (Tlapka)
951dc38496
redeem dashboard now shows in local timezone
2022-09-26 16:51:44 +02:00
Lili (Tlapka)
1d6bd82ce0
fix db import for cmd argument
2022-09-26 16:51:22 +02:00
Lili (Tlapka)
8311e6f40e
remove insecure clear command from bot
...
CLI command replaces it safely
2022-09-26 11:11:31 +02:00
Lili (Tlapka)
8bbe273df4
reorganize app factory
2022-09-26 11:10:58 +02:00
Lili (Tlapka)
4adac38871
add clear-queue CLI command
2022-09-26 11:10:48 +02:00
Lili (Tlapka)
ed79404530
remove old/unnecessary checks
2022-09-26 10:50:37 +02:00
Lili (Tlapka)
26f7706b2d
fix point redeems that end with balance at 0
2022-09-24 21:20:44 +02:00
Lili (Tlapka)
ac0f5c4549
make db config work in instance dir when package
2022-09-23 11:49:32 +02:00
Lili (Tlapka)
2f54388814
change config file load to work when package
2022-09-23 11:15:06 +02:00
Lili (Tlapka)
2f4923ddc4
move setup and manifest to root folder
2022-09-23 10:13:50 +02:00
Lili (Tlapka)
a922e52f33
make project installable
2022-09-22 13:44:47 +02:00
Lili (Tlapka)
4c3d2cc734
improvement: no points giving when stream is off
2022-09-14 14:05:10 +02:00