Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Remove dead code (#10845) | rubenwardy | 2021-01-22 |
| | |||
* | Fix some minor code issues all over the place | sfan5 | 2020-12-24 |
| | |||
* | Clean up server-side translations, remove global variable (#10075) | rubenwardy | 2020-09-16 |
| | |||
* | Server pushing media at runtime (#9961) | sfan5 | 2020-06-13 |
| | |||
* | Fix a stringop-truncation GCC warning | Loïc Blot | 2018-12-04 |
| | | | | | | | ``` minetest/src/filesys.cpp:312:10: warning: ‘char* strncpy(char*, const char*, size_t)’ specified bound 10000 equals destination size [-Wstringop-truncation] strncpy(argv_data[2], path.c_str(), 10000); ``` | ||
* | Android: Fix recursive delete (#7882) | stujones11 | 2018-11-21 |
| | |||
* | Really delete things in fs::RecursiveDelete (#7433) | Vitaliy | 2018-08-18 |
| | | | | | | * Really delete things in fs::RecursiveDelete | ||
* | Android: Use correct temporary path (#7463) | stujones11 | 2018-06-23 |
| | |||
* | Load files from subfolders in texturepacks | number Zero | 2017-11-17 |
| | | | | Updated and rebased version of a PR by red-001 | ||
* | Modernize various files | Loic Blot | 2017-08-18 |
| | | | | | | | | | * range-based for loops * emplace_back instead of push_back * code style * C++ headers instead of C headers * Default operators * empty stl function | ||
* | Fix RemoveRelatvePathComponents | ShadowNinja | 2016-12-20 |
| | | | | | This used to return "/foo" for "../foo" when it should return the enpty string (i.e., error removing all relative components). | ||
* | Fix fs::RemoveRelativePathComponents for paths with a leading dot component | ShadowNinja | 2016-11-24 |
| | | | | | | Previously, paths like ./worlds would be resolved to /worlds since the leading dot was considered just as irrelevant as a dot in the middle of the path. | ||
* | Use MoveFileEx to rename files on Windows (not rename) | gregorycu | 2016-05-01 |
| | |||
* | filesys: safeWriteToFile(): Remove the target file before rename only on Windows | Perttu Ahola | 2016-01-01 |
| | | | | | | | | | | Removing the target file on other platforms was enabled likely unintentionally by commit 5f1f1151d3a9c113902630adc16cc3f4845da7ba. This may be the reason why there has been corruption of files on Linux on hard shutdowns. Previously I described the problem and this fix in issue #3084. | ||
* | Add seperate cache path | ShadowNinja | 2015-12-07 |
| | | | | | This is set to the XDG cache path where possible. It's set to the app's cache path on Android. | ||
* | Windows: Fix some warnings. | Diego Martinez | 2015-07-09 |
| | |||
* | Add mod security | ShadowNinja | 2015-05-16 |
| | | | | Due to compatibility concerns, this is temporarily disabled. | ||
* | Tests: Modularize unit testing | kwolekr | 2015-04-26 |
| | | | | | | Split unit tests into separate files under src/unittest/ Give better unittest diagnostics Clean up some code | ||
* | Schematics: Prepend mod path to relative schematic filepaths | kwolekr | 2015-04-08 |
| | |||
* | Fix fs::GetRecursiveSubPaths trying to get directory lists for files | ShadowNinja | 2014-12-24 |
| | |||
* | Rewrite fs:GetDirListing(file) by kahrl | SmallJoker | 2014-12-10 |
| | |||
* | Ignore .name directories and files | SmallJoker | 2014-12-10 |
| | | | | Signed-off-by: Craig Robbins <kde.psych@gmail.com> | ||
* | Remove temporary file at safeWriteToFile() | selat | 2014-08-16 |
| | |||
* | Add support for Android 2.3+ | sapier | 2014-06-29 |
| | | | | | | | | | | | | | There have been plenty of ppl involved in creating this version. I don't wanna mention names as I'm sure I'd forget someone so I just tell where help has been done: - The partial android versions done by various ppl - Testing on different android devices - reviewing code (especially the in core changes) - testing controls - reviewing texts A big thank you to everyone helping this to be completed! | ||
* | Omnicleanup: header cleanup, add ModApiUtil shared between game and mainmenu | Kahrl | 2013-08-14 |
| | |||
* | Dont write directly to files but rather write and copy a tmp file | PilzAdam | 2013-08-13 |
| | |||
* | Fix various memory access problems detected by valgrind | Kahrl | 2013-08-07 |
| | |||
* | Replace C++ mainmenu by formspec powered one | sapier | 2013-07-02 |
| | |||
* | Update Copyright Years | Sfan5 | 2013-02-24 |
| | |||
* | Change Minetest-c55 to Minetest | PilzAdam | 2013-02-24 |
| | |||
* | Switch the license to be LGPLv2/later, with small parts still remaining as ↵ | Perttu Ahola | 2012-06-05 |
| | | | | GPLv2/later, by agreement of major contributors | ||
* | Add #include <unistd.h> to filesys.cpp | Perttu Ahola | 2012-04-06 |
| | |||
* | Better file/directory removal platform code and utilities | Perttu Ahola | 2012-03-26 |
| | |||
* | Small fix to fs::GetDirListing when trying to list an inexistent directory | Perttu Ahola | 2012-03-25 |
| | |||
* | Fix filesys.cpp debug output to go into debug.txt | Perttu Ahola | 2012-03-23 |
| | |||
* | Fix CreateAllDirs() (failed for relative fully non-existing path) | Perttu Ahola | 2012-03-11 |
| | |||
* | Check symlinks with stat() to know if they are directories or not | Perttu Ahola | 2011-12-04 |
| | |||
* | Add support for unix filesystems which yield DT_UNKNOWN in dirent->d_type, ↵ | Perttu Ahola | 2011-12-04 |
| | | | | falling back on stat(). | ||
* | Fix map delete on windows (concatenate paths correctly with / or \ depending ↵ | Perttu Ahola | 2011-10-16 |
| | | | | on OS) | ||
* | Fix bug in posix file/directory removal wrapper, as pointed out by kahrl | Perttu Ahola | 2011-09-06 |
| | |||
* | Windows.h -> windows.h for cross-mingw build | Perttu Ahola | 2011-08-14 |
| | |||
* | New map directory structure that avoids map size being limited by filesystem | Ciaran Gultnieks | 2011-05-18 |
| | |||
* | should work now | Perttu Ahola | 2011-01-26 |
| | |||
* | Little fixes | Perttu Ahola | 2011-01-26 |
| | |||
* | Map deletion button | Perttu Ahola | 2011-01-26 |
| | |||
* | removed boost support from filesys.cpp; default to posix | Perttu Ahola | 2011-01-07 |
| | |||
* | license stuff | Perttu Ahola | 2010-11-29 |
| | | | | | --HG-- rename : src/licensecomment.txt => licensecomment.txt | ||
* | Initial files | Perttu Ahola | 2010-11-27 |