Revert "Add Ghostscript 10.07.1 configuration and update bundle release"#22
Conversation
PR Summary by QodoRevert Ghostscript 10.07.1 bundle configuration
AI Description
Diagram
High-Level Assessment
Files changed (1)
|
Code Review by Qodo
1. Release metadata mismatch
|
| @@ -1,5 +1,5 @@ | |||
| bundle.name = ghostscript | |||
| bundle.release = 2026.5.31 | |||
| bundle.release = 2026.4.12 | |||
There was a problem hiding this comment.
1. Release metadata mismatch 🐞 Bug ≡ Correctness
build.properties now sets bundle.release to 2026.4.12, but releases.properties still maps Ghostscript 10.07.1 to a 2026.5.31-tagged artifact. Since build.gradle uses bundle.release (bundleRelease) in output archive naming while also using releases.properties as a download source, rebuilding 10.07.1 will produce an archive whose release tag/path doesn’t match the advertised mapping.
Agent Prompt
### Issue description
This revert changes the module release identifier (`bundle.release`) back to `2026.4.12`, but `releases.properties` still includes a `10.07.1` entry pointing to a `2026.5.31` GitHub release asset. The build uses `bundle.release` to name/output archives, so the repo’s advertised download mapping can diverge from what this branch would build/publish.
### Issue Context
- `build.gradle` reads `bundle.release` from `build.properties` and uses it in the output path/filename.
- `build.gradle` also uses `releases.properties` as a download source when a version is not present locally.
### Fix Focus Areas
- build.properties[1-4]
- releases.properties[1-2]
- build.gradle[26-45]
- build.gradle[248-272]
- build.gradle[720-729]
### What to change
Choose one consistent state:
1) If reverting 10.07.1 support: remove the `10.07.1` (and any `2026.5.31`) entry from `releases.properties`.
2) If keeping 10.07.1 available via `releases.properties`: revert `bundle.release` back to `2026.5.31` (and restore any other reverted release metadata as needed) so produced artifacts match the mapping.
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
Reverts #21