Install a previous version of an App #16679
-
|
Hi! Had this problem right now and trying to get some insights. I had jellyfin installed in v10.11.0 (https://github.com/ScoopInstaller/Extras/blob/master/bucket/jellyfin.json) Which seems to be obvious because (https://github.com/ScoopInstaller/Extras/blob/master/bucket/jellyfin.json) only contains the URL path to the latest version. I think at this path the previous version would be: https://repo.jellyfin.org/files/server/windows/stable/v10.11.2/amd64/jellyfin_10.11.2-amd64.zip So here some questions: Installing a previous version only works, when the previous target version is still at the expected previous URL location. Wouldn't it be even better when the jellyfin.json manifest would properly contain previous versions so that scoop would not have to guess where the previous version could be? In this scenario how could I install a previous version of jellyfin via scoop? I might have been lucky in this case because jelly v10.11.0 was still installed on my machine so I was able to rollback via But on a new machine I would not be able to install any previous version via scoop (without hacking anything?) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Exactly. This is an oversight in the manifest. Resolved in 1d867fa.
Currently, we can only guarantee that the manifest works for the latest version. For previous versions, if the URL in autoupdate field is not version-specific, or in cases like the one you mentioned where the URL cannot apply to older versions, Scoop cannot handle them correctly. In this case, you can submit a PR to fix the issue and use it once it's merged. |
Beta Was this translation helpful? Give feedback.
Exactly. This is an oversight in the manifest. Resolved in 1d867fa.
Currently, we can only guarantee that the manifest works for the latest version. For previous versions, if the URL in autoupdate field is not version-specific, or in cases like the one you mentioned where the URL cannot apply to older versions, Scoop cannot handle them correctly.
I…