Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-21 | COMMON: Fix escaping and parsing of UTF-8 strings in JASON parser | Thierry Crozat | |
2018-05-10 | COMMON: Use nullptr instead of NULL or 0 where appropriate | Bastien Bouclet | |
2017-01-12 | COMMON: Replace sprintf() with safer String::format() in JSON module. | D G Turner | |
2016-10-30 | COMMON: Fix GCC Warning in JSON Parser. | D G Turner | |
The emitted warning is "ISO C++98 does not support the ‘%lg’ gnu_printf format [-Wformat=]". Though "%lg" is required for *scanf functions to indicate the field size, it is not required for *printf functions which use "%g" instead. | |||
2016-09-03 | JANITORIAL: Make GPL headers uniform | Eugene Sandulenko | |
2016-08-30 | COMMON: Replace broken URL | Willem Jan Palenstijn | |
2016-08-30 | COMMON: Fix sign warning | Willem Jan Palenstijn | |
2016-08-24 | JANITORIAL: Remove spaces at the end of the line | Alexander Tkachev | |
I knew there were some, but I wanted to fix them once, instead of doing it all the time. | |||
2016-08-24 | CLOUD: Fix some warnings | Alexander Tkachev | |
Mostly on format string | |||
2016-08-24 | CLOUD: Add GoogleDriveStorage | Alexander Tkachev | |
It has its own GoogleDriveTokenRefresher and knows how to do info(). This commit also contains JSON int -> long long int fix and CurlJsonRequest '\n' -> ' ' fix. | |||
2016-08-24 | COMMON: Fix JSON to understand integers correctly | Alexander Tkachev | |
2016-08-24 | CLOUD: Fix format string warnings | Alexander Tkachev | |
I get 'warning: ISO C++98 does not support the '%lg' ms_printf format' warning though. | |||
2016-08-24 | CLOUD: Remove wcsncasecmp() usage from SimpleJSON | Alexander Tkachev | |
Replaced with scumm_strnicmp(). | |||
2016-08-24 | CLOUD: Refactor SimpleJSON | Alexander Tkachev | |
2016-08-24 | CLOUD: SimpleJSON refactor | Alexander Tkachev | |
Resharper + manual methods & fields renaming. | |||
2016-08-24 | CLOUD: Add SimpleJSON library as Common::JSON | Alexander Tkachev | |
This commit also adds CloudThread class, which work() method is called every second by TimerManager. Right now it prints JSON examples on the console, so that's why it's introduced with SimpleJSON library. |