aboutsummaryrefslogtreecommitdiff
path: root/gui
AgeCommit message (Collapse)Author
2016-10-17ALL: Fix compilation with disabled cloud but enabled libcurlEugene Sandulenko
2016-10-16GUI: Fix compilation when cloud is disabled but libcurl is notThierry Crozat
2016-10-13GUI: Add checkbox and config option to enable/disable graphics filteringThierry Crozat
2016-10-12GUI: Fix wrong error messages when failing to change some graphics settingsThierry Crozat
2016-10-09I18N: Fix fuzzy Dutch translationWillem Jan Palenstijn
2016-10-09I18N: Regenerate translation data fileThierry Crozat
2016-10-09JANITORIAL: Remove more trailing spacesEugene Sandulenko
2016-10-09I18N: Regenerate translations.datEugene Sandulenko
2016-10-09I18N: Regenerate translations.datEugene Sandulenko
2016-10-09GUI: Do not disable Aspect ratio checkbox with only-fullscreen optionEugene Sandulenko
2016-10-08I18N: Regenerate translations.datEugene Sandulenko
2016-10-06I18N: Regenerate translation data fileThierry Crozat
2016-10-04I18N: Regenerate translations.datEugene Sandulenko
2016-10-04I18N: Regenerate translations.datEugene Sandulenko
2016-10-03I18N: Regenerate translations.datLothar Serra Mari
2016-10-02I18N: Regenerate translations.datLothar Serra Mari
2016-09-26CREDITS: Core team has been disbanded and LordHoto retiredThierry Crozat
2016-09-25I18N: Regenerate translations data fileThierry Crozat
2016-09-18CLOUD: Change the cloud icon to be updated by the main threadBastien Bouclet
The cloud manager registers itself as an event source as a mean to be polled periodically by the GUI or engine code. The periodical polling is used to update the OSD icon indicating background sync activity. Also move the cloud icon from ConnectionManager to CloudManager, allowing to decouple icon handling from network connections updates.
2016-09-18I18N: Regenerate translations data fileThierry Crozat
2016-09-18ALL: Homogeneize use of 'saved game' in messagesThierry Crozat
2016-09-17I18N: Regenerate translations.datEugene Sandulenko
2016-09-17I18N: Regenerate translation data fileThierry Crozat
2016-09-16I18N: Regenerated translations.datEugene Sandulenko
2016-09-13GUI: Fix a typo in the low resolution theme layoutsBastien Bouclet
This caused a crash when opening to options dialog in low resolution.
2016-09-13GUI: Regenerate the built-in themeBastien Bouclet
2016-09-10GUI: Don't show the "Open URL" button if there is no backend supportBastien Bouclet
2016-09-10CLOUD: Move openUrl to OSystemThierry Crozat
2016-09-08I18N: Regenerate translations data fileThierry Crozat
2016-09-05I18N: Regenerate translations data fileThierry Crozat
2016-09-05GUI: Fix indentation to silence GCC 6 warningTorbjörn Andersson
2016-09-05I18N: Regenerate translations.datLothar Serra Mari
2016-09-05GUI: Enable translation for download speed string in cloud featureLothar Serra Mari
2016-09-05I18N: Regenerate translations.datLothar Serra Mari
2016-09-05GUI: Fix warningsEugene Sandulenko
2016-09-05I18N: Improve French translation for cloud featureThierry Crozat
2016-09-04I18N: Initial French translation for cloud storageThierry Crozat
2016-09-04CLOUD: Improve some labelsThierry Crozat
2016-09-04GUI: Replace _s() with _() in storagewizarddialog.cppLothar Serra Mari
This allows the translation of a few more strings in the Cloud settings tab. Thanks to sev- for the fix.
2016-09-04I18N: Regenerate translations.datLothar Serra Mari
2016-09-04GUI: Initialize the PicButtonWidget class properlyEugene Sandulenko
2016-09-02CREDITS: RegenerateEugene Sandulenko
2016-08-30CLOUD: Disable the connect button initially as the code is emptyThierry Crozat
The connect button is enabled/disabled whenever the text in the code widget is changed and it's validity assessed. But the initial state was not correct.
2016-08-30CLOUD: Fix crash when trying to connect without entering a code firstThierry Crozat
2016-08-30GUI: Fix hidden files visibility getting out of sync in the files browserBastien Bouclet
- The checkbox state was not initialized when opening the dialog. - The visibility state was initialized from ConfMan too early resuling in the value being incorrect when multiple file browsers are used.
2016-08-24CLOUD: Add GUI for "rootpath" selectionAlexander Tkachev
Cloud tab now contains a button to select path, path label and a clear button.
2016-08-24CLOUD: Add "minimal mode" in LocalWebserverAlexander Tkachev
StorageWizardDialog now runs LocalWebserver in "minimal mode" for security reasons. In this mode server uses only those handlers which state to support it. There are two handlers which support minimal mode: IndexPageHandler (which handles `code` requests needed by StorageWizardDialog) and ResourceHandler (which provides inner resources like `style.css` or `logo.png` from `wwwroot.zip` archive).
2016-08-24GUI: Set tooltip of local webserver button according to server statePeter Bozsó
2016-08-24ALL: Move Clipboard support to OSystemAlexander Tkachev
Commit adds kFeatureClipboardSupport. hasTextInClipboard() and getTextFromClipboard(). OSystem_SDL has this feature if SDL2 is used. EditableWidget and StorageWizardDialog use g_system to access clipboard now.
2016-08-24GUI: Fix StorageWizardDialog warningAlexander Tkachev
Removed extra comma in the enum.