aboutsummaryrefslogtreecommitdiff
path: root/gui
AgeCommit message (Collapse)Author
2016-10-22GUI: Fix incorrect initialisation of some tab Ids in OptionsDialogThierry Crozat
A value of 0 is valid for tab ids, so the correct initialisation at this stage is -1. However only one constructor properly initialized all the tab ids to -1 in its initialisation list, but it was then changed to 0 in init(). I have added the missing ones to the other constructors and removed the incorrect ones in init(). But maybe all tab ids should be initialised in init() rather than in the constructors initialisation lists.
2016-10-22I18N: Regenerate translations.datrootfather
2016-10-21GUI: Increase theme versionThierry Crozat
This should have been done when making changes to it but I forgot.
2016-10-17I18N: Regenerate translations data fileThierry Crozat
2016-10-17ALL: Fix compilation with enabled sdl_net and disabled cloudEugene Sandulenko
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.