MantisBT - Doomseeker |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0003907 | Doomseeker | [All Projects] Bug | public | 2021-09-24 16:15 | 2021-12-28 12:32 |
|
Reporter | WubTheCaptain | |
Assigned To | Zalewa | |
Priority | normal | Severity | minor | Reproducibility | have not tried |
Status | closed | Resolution | no change required | |
Platform | | OS | GNU/Linux | OS Version | |
Product Version | 1.3.2 | |
Target Version | | Fixed in Version | | |
|
Summary | 0003907: Doomseeker can't download the Zandronum 3.1 (210919-1948) testing binary on GNU/Linux (non-Windows non-Darwin) operating systems |
Description | 0003904:0021760:
Quote from WubTheCaptain Apparently Zandronum 3.1 (210919-1948) also started using the linux-x64.tgz filename for releases, instead of the former linux-x86_64.tar.bz2. Doomseeker's code currently only supports the latter. Kind of a nightmare to have these inconsistencies. |
Steps To Reproduce | $ curl -I'https://zandronum.com/downloads/testing/3.1/ZandroDev3.1-210919-1948linux-x64.tgz [^]'
HTTP/1.1 200 OK
Date: Fri, 24 Sep 2021 16:10:20 GMT
Server: Apache
Last-Modified: Mon, 20 Sep 2021 09:27:56 GMT
ETag: "3bf3711-5cc69e575d358"
Accept-Ranges: bytes
Content-Length: 62863121
Content-Type: application/x-gzip
$ curl -I'https://zandronum.com/downloads/testing/3.1/ZandroDev3.1-210919-1948linux-x86_64.tar.bz [^]'
HTTP/1.1 404 Not Found
Date: Fri, 24 Sep 2021 16:10:30 GMT
Server: Apache
Content-Type: text/html; charset=iso-8859-1
Quote from src/plugins/zandronum/zandronumbinaries.cpp
#ifdef Q_OS_WIN32
// ...
#else
#ifndef __x86_64__
#define TESTING_BINARY_URL TESTING_BINARY_URL_BASE "linux-x86.tar.bz2"
#else
#define TESTING_BINARY_URL TESTING_BINARY_URL_BASE "linux-x86_64.tar.bz2"
#endif
// ...
#endif |
Additional Information | |
Tags | No tags attached. |
Relationships | |
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2021-09-24 16:15 | WubTheCaptain | New Issue | |
2021-09-24 16:21 | WubTheCaptain | Note Added: 0021764 | |
2021-09-24 16:21 | WubTheCaptain | Description Updated | bug_revision_view_page.php?rev_id=13358#r13358 |
2021-09-24 16:21 | WubTheCaptain | Additional Information Updated | bug_revision_view_page.php?rev_id=13360#r13360 |
2021-09-25 05:59 | doomjoshuaboy | Note Added: 0021773 | |
2021-09-27 11:32 | Zalewa | Note Added: 0021774 | |
2021-09-27 11:32 | Zalewa | Note Edited: 0021774 | bug_revision_view_page.php?bugnote_id=21774#r13374 |
2021-09-27 11:32 | Zalewa | Status | new => feedback |
2021-09-27 11:54 | doomjoshuaboy | Note Added: 0021777 | |
2021-09-27 11:57 | Zalewa | Status | feedback => resolved |
2021-09-27 11:57 | Zalewa | Resolution | open => no change required |
2021-09-27 11:57 | Zalewa | Assigned To | => Zalewa |
2021-12-28 12:32 | WubTheCaptain | Status | resolved => closed |
Notes |
|
|
Should Doomseeker support the new filenames or should we expect Zandronum to release the older format .tar.bz2 distributions in the future too? |
|
|
|
If not I can change it over to use the older format. |
|
|
(0021774)
|
Zalewa
|
2021-09-27 11:32
|
|
Please don't change the naming scheme for the archives. The previous name was technically correct, and as you can see, changing the scheme breaks compatibility with the tooling.
|
|
|
|
Managed to fix it by renaming the files. Thanks for reporting it. |
|