mirror of
https://git.mirrors.martin98.com/https://github.com/gulrak/filesystem
synced 2025-08-12 02:09:04 +08:00
Merge branch 'master' into feature-cpp20-support
This commit is contained in:
commit
5b5b529398
13
README.md
13
README.md
@ -5,7 +5,7 @@
|
|||||||
[](https://cirrus-ci.com/github/gulrak/filesystem)
|
[](https://cirrus-ci.com/github/gulrak/filesystem)
|
||||||
[](https://cloud.drone.io/gulrak/filesystem)
|
[](https://cloud.drone.io/gulrak/filesystem)
|
||||||
[](https://coveralls.io/github/gulrak/filesystem?branch=master)
|
[](https://coveralls.io/github/gulrak/filesystem?branch=master)
|
||||||
[](https://github.com/gulrak/filesystem/tree/v1.3.8)
|
[](https://github.com/gulrak/filesystem/tree/v1.3.10)
|
||||||
|
|
||||||
# Filesystem
|
# Filesystem
|
||||||
|
|
||||||
@ -68,7 +68,8 @@ of the UTF-8 preference on Windows).
|
|||||||
|
|
||||||
This implementation is following the ["UTF-8 Everywhere" philosophy](https://utf8everywhere.org/) in that all
|
This implementation is following the ["UTF-8 Everywhere" philosophy](https://utf8everywhere.org/) in that all
|
||||||
`std::string` instances will be interpreted the same as `std::u8string` encoding
|
`std::string` instances will be interpreted the same as `std::u8string` encoding
|
||||||
wise and as being in UTF-8. The `std::u16string` will be seen as UTF-16 and
|
wise and as being in UTF-8. The `std::u16string` will be seen as UTF-16. See *Differences in API*
|
||||||
|
for more information.
|
||||||
|
|
||||||
Unit tests are currently run with:
|
Unit tests are currently run with:
|
||||||
|
|
||||||
@ -112,8 +113,8 @@ in the standard, and there might be issues in these implementations too.
|
|||||||
|
|
||||||
### Downloads
|
### Downloads
|
||||||
|
|
||||||
The latest release version is [v1.3.8](https://github.com/gulrak/filesystem/tree/v1.3.8) and
|
The latest release version is [v1.3.10](https://github.com/gulrak/filesystem/tree/v1.3.10) and
|
||||||
source archives can be found [here](https://github.com/gulrak/filesystem/releases/tag/v1.3.8).
|
source archives can be found [here](https://github.com/gulrak/filesystem/releases/tag/v1.3.10).
|
||||||
|
|
||||||
### Using it as Single-File-Header
|
### Using it as Single-File-Header
|
||||||
|
|
||||||
@ -519,9 +520,9 @@ to the expected behavior.
|
|||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
### v1.3.9 (WIP)
|
### [v1.3.10](https://github.com/gulrak/filesystem/releases/tag/v1.3.10)
|
||||||
|
|
||||||
* Fix for [#81](https://github.com/gulrak/filesystem/issues/79), fixed issues with
|
* Fix for [#81](https://github.com/gulrak/filesystem/issues/81), fixed issues with
|
||||||
handling `Source` parameters that are string views.
|
handling `Source` parameters that are string views.
|
||||||
* Fix for [#79](https://github.com/gulrak/filesystem/issues/79), the bit operations
|
* Fix for [#79](https://github.com/gulrak/filesystem/issues/79), the bit operations
|
||||||
for filesystem bitmasks that should be are now `constexpr`.
|
for filesystem bitmasks that should be are now `constexpr`.
|
||||||
|
@ -223,7 +223,7 @@
|
|||||||
//- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
//- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
// ghc::filesystem version in decimal (major * 10000 + minor * 100 + patch)
|
// ghc::filesystem version in decimal (major * 10000 + minor * 100 + patch)
|
||||||
#define GHC_FILESYSTEM_VERSION 10309L
|
#define GHC_FILESYSTEM_VERSION 10310L
|
||||||
|
|
||||||
#if !defined(GHC_WITH_EXCEPTIONS) && (defined(__EXCEPTIONS) || defined(__cpp_exceptions) || defined(_CPPUNWIND))
|
#if !defined(GHC_WITH_EXCEPTIONS) && (defined(__EXCEPTIONS) || defined(__cpp_exceptions) || defined(_CPPUNWIND))
|
||||||
#define GHC_WITH_EXCEPTIONS
|
#define GHC_WITH_EXCEPTIONS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user