diff --git a/README.md b/README.md index 5854f5a..454b868 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ capable of building CLAP, VST3, Audio Unit and Standalone targets. > is firmly on you! The framework is in active development, alongside some of our own plug-ins, and there are some notable missing features, -so if you're thinking of giving it a go, please bare in mind that we're still +so if you're thinking of giving it a go, please bear in mind that we're still working on it.
If you have any questions, the best way to reach me is via [The Audio Programmer Discord](https://discord.gg/v5Rs8h6aGF), I'm @Meijis. diff --git a/include/mostly_harmless/utils/mostlyharmless_Directories.h b/include/mostly_harmless/utils/mostlyharmless_Directories.h index 73033e4..5df6e9d 100644 --- a/include/mostly_harmless/utils/mostlyharmless_Directories.h +++ b/include/mostly_harmless/utils/mostlyharmless_Directories.h @@ -22,7 +22,7 @@ namespace mostly_harmless::utils::directories { */ Documents, /** - * The user application data directory - on macOS, ~/Library, on Windows, C:/Users//AppData + * The user application data directory - on macOS, ~/Library/Application Support, on Windows, C:/Users//AppData */ UserAppData, /** diff --git a/source/utils/platform/mostlyharmless_DirectoriesMacOS.mm b/source/utils/platform/mostlyharmless_DirectoriesMacOS.mm index 398932b..008086a 100644 --- a/source/utils/platform/mostlyharmless_DirectoriesMacOS.mm +++ b/source/utils/platform/mostlyharmless_DirectoriesMacOS.mm @@ -13,7 +13,7 @@ return homePath / "Documents"; } case DirectoryType::UserAppData: { - return homePath / "Library"; + return homePath / "Library" / "Application Support"; } case DirectoryType::Temp: { const char* tempDir = NSTemporaryDirectory().UTF8String;