Skip to content

Commit

Permalink
Remove remaining Choreo references
Browse files Browse the repository at this point in the history
  • Loading branch information
calcmogul committed Dec 14, 2024
1 parent a62c1f1 commit 5b70690
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
2 changes: 0 additions & 2 deletions WPILibInstaller-Avalonia/ViewModels/InstallPageViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,6 @@ private async Task RunShortcutCreator(CancellationToken token)
shortcutData.DesktopShortcuts.Add(new ShortcutInfo(Path.Join(frcHomePath, "tools", "roboRIOTeamNumberSetter.exe"), $"{frcYear} WPILib Tools/roboRIO Team Number Setter {frcYear}", $"roboRIO Team Number Setter {frcYear}", ""));
shortcutData.DesktopShortcuts.Add(new ShortcutInfo(Path.Join(frcHomePath, "tools", "DataLogTool.exe"), $"{frcYear} WPILib Tools/Data Log Tool {frcYear}", $"Data Log Tool {frcYear}", ""));
shortcutData.DesktopShortcuts.Add(new ShortcutInfo(Path.Join(frcHomePath, "advantagescope", "AdvantageScope (WPILib).exe"), $"{frcYear} WPILib Tools/AdvantageScope (WPILib) {frcYear}", $"AdvantageScope (WPILib) {frcYear}", ""));
shortcutData.DesktopShortcuts.Add(new ShortcutInfo(Path.Join(frcHomePath, "choreo", "choreo.exe"), $"{frcYear} WPILib Tools/Choreo (WPILib) {frcYear}", $"Choreo (WPILib) {frcYear}", ""));
shortcutData.DesktopShortcuts.Add(new ShortcutInfo(Path.Join(frcHomePath, "elastic", "elastic_dashboard.exe"), $"{frcYear} WPILib Tools/Elastic (WPILib) {frcYear}", $"Elastic (WPILib) {frcYear}", ""));

shortcutData.StartMenuShortcuts.Add(new ShortcutInfo(Path.Join(frcHomePath, "tools", "Glass.exe"), $"Programs/{frcYear} WPILib Tools/Glass {frcYear}", $"Glass {frcYear}", ""));
Expand All @@ -859,7 +858,6 @@ private async Task RunShortcutCreator(CancellationToken token)
shortcutData.StartMenuShortcuts.Add(new ShortcutInfo(Path.Join(frcHomePath, "tools", "roboRIOTeamNumberSetter.exe"), $"Programs/{frcYear} WPILib Tools/roboRIO Team Number Setter {frcYear}", $"roboRIO Team Number Setter {frcYear}", ""));
shortcutData.StartMenuShortcuts.Add(new ShortcutInfo(Path.Join(frcHomePath, "tools", "DataLogTool.exe"), $"Programs/{frcYear} WPILib Tools/Data Log Tool {frcYear}", $"Data Log Tool {frcYear}", ""));
shortcutData.StartMenuShortcuts.Add(new ShortcutInfo(Path.Join(frcHomePath, "advantagescope", "AdvantageScope (WPILib).exe"), $"Programs/{frcYear} WPILib Tools/AdvantageScope (WPILib) {frcYear}", $"AdvantageScope (WPILib) {frcYear}", ""));
shortcutData.StartMenuShortcuts.Add(new ShortcutInfo(Path.Join(frcHomePath, "choreo", "choreo.exe"), $"Programs/{frcYear} WPILib Tools/Choreo (WPILib) {frcYear}", $"Choreo (WPILib) {frcYear}", ""));
shortcutData.StartMenuShortcuts.Add(new ShortcutInfo(Path.Join(frcHomePath, "elastic", "elastic_dashboard.exe"), $"Programs/{frcYear} WPILib Tools/Elastic (WPILib) {frcYear}", $"Elastic (WPILib) {frcYear}", ""));

if (toInstallProvider.Model.InstallEverything)
Expand Down
12 changes: 0 additions & 12 deletions scripts/tools.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ def scriptBaseCppUnixFile = file("files/ScriptBaseCpp.sh")
def advantageScopeScriptFile = file("files/AdvantageScope.vbs")
def advantageScopeScriptUnixFile = file("files/AdvantageScope.sh")

def choreoScriptFile = file("files/Choreo.vbs")
def choreoScriptUnixFile = file("files/Choreo.sh")

def elasticScriptFile = file("files/Elastic.vbs")
def elasticScriptUnixFile = file("files/Elastic.sh")

Expand Down Expand Up @@ -113,10 +110,6 @@ ext.toolsSetup = { AbstractArchiveTask zip->
into '/tools'
}

zip.from (choreoScriptFile) {
into '/tools'
}

zip.from (elasticScriptFile) {
into '/tools'
}
Expand All @@ -136,11 +129,6 @@ ext.toolsSetup = { AbstractArchiveTask zip->
fileMode 0755
}

zip.from (choreoScriptUnixFile) {
into '/tools'
fileMode 0755
}

zip.from (elasticScriptUnixFile) {
into '/tools'
fileMode 0755
Expand Down

0 comments on commit 5b70690

Please sign in to comment.