Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.<br>
If you have any questions, the best way to reach me is
via [The Audio Programmer Discord](https://discord.gg/v5Rs8h6aGF), I'm @Meijis.
Expand Down
2 changes: 1 addition & 1 deletion include/mostly_harmless/utils/mostlyharmless_Directories.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace mostly_harmless::utils::directories {
*/
Documents,
/**
* The user application data directory - on macOS, ~/Library, on Windows, C:/Users/<You>/AppData
* The user application data directory - on macOS, ~/Library/Application Support, on Windows, C:/Users/<You>/AppData
*/
UserAppData,
/**
Expand Down
2 changes: 1 addition & 1 deletion source/utils/platform/mostlyharmless_DirectoriesMacOS.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down