Skip to content

Commit 3e4da96

Browse files
authored
Merge pull request #75 from SLM-Audio/syl/user-app-data
Change ~/Library to ~/Library/Application Support
2 parents c9df54d + 32e091b commit 3e4da96

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ capable of building CLAP, VST3, Audio Unit and Standalone targets.
88
> is firmly on you!
99
1010
The framework is in active development, alongside some of our own plug-ins, and there are some notable missing features,
11-
so if you're thinking of giving it a go, please bare in mind that we're still
11+
so if you're thinking of giving it a go, please bear in mind that we're still
1212
working on it.<br>
1313
If you have any questions, the best way to reach me is
1414
via [The Audio Programmer Discord](https://discord.gg/v5Rs8h6aGF), I'm @Meijis.

include/mostly_harmless/utils/mostlyharmless_Directories.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace mostly_harmless::utils::directories {
2222
*/
2323
Documents,
2424
/**
25-
* The user application data directory - on macOS, ~/Library, on Windows, C:/Users/<You>/AppData
25+
* The user application data directory - on macOS, ~/Library/Application Support, on Windows, C:/Users/<You>/AppData
2626
*/
2727
UserAppData,
2828
/**

source/utils/platform/mostlyharmless_DirectoriesMacOS.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
return homePath / "Documents";
1414
}
1515
case DirectoryType::UserAppData: {
16-
return homePath / "Library";
16+
return homePath / "Library" / "Application Support";
1717
}
1818
case DirectoryType::Temp: {
1919
const char* tempDir = NSTemporaryDirectory().UTF8String;

0 commit comments

Comments
 (0)