Update CHANGES.md and add another travis target
This commit is contained in:
parent
f983519589
commit
b29fbbb587
|
@ -36,6 +36,8 @@ matrix:
|
||||||
env: DISABLE_OVERLAY=1 CC=gcc-8 CXX=g++-8
|
env: DISABLE_OVERLAY=1 CC=gcc-8 CXX=g++-8
|
||||||
- compiler: gcc
|
- compiler: gcc
|
||||||
env: DISABLE_CDROM=1 CC=gcc-8 CXX=g++-8
|
env: DISABLE_CDROM=1 CC=gcc-8 CXX=g++-8
|
||||||
|
- compiler: gcc
|
||||||
|
env: DISABLE_VIDEO_LAYOUT=1 CC=gcc-8 CXX=g++-8
|
||||||
- compiler: gcc
|
- compiler: gcc
|
||||||
env: DISABLE_AUDIOMIXER=1 CC=gcc-8 CXX=g++-8
|
env: DISABLE_AUDIOMIXER=1 CC=gcc-8 CXX=g++-8
|
||||||
- compiler: gcc
|
- compiler: gcc
|
||||||
|
@ -112,6 +114,10 @@ script:
|
||||||
if [ -n "$DISABLE_CDROM" ]; then
|
if [ -n "$DISABLE_CDROM" ]; then
|
||||||
ARGS="$ARGS --disable-cdrom"
|
ARGS="$ARGS --disable-cdrom"
|
||||||
fi
|
fi
|
||||||
|
- |
|
||||||
|
if [ -n "$DISABLE_VIDEO_LAYOUT" ]; then
|
||||||
|
ARGS="$ARGS --disable-video_layout"
|
||||||
|
fi
|
||||||
- |
|
- |
|
||||||
if [ -n "$DISABLE_AUDIOMIXER" ]; then
|
if [ -n "$DISABLE_AUDIOMIXER" ]; then
|
||||||
ARGS="$ARGS --disable-audiomixer"
|
ARGS="$ARGS --disable-audiomixer"
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
- MENU/MATERIALUI: Material UI now resizes in real-time when the user manually sets the Menu Scale Factor (this never worked properly with the old DPI override)
|
- MENU/MATERIALUI: Material UI now resizes in real-time when the user manually sets the Menu Scale Factor (this never worked properly with the old DPI override)
|
||||||
- MENU/MATERIALUI: Material UI no longer leaks memory on 'context reset' (fonts were previously never free()'d)
|
- MENU/MATERIALUI: Material UI no longer leaks memory on 'context reset' (fonts were previously never free()'d)
|
||||||
- OSD: Fix fast forward indicator when not using menu widgets
|
- OSD: Fix fast forward indicator when not using menu widgets
|
||||||
|
- VIDEO LAYOUT: Add video layout mame overlay compatibility. Enabled for Windows/Linux/OSX/iOS/Android/libnx
|
||||||
|
|
||||||
# (1.7.9) (v2)
|
# (1.7.9) (v2)
|
||||||
- 3DS: Fix 3DS screen flickering when OSD is enabled
|
- 3DS: Fix 3DS screen flickering when OSD is enabled
|
||||||
|
|
Loading…
Reference in New Issue