Skip to content

Commit

Permalink
Add tooltip, push version.
Browse files Browse the repository at this point in the history
  • Loading branch information
cubicibo committed May 20, 2023
1 parent 8bdda1a commit 54bfba9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion SUPer/__metadata__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

__MAJOR = 0
__MINOR = 1
__REVISION = 6
__REVISION = 7

__name__ = "SUPer"
__version__ = '.'.join(map(str, [__MAJOR, __MINOR, __REVISION]))
Expand Down
4 changes: 4 additions & 0 deletions supergui.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,10 @@ def from_bdnxml(queue: ...) -> None:

dropframebox = CheckBox(app, text="Correct NTSC timings (*1.001)", grid=[0,pos_v:=pos_v+1,2,1], align='left')
scale_fps = CheckBox(app, text="Subsampled BDNXML (e.g. 29.97 BDNXML for 59.94 SUP, ignored if 24p)", grid=[0,pos_v:=pos_v+1,2,1], align='left')
scale_tooltip = Hovertip(scale_fps.tk, "A BDNXML generated at half the framerate will limit the pressure on the PG decoder\n"\
"while ensuring synchronicity with the video footage. This is recommended for 50i/60i content.\n"\
"E.g if the target is 59.94, the BDNXML would be generated at 29.97. SUPer would then write the PGS\n"\
"as if it was 59.94. This flag is ignored for 23.976p or 24p content.")

compat_mode = CheckBox(app, text="Compatibility mode for software players (see tooltip)", grid=[0,pos_v:=pos_v+1,2,1], align='left')
compat_tooltip = Hovertip(compat_mode.tk, "Software players don't decode palette updates with two objects correctly.\n"\
Expand Down

0 comments on commit 54bfba9

Please sign in to comment.