diff --git a/ChangeLog b/ChangeLog index 98c173d6..b4c37cea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -24205,3 +24205,8 @@ 2023-06-01 Fred Gleason * Fixed a bug that would cause 'failed to load translation file' warnings to be sent to the Apache error log. +2023-06-02 Fred Gleason + * Changed the minimum size of the rdairplay(1) main window to + 1555x870 pixels. + * Changed the minimum required display resolution in 'INSTALL' to + 1680x1050 pixels. diff --git a/INSTALL b/INSTALL index 75652b76..74afd222 100644 --- a/INSTALL +++ b/INSTALL @@ -1,7 +1,7 @@ This is the installation file for the Rivendell package. HARDWARE REQUIREMENTS -A graphical display capable of at least 1400x900 pixels resolution. +A graphical display capable of at least 1680x1050 pixels resolution. (1920x1080 or higher recommended). diff --git a/rdairplay/rdairplay.cpp b/rdairplay/rdairplay.cpp index 23984671..6d966628 100644 --- a/rdairplay/rdairplay.cpp +++ b/rdairplay/rdairplay.cpp @@ -716,7 +716,7 @@ MainWidget::MainWidget(RDConfig *config,QWidget *parent) QSize MainWidget::sizeHint() const { - return QSize(1075,870); + return QSize(1555,870); }