Skip to content

Commit 6540065

Browse files
committed
Merge branch 'dev'
2 parents d7103ce + 94386ee commit 6540065

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,8 @@ classifiers=[
2828
"License :: OSI Approved :: MIT License",
2929
"Programming Language :: Python",
3030
"Programming Language :: Python :: 3",
31-
"Programming Language :: Python :: 3.7",
32-
"Programming Language :: Python :: 3.8",
33-
"Programming Language :: Python :: 3.9",
34-
"Programming Language :: Python :: 3.10",
31+
"Programming Language :: Python :: 3.11",
32+
"Programming Language :: Python :: 3.12",
3533
"Topic :: Multimedia :: Graphics :: Viewers",
3634
]
3735
dynamic = ["version"]

src/picframe/config/configuration_example.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ viewer:
2222
display_y: 0 # offset from top of screen (can be negative)
2323
display_w: null # width of display surface (null->None will use max returned by hardware)
2424
display_h: null # height of display surface
25-
display_power: 0 # default=0. choices={0, 1, 2}, 0 will use legacy `vcgencmd`, 1 will use `xset`, 2 will use 'wlr-randr' to blank the display
25+
display_power: 2 # default=0. choices={0, 1, 2}, 0 will use legacy `vcgencmd`, 1 will use `xset`, 2 will use 'wlr-randr' to blank the display
2626
use_glx: False # default=False. Set to True on linux with xserver running. NB use_sdl2 might need to be False for this to work.
27-
use_sdl2: False # default=True. pysdl2 can use display without xserver, it should be installed as a dependency of pi3d
27+
use_sdl2: True # default=True. pysdl2 can use display without xserver, it should be installed as a dependency of pi3d
2828
# but might need `sudo apt install libsdl2-dev` if picframe gives errors about missing sdl2
2929

3030
mat_images: 0.01 # default=0.01, True, automatically mat all images. False, don't automatically mat any images. Real value, auto-mat all images with aspect ratio difference > than value

src/picframe/model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
'display_y': 0,
3131
'display_w': None,
3232
'display_h': None,
33-
'display_power': 0,
33+
'display_power': 2,
3434
'use_glx': False, # default=False. Set to True on linux with xserver running
35-
'use_sdl2': False,
35+
'use_sdl2': True,
3636
'test_key': 'test_value',
3737
'mat_images': True,
3838
'mat_type': None,

0 commit comments

Comments
 (0)