Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Ketho committed Aug 8, 2024
1 parent 3d5d084 commit 82710b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Change Log

## [0.15.6] - 2024-08-08
## [0.15.7] - 2024-08-08
- 0.15.7 Forgot to actually use `$USERPROFILE`
- Changed `Lua.workspace.library` to use the `$USERPROFILE` env variable instead of an absolute path

## [0.15.5] - 2024-08-07
- ✨ Improved support for loading FrameXML mirrors by disabling most diagnostic warnings.
- Added an option to enable/disable the extension when loading a FrameXML mirror.
- ✨ Improved support for loading FrameXML mirrors by disabling most diagnostic warnings
- Added an option to enable/disable the extension when loading a FrameXML mirror

![](img/changelog/0_15_5_framexml.png)

Expand Down Expand Up @@ -103,6 +104,7 @@ To avoid loading for Lua projects not related to World of Warcraft, all settings
- PR [#123](https://github.com/Ketho/vscode-wow-api/pull/123) Make childGroups optional in AceConfig.OptionsTable
- PR [#120](https://github.com/Ketho/vscode-wow-api/pull/120) Add definition for tostringall()

[0.15.7]: https://github.com/Ketho/vscode-wow-api/releases/tag/0.15.7
[0.15.6]: https://github.com/Ketho/vscode-wow-api/releases/tag/0.15.6
[0.15.5]: https://github.com/Ketho/vscode-wow-api/releases/tag/0.15.5
[0.15.4]: https://github.com/Ketho/vscode-wow-api/releases/tag/0.15.4
Expand Down
2 changes: 1 addition & 1 deletion src/luals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function addWorkspaceLibrary(context: vscode.ExtensionContext): Thenable<
const extension = vscode.extensions.getExtension("ketho.wow-api")!;
let folderPath = "";
if (context.extensionMode === vscode.ExtensionMode.Production && process.platform === "win32") {
folderPath = `${process.env.USERPROFILE}\\.vscode\\extensions\\ketho.wow-api-${extension.packageJSON.version}\\Annotations`;
folderPath = `$USERPROFILE\\.vscode\\extensions\\ketho.wow-api-${extension.packageJSON.version}\\Annotations`;
}
else {
folderPath = path.join(extension.extensionPath, "Annotations");
Expand Down

0 comments on commit 82710b6

Please sign in to comment.