Details
Details
- Reviewers
Brecht Van Lommel (brecht) - Group Reviewers
Platform: macOS - Commits
- rB9df13fba69c3: macOS: add tilde-based path expander
Diff Detail
Diff Detail
- Repository
- rB Blender
Event Timeline
Comment Actions
We should not commit an incomplete implementation like this.
It's also not clear to me that GHOST_kUserSpecialDirLibrary is a good abstraction for GHOST, since that concept does not exist for other platforms. I would think more specific ones like GHOST_kUserSpecialDirFonts would be better.
Comment Actions
Discard ghost: implementing GHOST_kUserSpecialDirHome or GHOST_kUserSpecialDirFonts for windows creates dependence on blenlib AFAIK. So used storage_apple.mm since expanding ~/ can count as a directory operation.
I thought about adding BLI_mac_user_home_dir to storage_apple.mm but then there'd be two functions (that and BKE_appdir_folder_home) doing the same thing.