mirror of
https://github.com/EpicMorg/atlassian-downloader.git
synced 2025-01-14 12:47:55 +03:00
v1.0.0.5 eap support
This commit is contained in:
parent
157aba2ace
commit
e5f9b1f1de
@ -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.
|
||||
|
@ -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}";
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user