-
Notifications
You must be signed in to change notification settings - Fork 0
🌟 [Major]: ElvUI addon installation and update from PowerShell #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Marius Storhaug (MariusStorhaug)
merged 14 commits into
main
from
feature/3-add-elvui-addon-management
Apr 20, 2026
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
03d106e
Remove all template placeholder files
MariusStorhaug ae7943e
Add private Tukui helper functions
MariusStorhaug 260b21a
Add Install-ElvUI and Update-ElvUI public functions
MariusStorhaug c2311e4
Remove placeholder values from data files
MariusStorhaug b5f5f64
Update README with ElvUI module documentation
MariusStorhaug 858f7e2
Add Pester tests for Install-ElvUI and Update-ElvUI
MariusStorhaug df34f06
Add usage examples
MariusStorhaug eb3e3e5
Fix PSScriptAnalyzer linter errors: use named parameters, replace Wri…
MariusStorhaug e7d912a
Fix CI: replace Out-Null with $null assignment, add per-function test…
MariusStorhaug 8b3b15b
Address Copilot review: remove -UseBasicParsing, add GUID to temp dir…
MariusStorhaug 988d8d0
Fix version downgrade risk in Update-ElvUI; add path traversal guard …
MariusStorhaug 5057fe6
Address review: use -LiteralPath for path operations, require -Force …
MariusStorhaug 8338956
Use -LiteralPath consistently in Install-TukuiAddon; add PS 5.1 insta…
MariusStorhaug c5dd49a
Remove obsolete files and configurations from the repository
MariusStorhaug File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,19 @@ | ||
| <# | ||
| .SYNOPSIS | ||
| This is a general example of how to use the module. | ||
| .SYNOPSIS | ||
| Examples of how to use the ElvUI module. | ||
| #> | ||
|
|
||
| # Import the module | ||
| Import-Module -Name 'PSModule' | ||
| Import-Module -Name ElvUI | ||
|
|
||
| # Define the path to the font file | ||
| $FontFilePath = 'C:\Fonts\CodeNewRoman\CodeNewRomanNerdFontPropo-Regular.tff' | ||
| # Update ElvUI to the latest version | ||
| Update-ElvUI | ||
|
|
||
| # Install the font | ||
| Install-Font -Path $FontFilePath -Verbose | ||
| # Force reinstall even if already up to date | ||
| Update-ElvUI -Force | ||
|
|
||
| # List installed fonts | ||
| Get-Font -Name 'CodeNewRomanNerdFontPropo-Regular' | ||
| # Install ElvUI fresh | ||
| Install-ElvUI | ||
|
|
||
| # Uninstall the font | ||
| Get-Font -Name 'CodeNewRomanNerdFontPropo-Regular' | Uninstall-Font -Verbose | ||
| # Target a specific WoW installation and game flavor | ||
| Update-ElvUI -WoWPath 'D:\Games\World of Warcraft' -Flavor '_classic_' |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.