rtss@7.3.7: Fix url & checkver#16262
Conversation
WalkthroughUpdated the Scoop manifest Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor User
participant Scoop as rtss.json (checkver/autoupdate)
participant Server as Download Server
rect rgba(220,240,255,0.35)
Note over Scoop,Server: checkver (redirect-parsing)
User->>Scoop: trigger checkver
Scoop->>Server: request version URL
Server-->>Scoop: 302 Redirect (Location: .../<file_path>/<file_name>.exe)
Scoop->>Scoop: parse Location → file_path, file_name
Scoop->>Scoop: percent-encode brackets in file_name
Scoop-->>User: computed version + file_path + "/" + file_name
end
rect rgba(240,255,220,0.35)
Note over Scoop,Server: autoupdate (generic path capture)
User->>Scoop: trigger autoupdate
Scoop->>Server: fetch latest redirect
Server-->>Scoop: 302 Redirect with path
Scoop->>Scoop: apply generic regex to captured path, rebuild URL
Scoop-->>User: updated download URL / hashes
end
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Poem
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Your changes did not pass all checks. Please address the issues in the manifest and comment starting with rtss
|
|
/verify |
|
Your changes did not pass all checks. Please address the issues in the manifest and comment starting with rtss
|
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
bucket/rtss.json(2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: WindowsPowerShell
|
/verify |
|
Your changes did not pass all checks. Please address the issues in the manifest and comment starting with rtss
|
|
/verify |
|
All changes look good. Wait for review from human collaborators. rtss
|
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
bucket/rtss.json(2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: WindowsPowerShell
|
/verify |
|
All changes look good. Wait for review from human collaborators. rtss
|
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
bucket/rtss.json(2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
- GitHub Check: WindowsPowerShell
- GitHub Check: PowerShell
Changes
This PR makes the following changes:
rtss@7.3.7: Fix url & checkver. Encode filename to pass CI and fix installation.Related Issues/PRs/Commits
<manifest-name[@version]|chore>: <general summary of the pull request>Summary by CodeRabbit
Bug Fixes
Refactor