Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-23 | GUI: Fix pressing escape erroneously saving the changes in the options dialog | Bastien Bouclet | |
Pressing escape sets the dialog result to -1. | |||
2019-10-16 | TTS: Fix language setting. | Jaromir Wysoglad | |
2019-10-14 | GUI: Fix crash with attempt to switch to Greek or Hebrew | Eugene Sandulenko | |
These languages have 2 charater codes, and setting third character in the Common::String led to assert. The proper consturctor is used instead now. | |||
2019-10-14 | JANITORIAL: Whitespace fixes | Eugene Sandulenko | |
2019-10-03 | GUI: Add Missing Switch Default Cases | D G Turner | |
These are flagged by GCC if -Wswitch-default is enabled. | |||
2019-09-14 | GUI: Change "saves" to "saved games" in labels | Ben Castricum | |
2019-09-01 | TTS: Refactoring | Jaromir Wysoglad | |
Refactoring as suggested by bluegr on github. | |||
2019-09-01 | TTS: Refactoring | Jaromir Wysoglad | |
* Delete multiple empty rows * Make getVolume non-virtual and leave just the implementation in base class * Resolve warning about signed / unsigned comparison in gui-manager * Clear availableVoices when updating voices on linux * By default set language to transMan language on windows (if the transMan is available) * Remove freeVoices method from Windows ttsMan, it isn't needed anymore | |||
2019-09-01 | TTS: Add age to TTSVoice | Jaromir Wysoglad | |
2019-09-01 | TTS: Finish implementing the Windows TTS manager | Jaromir Wysoglad | |
2019-09-01 | TTS: Prepare for windows TTS | Jaromir Wysoglad | |
Add windows configuration in configure Add basic skeleton to backends Check if ttsMan is initialized in GUI | |||
2019-09-01 | TTS: Reformat tts volume setting for GUI | Jaromir Wysoglad | |
2019-09-01 | TTS: Add correct language switching | Jaromir Wysoglad | |
2019-09-01 | TTS: Restrict TTS on linux to only english | Jaromir Wysoglad | |
Unfortunatedly the encoding used by ScummVM breaks the speech-dispatcher, so after trying to say non-ascii character the connection has to be restarted. So for now I am restricting the GUI TTS to english only. | |||
2019-09-01 | TTS: Add voice selection to options | Jaromir Wysoglad | |
2019-09-01 | TTS: Add text to speech to the GUI. | Jaromir Wysoglad | |
2019-09-01 | TTS: Add TTS checkbox to Options | Jaromir Wysoglad | |
Probably works only in the builtin theme right now. | |||
2019-08-18 | GUI: Check if fullscreen is available at runtime | Cameron Cawley | |
2019-08-09 | GUI: Enable missing translation in Cloud options dialog | Lothar Serra Mari | |
2019-08-04 | GUI: Fix Options' Cloud tab scrollbar issue | Alexander Tkachev | |
Calling reflowLayout() not only updates the layout (as setupCloudTab() was already doing), but also recalculates scrollbar. The issue was that old layout didn't need a scrollbar, but updated layout did. But, ScrollContainer was not notified, and thus scrollbar didn't appear (until user tried to reselect the Storage via popup). | |||
2019-08-03 | GUI: Fix GCC Compiler Warning in Cloud Tab | D G Turner | |
This comment for fall through to prevent the compiler warning about this has to be at the point of fallthrough i.e. outside the grouping brackets to be effective. | |||
2019-07-30 | GUI: Fix translation context for Cloud and LAN tabs | Thierry Crozat | |
2019-07-30 | GUI: Fix a label in Cloud tab | Alexander Tkachev | |
2019-07-30 | CLOUD: Ask user to manually enable Storage | Alexander Tkachev | |
For more security, newly connected Storage only gets username/used space information and is disabled until user manually presses the button. | |||
2019-07-30 | CLOUD: Minor fixes for the PR#1754 | Alexander Tkachev | |
- added missing 'd' in "%d" in SavesSyncRequest; - removed trailing ',' in enum in gui/options.h; - fixed #endif to have // before USE_LIBCURL in gui/options.h. | |||
2019-07-30 | GUI: Change 'Wi-Fi Sharing' tab name to 'LAN' | Alexander Tkachev | |
2019-07-30 | GUI: Add feature description into Wi-Fi Sharing tab | Alexander Tkachev | |
2019-07-30 | GUI: Fix Cloud tab scrolling problem | Alexander Tkachev | |
GlobalOptionsDialog is now also a CommandSender, so it could send command "scroll to the top" when storage is disconnected in Cloud tab (layout updates, that's why scrolling is needed). | |||
2019-07-30 | GUI: Make Cloud tab wizard input box cleanup value | Alexander Tkachev | |
Now input box does not remember old code you've put in it if you changed selected storage or disconnected one. | |||
2019-07-30 | GUI: Fix Cloud tab wizard elements displaying after connecting storage | Alexander Tkachev | |
Elements were displayed until scrollbar was used, now they are hidden right after storage is connected. | |||
2019-07-30 | GUI: Separate Cloud tab in two | Alexander Tkachev | |
All local webserver-related settings are now shown in a separate, "Wi-Fi Sharing" tab (shown if built with USE_SDL_NET). Cloud tab is only shown if actual cloud storages are built (USE_LIBCURL). | |||
2019-07-30 | GUI: Rewrite Cloud tab | Alexander Tkachev | |
- StorageWizardDialog is removed, along with bmps it was using; - EditTextWidget now accepts custom font in constructor; - ScrollContainer scrollbar now jumps to top when content height changes so it's "overscrolled"; - IndexPageHandler now does not awaits for `code` GET-parameter, as local webserver is no longer used to connect Storages; - CloudManager and all corresponding Storages are updated to support disconnecting and to notify about successful connection. | |||
2019-07-30 | COMMON: Add getHumanReadableBytes() in util.h | Alexander Tkachev | |
This function was used in cloud-related DownloadDialog before, and now it is also used in Options > Cloud tab. | |||
2019-02-10 | GUI: Revert of accidental change | Peter Kohaut | |
Revert of a change which I accidentaly commited during bladerunner development. | |||
2019-02-10 | BLADERUNNER: Use ScummVM functionality for audio volume management | Peter Kohaut | |
2018-12-18 | GUI: Fix defaulting of "Use native system file browser" checkbox | Tarek Soliman | |
2018-12-17 | COMMON: Rename enum variable for native browser feature | Thierry Crozat | |
There was a typo in the name (missing 'r' in browser). | |||
2018-12-17 | GUI: Add missing space in tooltip string | Thierry Crozat | |
2018-12-16 | GUI: Add option to enable/disable using the system file browser | Thierry Crozat | |
2018-12-02 | GUI: Add an option to set the GUI language to the game language | Bastien Bouclet | |
2018-11-14 | GUI: Don't display the ScrollContainer background inside tabs | Bastien Bouclet | |
Fixes #10645. | |||
2018-11-04 | BACKENDS: Remove references to the GP32 backend | Cameron Cawley | |
2018-10-22 | GUI: Unset stretch-mode in game settings not overriding global settings | Thierry Crozat | |
2018-07-29 | GUI: Fix graphics options visibility depending on supported featuress | Thierry Crozat | |
2018-07-22 | GUI: Use consistent capitalization for options | Thierry Crozat | |
As discussed on the mailing list we should use title capitalization only for push buttons and tabs and use sentence capitalization for everything else. | |||
2018-07-22 | GUI: Fix crash when accessing options from GMM | Thierry Crozat | |
2018-07-22 | GUI: Use ScrollContainer in graphics tab | Thierry Crozat | |
This fixes bug #10634 - GUI: Options cutoff for Edit Game when Graphics mode is x2 or less | |||
2018-07-08 | GUI: Add Stretch Mode selection in Options dialog | Thierry Crozat | |
2018-01-27 | GUI: Remove Dialog::markAsDirty to expose full GUI redraws | Bastien Bouclet | |
2018-01-27 | GUI: Implement dirty-checking for widget redraws | Bastien Bouclet | |