Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 saves sync | Alexander Tkachev | |
Tested that on actual unix system and found out a few minor bugs related to paths. | |||
2016-08-24 | CLOUD: Make download() create necessary directories | Alexander Tkachev | |
DumpFile::open() with createPath=true create would create the missing directories from the path before opening a file. Thus, one can easily create a file and avoid "can't open a file" error. | |||
2016-08-04 | COMMON: Add WriteStream::pos() | Alexander Tkachev | |
It returns int32, because some complex streams are derived from both WriteStream and ReadStream, and in ReadStream pos() returns int32, because -1 means an error. I had to change MemoryStream's uint32 to int32, which is probably not so good. | |||
2014-02-18 | COMMON: Make GPL headers consistent in themselves. | Johannes Schickel | |
2013-01-26 | JANITORIAL: Enforce "} // End of namespace" with a single space after }. | Johannes Schickel | |
2011-08-07 | COMMON: Remove superfluous Common:: qualifiers. | Christoph Mallon | |
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2010-06-15 | Hid hashed fileopening to debuglevel 8. | Eugene Sandulenko | |
svn-id: r49705 | |||
2009-09-23 | Got rid of Common::File::addDefaultDirectory, instead implemented the ↵ | Johannes Schickel | |
solution proposed in "Case agnostic handling for directories (and files)" on -devel. svn-id: r44266 | |||
2009-07-29 | Removed redundant File::ioFailed() implementation; also turned ↵ | Max Horn | |
ReadStream::ioFailed from a virtual into an inline method svn-id: r42911 | |||
2009-07-29 | Removed last traces of clearIOFailed. Yay :) | Max Horn | |
svn-id: r42910 | |||
2009-05-19 | COMMON: Removed Stream::ioFailed() and clearIOFailed(), as they are ↵ | Max Horn | |
deprecated; however, retained ioFailed in SeekableReadStream and File for now (so for now this mainly affects WriteStream subclasses) svn-id: r40725 | |||
2009-02-22 | Changed Common::File and FSDirectory to invoke FSNode::exists a few times ↵ | Max Horn | |
less, reducing overhead svn-id: r38780 | |||
2009-01-30 | do not include common/debug.h from common/util.h | Max Horn | |
svn-id: r36143 | |||
2009-01-23 | Renamed Archive::openFile to createReadStreamForMember | Max Horn | |
svn-id: r36021 | |||
2009-01-23 | Renamed FSNode::openForReading / openForWriting to createReadStream / ↵ | Max Horn | |
createWriteStream, again to make ownership of the returned stream clear svn-id: r36014 | |||
2008-12-22 | Fixed indentation and removed whitespaces at the end of line | Jordi Vilalta Prat | |
svn-id: r35481 | |||
2008-10-27 | Fix for bug #2198456 "FS: Cannot add a subfolder to a non-existing folder". | Johannes Schickel | |
svn-id: r34857 | |||
2008-10-22 | Removed File::addDefaultDirectoryRecursive, tweaked SearchMan API slightly | Max Horn | |
svn-id: r34836 | |||
2008-10-02 | Renamed FilesystemNode -> FSNode | Max Horn | |
svn-id: r34716 | |||
2008-09-30 | Added multiple new open() methods to Common::File, which make it possible to ↵ | Max Horn | |
use this class as a generic convenience wrapper around all kinds of SeekableReadStream; also renamed the name() method to the less confusing getName() svn-id: r34696 | |||
2008-09-29 | File::open no longer falls back to searching the current dir (if this causes ↵ | Max Horn | |
any regressions, please report them; don't work around them, don't revert this change, without discussing it first) svn-id: r34680 | |||
2008-09-27 | Changed Common::File to use SearchMan | Max Horn | |
svn-id: r34663 | |||
2008-09-15 | Corrected and shortened some file opening related warnings | Max Horn | |
svn-id: r34556 | |||
2008-09-14 | Big patch changing semantics of ReadStream::eos(): | Willem Jan Palenstijn | |
eos() now only returns true _after_ trying to read past the end of the stream. This has a large potential for regressions. Please test! svn-id: r34549 | |||
2008-09-13 | Big patch changing the signature of various Stream methods (some ports may ↵ | Max Horn | |
need to be slightly tweaked to fix overloading errors/warnings) svn-id: r34514 | |||
2008-09-08 | Switched File::open, File::addDefaultDirectory to use a SearchSet ↵ | Max Horn | |
internally. Code is a lot shorter & simpler now, far less failing fopen calls (good for NDS and other ports); drawback: regressions :). Good bug hunting to everybody svn-id: r34444 | |||
2008-09-07 | Made File::addDefaultDirectory(Recursive) ignore FSNodes which are not dirs ↵ | Max Horn | |
/ are invalid, instead of erroring out svn-id: r34430 | |||
2008-09-06 | Removed last traces of fopen / FILE from common/file.cpp | Max Horn | |
svn-id: r34393 | |||
2008-09-06 | Switched class File & DumpFile to use StdioStream internally | Max Horn | |
svn-id: r34391 | |||
2008-09-05 | Updated filehandling for Symbian OS | Lars Persson | |
svn-id: r34346 | |||
2008-09-05 | Ported AMIGA specific file buffering 'hack' from class File to StdioStream | Max Horn | |
svn-id: r34345 | |||
2008-09-05 | Updated Symbian OS file actions with ferror and fflush. | Lars Persson | |
svn-id: r34340 | |||
2008-09-03 | Moved StdioStream to its own files inside backends | Max Horn | |
svn-id: r34303 | |||
2008-09-03 | Added new StdioStream class, a thin wrapper around FILE | Max Horn | |
svn-id: r34300 | |||
2008-08-04 | Modified DumpFile::open to accept non-existing nodes, and to actually open ↵ | Max Horn | |
files in write mode -- d'oh svn-id: r33609 | |||
2008-08-04 | Moved the OutSaveFile::finalize method to WriteStream; implemented ↵ | Max Horn | |
DumpFile::flush() svn-id: r33604 | |||
2008-08-03 | Implemented DumpFile::open(FSNode) | Max Horn | |
svn-id: r33586 | |||
2008-07-29 | Changed class File (and derived classes) to only support read-only access; ↵ | Max Horn | |
added a new class DumpFile for writing svn-id: r33412 | |||
2008-07-20 | Two new TODO/FIXME comments for class File | Max Horn | |
svn-id: r33138 | |||
2008-06-11 | No need to specify CaseSensitiveString_Hash explicitly anymore | Max Horn | |
svn-id: r32663 | |||
2008-04-07 | Fix a recent regression reported in bug #1937042: "FEEBLE: Capitalization | Eugene Sandulenko | |
variations when searching for files" svn-id: r31445 | |||
2008-03-30 | Removed char &operator [] from class String -- it had the potential to wreak ↵ | Max Horn | |
havoc when used on shared strings (thanks to tramboi for pointing this out) svn-id: r31334 | |||
2008-01-28 | Fixed the spaces before tabs. | Jordi Vilalta Prat | |
svn-id: r30667 | |||
2008-01-27 | Removed trailing spaces. | Jordi Vilalta Prat | |
svn-id: r30664 | |||
2008-01-18 | Use explicit path in #include statement (DS port specific) | Max Horn | |
svn-id: r30552 | |||
2007-11-13 | Initial commit of the iPhone/iPod Touch backend | Oystein Eftevaag | |
svn-id: r29488 | |||
2007-11-11 | Committed patch #1829748 "Fix for memory leaks in File::exists". | Johannes Schickel | |
svn-id: r29474 |