Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-07 | I18N: Regenerate translations data file | Thierry Crozat | |
2019-10-03 | GUI: Add Missing Switch Default Cases | D G Turner | |
These are flagged by GCC if -Wswitch-default is enabled. | |||
2019-09-30 | I18N: Regenerate translations data file | Thierry Crozat | |
2019-09-23 | I18N: Regenerate translations data file | Thierry Crozat | |
2019-09-21 | BACKENDS: Add a default clipboard implementation | Cameron Cawley | |
2019-09-16 | I18N: Regenerate translations data file | Thierry Crozat | |
2019-09-16 | DEBUGGER: Fix MSVC Warning | D G Turner | |
This was reported by Henke37 on IRC. | |||
2019-09-14 | GUI: Change "saves" to "saved games" in labels | Ben Castricum | |
2019-09-14 | EVENTRECORDER: Fix GCC Compiler Warnings | D G Turner | |
These were memcpy usage to copy a non-trivial structure. | |||
2019-09-13 | CREDITS: Add credits for all of the engines | Eugene Sandulenko | |
2019-09-13 | CREDITS: Add special thanks for HDB and Supernova | Thierry Crozat | |
2019-09-09 | I18N: Regenerate translations data file | Thierry Crozat | |
2019-09-03 | I18N: Regenerate translations data file | Thierry Crozat | |
2019-09-02 | GUI: Fix Missing Field Initializer in List Widget | D G Turner | |
This field was introduced by the TTS code changes, but only one of the constructors was modified to set the default value. | |||
2019-09-01 | TTS: Refactoring | Jaromir Wysoglad | |
Refactoring as suggested by bluegr on github. | |||
2019-09-01 | JANITORIAL: Remove some trailing whitespaces | Jaromir Wysoglad | |
2019-09-01 | TTS: Use QUEUE_NO_REPEAT action for tooltips | Jaromir Wysoglad | |
2019-09-01 | TTS: Don't read tooltips when TTS is speaking | Jaromir Wysoglad | |
2019-09-01 | TTS: Add tooltip reading when they appear. | Jaromir Wysoglad | |
2019-09-01 | TTS: Fix reading of list widgets | Jaromir Wysoglad | |
The TTS read items from list widgets even when the mouse was outside the widget | |||
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: Remove "static" from initTextToSpeech() | Jaromir Wysoglad | |
2019-09-01 | TTS: Implement tts state switching when needed. | Jaromir Wysoglad | |
The state has to be pushed and poped when there is a transition between game and gui code. | |||
2019-09-01 | TTS: Minor refactorisations | Jaromir Wysoglad | |
- Add comment to tts initialization on Windows - Correctly free the voicesInfo in linux ttsMan - Remove popState method from linux-text-to-speech.h and windows-text-to-speech.h - Add tts to help in configure - Refactor language setting in gui-manager.cpp It counted with english being the default language in ttsMan constructors, which isn't true anymore. | |||
2019-09-01 | TTS: Fix voice setting on startup | Jaromir Wysoglad | |
The ScummVM was crashing because of an assert, when there was less voices availaible, than what was set in the ConfMan. Now the voice just falls back to 0th voice, if there are not enough voices. | |||
2019-09-01 | TTS: Make sure that TTS lang matches transMan lang | Jaromir Wysoglad | |
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: Convert strings to UTF-8 | Jaromir Wysoglad | |
Conversion happens only for languages, that might needed (not for english) | |||
2019-09-01 | TTS: Add Accessibility tab to all themes | 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-09-01 | TTS: Add part of linux TTS | Jaromir Wysoglad | |
2019-08-29 | I18N: Regenerate translations data file | Thierry Crozat | |
2019-08-20 | I18N: Regenerate translations data file | Thierry Crozat | |
2019-08-18 | GUI: Check if fullscreen is available at runtime | Cameron Cawley | |
2019-08-17 | GUI: Fix GCC Compiler Warnings in GUI Theme Parser Code | D G Turner | |
This removes the usage of memset to clear complex structures and replaces them with constructor methods for the structures which will be executed when these are instantiated. | |||
2019-08-15 | CREDITS: Add credits for Supernova and update iOS and macOS credits | Thierry Crozat | |
2019-08-13 | CREDITS: Add myself | sluicebox | |
The big reveal | |||
2019-08-13 | I18N: Regenerate translations data file | Thierry Crozat | |
2019-08-09 | GUI: Enable missing translation in Cloud options dialog | Lothar Serra Mari | |
2019-08-05 | I18N: Regenerate translations data file | Thierry Crozat | |
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-08-03 | GUI: Fix TabWidget's < and > buttons | Alexander Tkachev | |
These were incorrectly positioned (typos in code, missing value in one expression). |