docs(templates): match app-data dir name to productName "meetily" (#458)#464
Open
satyakwok wants to merge 1 commit into
Open
docs(templates): match app-data dir name to productName "meetily" (#458)#464satyakwok wants to merge 1 commit into
satyakwok wants to merge 1 commit into
Conversation
…ckriya-Solutions#458) The custom-templates README listed `Meetily` (capital M) for the app data directory on all three platforms. The actual directory name is `meetily` (lowercase), derived from `tauri.conf.json` `productName: "meetily"` via Tauri's `app_data_dir()`. The mismatch sent users to a non-existent path on all three OSes. The reporter (Zackriya-Solutions#458) flagged the macOS line; Windows and Linux have the same case bug for the same reason, so all three are corrected together.
14 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #458.
Summary
The custom-templates README at `frontend/src-tauri/templates/README.md` listed `Meetily` (capital M) for the application data directory on all three platforms. The actual directory name is `meetily` (lowercase), derived from `tauri.conf.json` `productName: "meetily"` via Tauri's `app_data_dir()`. Following the README sent users to a non-existent path on all three OSes.
```diff
-- macOS: `
/Library/Application Support/Meetily/templates/`/.config/Meetily/templates/`-- Windows: `%APPDATA%\Meetily\templates\`
-- Linux: `
+- macOS: `
/Library/Application Support/meetily/templates/`/.config/meetily/templates/`+- Windows: `%APPDATA%\meetily\templates\`
+- Linux: `
```
The reporter flagged the macOS line specifically; Windows and Linux have the same case bug for the same reason (Tauri derives the directory from `productName` on every platform), so all three are corrected together. If you'd prefer to keep the PR strictly to the macOS line per the issue scope, happy to drop the other two — just let me know.