| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | there are reasons for things being the way they were (nw) | 2020-01-31 | 1 | -0/+10 | |
| | | |||||
| * | fixed some modernize-use-equals-default clang-tidy warnings (nw) (#6237) | 2020-01-30 | 1 | -10/+0 | |
| | | |||||
| * | Merge pull request #6195 from firewave/includes | 2020-01-22 | 1 | -1/+1 | |
| |\ | | | | | use C++ library includes (nw) | ||||
| | * | use C++ library includes (nw) | 2020-01-22 | 1 | -1/+1 | |
| | | | |||||
| * | | fixed some clang-tidy warnings (nw) (#6197) | 2020-01-22 | 1 | -1/+1 | |
| |/ | | | | | | | | | | | | | | * fixed some bugprone-throw-keyword-missing clang-tidy warnings (nw) * fixed some modernize-use-nullptr clang-tidy warnings (nw) * fixed some readability-delete-null-pointer clang-tidy warnings (nw) * fixed some performance-faster-string-find clang-tidy warnings (nw) * fixed some performance-for-range-copy clang-tidy warnings (nw) * fixed some readability-redundant-string-cstr clang-tidy warnings (nw) | ||||
| * | Use canonical spelling of "canonical" (nw) | 2019-08-02 | 1 | -1/+1 | |
| | | |||||
| * | Convert zippath directory to a C++ interface | 2018-01-10 | 1 | -719/+533 | |
| | | |||||
| * | more TRUE/FALSE cleanup (nw) | 2016-10-22 | 1 | -3/+3 | |
| | | |||||
| * | NOTICE (TYPE NAME CONSOLIDATION) | 2016-10-22 | 1 | -2/+2 | |
| | | | | | | Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8 | ||||
| * | Another correction | 2016-07-29 | 1 | -2/+2 | |
| | | |||||
| * | Third time is a charm :-) | 2016-07-29 | 1 | -9/+9 | |
| | | |||||
| * | Better use of std::string::size_type and other cleanups | 2016-07-29 | 1 | -6/+6 | |
| | | |||||
| * | Converted a number of zippath calls that took 'const char *' to std::string | 2016-07-29 | 1 | -22/+22 | |
| | | |||||
| * | Cleanups and version bump | 2016-07-27 | 1 | -37/+37 | |
| | | |||||
| * | As per Vas Crabb, readding overloads that take a std::string& parameter for ↵ | 2016-07-04 | 1 | -6/+43 | |
| | | | | | the result | ||||
| * | Changed a few zippath related functions to return their strings as a return ↵ | 2016-07-03 | 1 | -8/+9 | |
| | | | | | value, as opposed to passing in a destination buffer | ||||
| * | Changed zippath.[cpp|h] to use C++-style comments | 2016-07-03 | 1 | -73/+73 | |
| | | |||||
| * | Supply modified time for files in archives [Vas Crabb] | 2016-06-25 | 1 | -3/+7 | |
| | | |||||
| * | POSIX implementation for new directory read features, cleanup of Windows ↵ | 2016-06-25 | 1 | -4/+4 | |
| | | | | | implementation, return directory handle as smart pointer, fix full build [Vas Crabb] | ||||
| * | Changed osd_stat() to return std::unique_ptr<osd::directory::entry> | 2016-06-24 | 1 | -1/+1 | |
| | | |||||
| * | C++-ified osd_directory (now osd::directory), and added last_modified to ↵ | 2016-06-24 | 1 | -32/+32 | |
| | | | | | osd::directory::entry | ||||
| * | foobar is not a subdirectory of foo called bar | 2016-04-10 | 1 | -6/+10 | |
| | | |||||
| * | STL makes life easier | 2016-04-10 | 1 | -35/+18 | |
| | | |||||
| * | Fix for archives containing directories like foobar following foo | 2016-04-10 | 1 | -3/+4 | |
| | | |||||
| * | Fix phantom files in archives containing directories | 2016-04-10 | 1 | -18/+12 | |
| | | |||||
| * | Cleanups and version bump | 2016-03-30 | 1 | -2/+1 | |
| | | |||||
| * | Fix zippath browsing and allow zippath to browse/load 7zip | 2016-03-18 | 1 | -147/+106 | |
| | | | | | This code is still horrible and needs rewriting, but not tonight | ||||
| * | Fold some redundant code | 2016-03-18 | 1 | -20/+13 | |
| | | |||||
| * | * Remove confusing method from vectorstreams that hide base_ios method ↵ | 2016-03-18 | 1 | -52/+51 | |
| | | | | | | | | | | | | | | (fixes disassembly view) * Allow std::string to pass through core_file unmolested (reduces temporary allocations) * Make zip/7z instances of same class with uniform interface * zippath browsing is broken at the moment This is another step towards transparent archive support. It's now possible to access zip and 7z archives with the same code. Nothing is taking advantage of it yet. There's now some very similar code in fileio.cpp and clifront.cpp that could be folded at some point. | ||||
| * | Make osd_file a polymorphic class that's held with smart pointers | 2016-03-14 | 1 | -90/+85 | |
| | | | | | | | | | | | | | | | | Make avi_file a class that's held with smart pointers, encapsulate various AVI I/O structures Make zip_file and _7z_file classes rather than having free functions everywhere Hide zip/7z class implementation behind an interface, no longer need to call close() to send back to the cache Don't dump as much crap in global namespace Add solaris PTY implementation Improve variable expansion for SDL OSD - supports ~/$FOO/${BAR} syntax Rearrange stuff so the same things are in file module for all OSDs Move file stuff into its own module 7z/zip open and destruct are still not thread-safe due to lack of interlocks around cache access Directory functions still need to be moved to file module SDL OSD may not initialise WinSock on Windows | ||||
| * | Turn core_file into a proper class that gets cleaned up safely using unique_ptr | 2016-03-06 | 1 | -6/+6 | |
| | | | | | Subverted somewhat by chd_file class | ||||
| * | clang-modernize part 1 (nw) | 2015-12-03 | 1 | -52/+52 | |
| | | |||||
| * | Rename *.c -> *.cpp in our source (nw) | 2015-11-08 | 1 | -0/+1101 | |
