Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-11-12Update glib wrap from upsteam (now w/ fallback URL!)HEADmainkcgen
2022-11-12Update Tracy to v0.9Kirk Klobe
2022-11-12Remove ctrl modifier from international 1 keyRicardo
2022-11-12Set left gui key as extendedRicardo
2022-11-12Add international 1 key name to keyboard mapperRicardo
2022-11-12Reposition Intl1 key in keyboard mapperRicardo
2022-11-12Add handling for ABNT2 slash/question mark keyRicardo
This commit is based on Wengier's INTERNATIONAL1 scancode handling in DOSBox-X. Imported-from: joncampbell123/dosbox-x@779dee8 Co-authored-by: Wengier <wengierwu@yahoo.com>
2022-11-10Fix a typo when screen-capturing to handle non-OpenGL systemskcgen
2022-11-10Normalize the capture file opener function namekcgen
This uses the standard "MODULE_CamelCase" for the previous non-standard OpenCaptureFile(...) function.
2022-11-10Support Alt+F5 screenshots of rendered outputkcgen
2022-11-10Add SDL2_image dependency to packages and build systemskcgen
2022-11-09Add Zlib licenseJohn Novak
2022-11-09Update LICENSEJohn Novak
2022-11-09Add stb_truetype to the build systemJohn Novak
2022-11-09Add stb_truetype librarySean Barrett
stb_truetype is a lightweight, header-only library to parse, decode, and rasterize characters from TrueType fonts.
2022-11-09Add fontstash to the build systemJohn Novak
2022-11-09Add fontstash libraryMikko Mononen
Font stash is light-weight online font texture atlas builder written in C. It uses stb_truetype to render fonts on demand to a texture atlas.
2022-11-08Reduce compiler warning allowanceFeralChild64
2022-11-08Compiler warning fix from ManyMouse authorFeralChild64
Co-authored-by: icculus <icculus@icculus.org>
2022-11-08Clarify tandy and ibm5153 cga_colors config descriptionsKappa971
2022-11-08Update Italian (it-it) translationKappa971
2022-11-08Clarify `tandy` and `ibm5153` `cga_colors` config descriptionsJohn Novak
2022-11-07Confirm to powf float-only API in reSIDfpkcgen
2022-11-07Sync reSIDfp with upstreamLeandro Nini
2022-11-07Add general DOS user request functionsFeralChild64
2022-11-07Allow to cancel interactive mouse mapping with a keyboardFeralChild64
2022-11-07Update Polish (pl) translationFeralChild64
2022-11-06Improve interactive mouse mappingFeralChild64
2022-11-06Rename ninja in the Ubuntu package listkcgen
2022-11-06Add ninja to Fedora and Ubuntu CI packageskcgen
2022-11-06Fix sentence starting with lower case in MOUNT command helpFeralChild64
2022-11-05Cleanup string IDs of DOS programsFeralChild64
2022-11-05Update tag-linekcgen
Co-authored-by: John Novak <john@johnovak.net>
2022-11-04Add mouse related hints to title barFeralChild64
2022-11-03Move toolkit-independent mouse code out of sdlmain.cppFeralChild64
2022-11-03Fix a bug preventing rescanning for new miceFeralChild64
2022-10-30Delete obsolete translated msgsRobert de Rooy
2022-10-30Update Italian (it-it) translationKappa971
2022-10-29Add Dutch translation of MORERobert de Rooy
2022-10-28Update zlib wrap to version 1.2.13 revision 1kcgen
2022-10-28Update SpeexDSP wrap to version 1.2.1 revision 5kcgen
2022-10-27Split contributed CD-DA scripts into fetch vs. cue functionskcgen
This avoids duplicating the CUE generating portion among the playlist and chapter fetching scripts. It also improves the CUE generation to handle content that exceeds a single Redbook CD-DA (it generates multiple CUEs).
2022-10-26Implement MORE.COM commandFeralChild64
2022-10-24Add Dutch tranlation of MOUSECTLRobert de Rooy
2022-10-23Update Italian (it-it) translationKappa971
2022-10-23Fix a time-of-check time-of-use (TOCTOU) scenario in ManyMouse (CWE-367)kcgen
TOCTOU security issues exists between a check event and a use event in which an attacker can change properties about the thing being used. In this case, the code checked several stat-based properties about the mouse's character-device file path, and once verified, opened the the file path as a bona fide mouse device. Because the same open file descriptor isn't maintained across the checks through to the usage, we can't be guaranteed that file used is the one we checked (the crux of the TOCTOU vulnerability). To fix it, we hold the sample file descriptor across the checks and usage.
2022-10-23Fix an implicit sign conversion warning in ManyMousekcgen
Fixes: warning: implicit conversion changes signedness: 'unsigned int' to 'int'
2022-10-23Fix potential loss-of-precision when reading in ManyMousekcgen
2022-10-23Fix uninitialized event member access in ManyMouse (CWE-457)kcgen
In pump_events, the event struct members are used initialized in three places: 1. Line 479, the event struct is passed into queue_event() which accesses the event's minval member, but it hasn't been written to at this point. 2. Line 488, the event struct is passed into queue_event() which accesses the event's minval member, but it hasn't been written to at this point. 3. Line 505, the event struct is passed into queue_event() which accesses the event's item member, but it hasn't been written to at this point.
2022-10-22Fix outdated config option descriptionFeralChild64