diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c0c774..82b858a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ # Atlassian Downloader - Changelog -* `1.0.0.5` - added support of cli arguments. +* `1.0.0.5` - added support for EAP releases. * `1.0.0.4` - bump version. rewrited build scripts. added support of `arm` and `arm64`. * `1.0.0.3` - some cosmetics improvements. * `1.0.0.2` - some cosmetics improvements. diff --git a/src/atlassian-downloader/Program.cs b/src/atlassian-downloader/Program.cs index 84d36f4..b4829d1 100644 --- a/src/atlassian-downloader/Program.cs +++ b/src/atlassian-downloader/Program.cs @@ -34,7 +34,12 @@ var feedUrls = "https://my.atlassian.com/download/feeds/current/jira-core.json", "https://my.atlassian.com/download/feeds/current/jira-servicedesk.json", "https://my.atlassian.com/download/feeds/current/jira-software.json", - "https://my.atlassian.com/download/feeds/current/stash.json" + "https://my.atlassian.com/download/feeds/current/stash.json", + + "https://my.atlassian.com/download/feeds/eap/bamboo.json", + "https://my.atlassian.com/download/feeds/eap/confluence.json", + "https://my.atlassian.com/download/feeds/eap/jira.json", + "https://my.atlassian.com/download/feeds/eap/jira-servicedesk.json" }; Console.Title = $"{appTitle} {appVersion} {appBuildType}"; diff --git a/src/json-backups/update.sh b/src/json-backups/update.sh index a4e23e0..fa98d1c 100755 --- a/src/json-backups/update.sh +++ b/src/json-backups/update.sh @@ -1,6 +1,6 @@ #!/bin/bash -rm -rfv $PWD/current $PWD/archived -mkdir -p $PWD/current $PWD/archived +rm -rfv $PWD/current $PWD/archived $PWD/eap +mkdir -p $PWD/current $PWD/archived $PWD/eap ################################################################################################### # Current links @@ -59,3 +59,11 @@ wget -c --random-wait -P $PWD/archived/ https://my.atlassian.com/download/feeds/ wget -c --random-wait -P $PWD/archived/ https://my.atlassian.com/download/feeds/archived/jira-software.json wget -c --random-wait -P $PWD/archived/ https://my.atlassian.com/download/feeds/archived/jira-servicedesk.json + +################################################################################################### +# EAP links +################################################################################################### +wget -c --random-wait -P $PWD/eap/ https://my.atlassian.com/download/feeds/eap/bamboo.json +wget -c --random-wait -P $PWD/eap/ https://my.atlassian.com/download/feeds/eap/confluence.json +wget -c --random-wait -P $PWD/eap/ https://my.atlassian.com/download/feeds/eap/jira.json +wget -c --random-wait -P $PWD/eap/ https://my.atlassian.com/download/feeds/eap/jira-servicedesk.json