Skip to content

Commit

Permalink
Added deprecation notice to edrget + changelog (#4641)
Browse files Browse the repository at this point in the history
* Updated changelog with edrget deprecation

* Added deprecation notice

Co-authored-by: Austin Sanders <[email protected]>
  • Loading branch information
AustinSanders and Austin Sanders authored Sep 23, 2021
1 parent eb482aa commit f4129b0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ release.
### Added
- Added the ability to search filenames in measure's drop down boxes in Qnet Point Editor. [#4581](https://github.com/USGS-Astrogeology/ISIS3/issues/4581)
- Added slope, local normal, and ellipsoid normal calculations to phocube. [#3635](https://github.com/USGS-Astrogeology/ISIS3/issues/3645)
- Added additional translation files for TGO CaSSiS in order to support PSA compliant labels. [#4567](https://github.com/USGS-Astrogeology/ISIS3/issues/4567)

### Deprecated
- Deprecated edrget as discussed in [#3313](https://github.com/USGS-Astrogeology/ISIS3/issues/3313).

## [6.0.0] - 2021-08-27

Expand Down
8 changes: 7 additions & 1 deletion isis/src/base/apps/edrget/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ using namespace Isis;
using namespace std;

void IsisMain() {
std::cout << "\n*********************************** WARNING ***********************************\n"
" This program is deprecated and will be made unavailable in a future release of\n"
" ISIS. A brief discussion that lead to this decision can be found at \n"
" https://github.com/USGS-Astrogeology/ISIS3/issues/3313. Users who require \n"
" similar functionality are encouraged to explore wget as a replacement. \n"
"*******************************************************************************\n" << '\n';

// Get the file name from the GUI
int timeOut = 60000;
Expand All @@ -33,7 +39,7 @@ void IsisMain() {
QUrl qurl(guiURL);

//test if scheme is ftp or http
if (qurl.scheme().toLower() == "ftp" || qurl.scheme().toLower() == "http" ||
if (qurl.scheme().toLower() == "ftp" || qurl.scheme().toLower() == "http" ||
qurl.scheme().toLower() == "https") {

if (ui.IsInteractive()) {
Expand Down

0 comments on commit f4129b0

Please sign in to comment.