Downloads:
1,015
Downloads of v 2024.2:
27
Last Update:
07 Nov 2024
Published Date:
07 Nov 2024
Package Maintainer(s):
Software Author(s):
- JetBrains s.r.o.
Tags:
rust ide jetbrains admin- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
RustRover
(Waiting for Maintainer to take corrective action)
- 1
- 2
- 3
2024.2 | Updated: 07 Nov 2024
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,015
Downloads of v 2024.2:
27
Published:
07 Nov 2024
Maintainer(s):
Software Author(s):
- JetBrains s.r.o.
RustRover 2024.2
(Waiting for Maintainer to take corrective action)
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by JetBrains s.r.o. The inclusion of JetBrains s.r.o. trademark(s), if any, upon this webpage is solely to identify JetBrains s.r.o. goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
This version is in moderation and has not yet been approved. This means it doesn't show up under normal search.
- Until approved, you should consider this package version unsafe - it could do very bad things to your system (it probably doesn't but you have been warned, that's why we have moderation).
- This package version can change wildly over the course of moderation until it is approved. If you install it and it later has changes to this version, you will be out of sync with any changes that have been made to the package. Until approved, you should consider that this package version doesn't even exist.
- You cannot install this package under normal scenarios. See How to install package version under moderation for more information.
- There are also no guarantees that it will be approved.
There are versions of this package awaiting moderation (possibly just this one). See the Version History section below.
Jetbrains IDE for Rust.
See https://www.jetbrains.com/rust/ for more information.
Installation Parameters
/AddBinToPath
- whether to add "bin" folder to PATH- Not used by default
/AddToContextMenu
- whether to add "Open Folder as Project" into the context menu- Not used by default
/CreateFileAssoc
- whether to associate with .rs files- Not used by default
/DesktopIcon
- whether to create desktop shortcut- Not used by default
/InstallDir
- where to install binaries- Default value:
"$env:ProgramFiles\JetBrains\RustRover [VERSION]"
- Default value:
Examples
Install into
D:\Rust-IDE
directorychoco install rustrover --params "/InstallDir:D:\Rust-IDE"
Install and use
/AddBinToPath
,/AddToContextMenu
and/InstallDir
choco install rustrover --params "'/AddBinToPath /AddToContextMenu /InstallDir:D:\Rust-IDE'"
Uninstallation Parameters
/DeleteCache
- whether to delete cache and local history- Not used by default
/DeleteSettings
- whether to delete settings and installed plugins- Not used by default
Examples
- Uninstall and delete both cache and settings
choco uninstall rustrover --params "'/DeleteCache /DeleteSettings'"
$ErrorActionPreference = 'Stop'
$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition
$ahkFile = "$toolsDir\uninstall.ahk"
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'RustRover*'
fileType = 'EXE'
validExitCodes= @(0)
}
$additionalArgs = Get-PackageParameters
if($additionalArgs['DeleteCache']) {
(Get-Content $ahkFile | % { $_ -replace "deleteCache :=.*", "deleteCache := true" }) | Set-Content $ahkFile
}
if($additionalArgs['DeleteSettings']) {
(Get-Content $ahkFile | % { $_ -replace "deleteSettings :=.*", "deleteSettings := true" }) | Set-Content $ahkFile
}
[array]$keys = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($keys.Count -eq 1) {
$packageArgs['file'] = $keys[0].UninstallString
$ahkProcess = Start-Process `
-FilePath 'AutoHotKey' `
-ArgumentList "`"$ahkFile`"" `
-PassThru
Uninstall-ChocolateyPackage @packageArgs
Stop-Process $ahkProcess -Force
} elseif ($keys.Count -eq 0) {
Write-Warning "$($packageArgs['packageName']) has already been uninstalled by other means."
} elseif ($keys.Count -gt 1) {
Write-Warning "$($keys.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$keys | % { Write-Warning "- $($_.DisplayName)" }
}
; Installation mode. It can be user or admin.
; NOTE: for admin mode please use "Run as Administrator" for command prompt to avoid UAC dialog.
mode=admin
; Desktop shortcut for launchers
launcher64=0
; Add launchers path to PATH env variable
updatePath=0
; Add "Open Folder as Project" to context menu
updateContextMenu=0
; List of associations. To create an association change value to 1.
.rs=0
#NoTrayIcon
SetTitleMatchMode(1)
SetControlDelay(-1)
deleteCache := false
deleteSettings := false
winTitle := "RustRover Uninstall"
WinWait(winTitle)
if WinExist(winTitle)
{
WinActivate(winTitle)
if (deleteCache) {
ControlClick("Button5", winTitle,,,, "NA") ; Check cache
}
if (deleteSettings) {
ControlClick("Button6", winTitle,,,, "NA") ; Check settings
}
Sleep(50)
ControlClick("Button2", winTitle,,,, "NA") ; Uninstall
Sleep(100)
while ControlGetEnabled("Button2", winTitle) = 0
{
Sleep(100)
}
Sleep(50)
ControlClick("Button2", winTitle,,,, "NA") ; Close
}
No results available for this package. We are building up results for older packages over time so expect to see results. If this is a new package, it should have results within a day or two.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
RustRover 2024.2.5 | 91 | Thursday, November 7, 2024 | Approved | |
RustRover 2024.2.4 | 68 | Thursday, October 24, 2024 | Approved | |
RustRover 2024.2.3 | 79 | Tuesday, October 1, 2024 | Approved | |
RustRover 2024.2.2 | 45 | Wednesday, September 25, 2024 | Approved | |
RustRover 2024.2.1 | 58 | Tuesday, September 17, 2024 | Approved | |
RustRover 2024.2 | 27 | Thursday, November 7, 2024 |
Waiting for Maintainer
|
|
RustRover 2024.1.8 | 81 | Tuesday, August 20, 2024 | Approved | |
RustRover 2024.1.7 | 53 | Wednesday, August 7, 2024 | Approved | |
RustRover 2024.1.6 | 94 | Wednesday, July 24, 2024 | Approved | |
RustRover 2024.1.5 | 66 | Monday, July 15, 2024 | Approved | |
RustRover 2024.1.4 | 38 | Saturday, July 13, 2024 | Exempted | |
RustRover 2024.1.2 | 32 | Saturday, June 15, 2024 | Approved | |
RustRover 2024.1.0 | 106 | Monday, May 27, 2024 | Approved | |
RustRover 241.15989.180 | 108 | Saturday, May 11, 2024 | Approved | |
RustRover 241.15989.101 | 37 | Sunday, April 28, 2024 | Approved | |
RustRover 233.15026.24 | 32 | Friday, April 5, 2024 | Exempted |
JetBrains s.r.o.
-
- autohotkey.portable (≥ 2.0.0)
Ground Rules:
- This discussion is only about RustRover and the RustRover package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or RustRover, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
Kubikola (maintainer) on 05 Sep 2024 14:06:12 +00:00:
User 'Kubikola' (maintainer) submitted package.
chocolatey-ops (reviewer) on 05 Sep 2024 14:38:16 +00:00:
rustrover has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
chocolatey-ops (reviewer) on 07 Sep 2024 20:51:36 +00:00:
rustrover has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/21a68d67ce05b32cf15367fb2f39e2ff for details.
The package status will be changed and will be waiting on your next actions.
Kubikola (maintainer) on 16 Sep 2024 09:50:30 +00:00:
try again
Verification Status Change - Verification tests have been set to rerun.
chocolatey-ops (reviewer) on 16 Sep 2024 11:30:56 +00:00:
rustrover has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/d356a239e915e8e83d5240704117ff74 for details.
The package status will be changed and will be waiting on your next actions.
Kubikola (maintainer) on 17 Sep 2024 22:06:36 +00:00:
User 'Kubikola' (maintainer) submitted package.
chocolatey-ops (reviewer) on 17 Sep 2024 22:38:42 +00:00:
rustrover has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
chocolatey-ops (reviewer) on 17 Sep 2024 23:04:34 +00:00:
rustrover has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/182803613853f1098f21dfe84b270cf9 for details.
The package status will be changed and will be waiting on your next actions.
Kubikola (maintainer) on 25 Sep 2024 14:06:47 +00:00:
User 'Kubikola' (maintainer) submitted package.
chocolatey-ops (reviewer) on 25 Sep 2024 14:39:59 +00:00:
rustrover has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
chocolatey-ops (reviewer) on 25 Sep 2024 16:48:55 +00:00:
rustrover has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/8f851f7f1be56f7fe9714a32ebdb3efd for details.
The package status will be changed and will be waiting on your next actions.
Kubikola (maintainer) on 01 Oct 2024 14:07:08 +00:00:
User 'Kubikola' (maintainer) submitted package.
chocolatey-ops (reviewer) on 01 Oct 2024 14:38:26 +00:00:
rustrover has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
chocolatey-ops (reviewer) on 01 Oct 2024 15:04:15 +00:00:
rustrover has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/58044bf45996a65c9af0b50f0b059ed8 for details.
The package status will be changed and will be waiting on your next actions.
Kubikola (maintainer) on 16 Oct 2024 06:30:47 +00:00:
try again
Verification Status Change - Verification tests have been set to rerun.
chocolatey-ops (reviewer) on 16 Oct 2024 09:53:50 +00:00:
rustrover has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/91baaaa693168725bcd61604f1465eb7 for details.
The package status will be changed and will be waiting on your next actions.
Kubikola (maintainer) on 18 Oct 2024 21:31:55 +00:00:
try again
Verification Status Change - Verification tests have been set to rerun.
chocolatey-ops (reviewer) on 18 Oct 2024 22:28:34 +00:00:
rustrover has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/c95822d0a17abb09ea9c5529f3b53422 for details.
The package status will be changed and will be waiting on your next actions.
chocolatey-ops (reviewer) on 21 Oct 2024 14:43:19 +00:00:
We've found rustrover v2024.2 in a submitted status and waiting for your next actions. It has had no updates for 20 or more days since a reviewer has asked for corrections. Please note that if there is no response or fix of the package within 15 days of this message, this package version will automatically be closed (rejected) due to being stale.
Take action:
If your package is failing automated testing, you can use the chocolatey test environment to manually run the verification and determine what may need to be fixed.
Note: We don't like to see packages automatically rejected. It doesn't mean that we don't value your contributions, just that we can not continue to hold packages versions in a waiting status that have possibly been abandoned. If you don't believe you will be able to fix up this version of the package within 15 days, we strongly urge you to log in to the site and respond to the review comments until you are able to.
Kubikola (maintainer) on 24 Oct 2024 14:06:06 +00:00:
User 'Kubikola' (maintainer) submitted package.
chocolatey-ops (reviewer) on 24 Oct 2024 14:41:35 +00:00:
rustrover has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
chocolatey-ops (reviewer) on 24 Oct 2024 15:48:36 +00:00:
rustrover has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/c9c946818a2c31aef177c189bf04cd54 for details.
The package status will be changed and will be waiting on your next actions.
Kubikola (maintainer) on 07 Nov 2024 15:06:22 +00:00:
User 'Kubikola' (maintainer) submitted package.
chocolatey-ops (reviewer) on 07 Nov 2024 15:37:49 +00:00:
rustrover has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
chocolatey-ops (reviewer) on 07 Nov 2024 16:07:43 +00:00:
rustrover has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/7b35ef3897810bbad7d6bb85deada4e9 for details.
The package status will be changed and will be waiting on your next actions.