Skip to content

Commit

Permalink
Merge pull request #1311 from subutai-io/dev
Browse files Browse the repository at this point in the history
for release
  • Loading branch information
crioto authored Jul 4, 2018
2 parents c72833d + 35f71e4 commit 40d238d
Show file tree
Hide file tree
Showing 7 changed files with 1,694 additions and 1,626 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [7.1.3] 7/04/2018
# BUG FIXES:
* Critical bug fixed when CC does not record configuration file on Linux machines

## [7.1.2] 6/29/2018
# IMPROVEMENTS:
* Added validator for ssh key names
Expand Down
1,108 changes: 543 additions & 565 deletions SubutaiControlCenter_en_US.ts

Large diffs are not rendered by default.

1,090 changes: 580 additions & 510 deletions SubutaiControlCenter_pt_BR.ts

Large diffs are not rendered by default.

1,106 changes: 560 additions & 546 deletions SubutaiControlCenter_ru_RU.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ int main(int argc, char* argv[]) {

QCommandLineParser cmd_parser;
cmd_parser.setApplicationDescription(QObject::tr(
"This Control Center application should help users to work with hub"));
"This Control Center application should help users to work with bazaar"));

cmd_parser.addHelpOption();
// version
Expand Down
8 changes: 5 additions & 3 deletions upload.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
BRANCH=$1
VERSION=$(cat /home/travis/build/subutai-io/control-center/version)
OS=$(uname)
PKGNAME=""
BINNAME=""
Expand Down Expand Up @@ -26,10 +27,11 @@ upload_cdn (){

echo "Uploading file..."

ID=$(curl -sk -H "token: $TOKEN" -Ffile=@$1 -Ftoken=$TOKEN "$2/raw/upload")
ID=$(curl -sk -H "token: $TOKEN" -Ffile=@$1 -Fversion=$3 -Ftoken=$TOKEN "$2/raw/upload")

echo "File uploaded with ID $ID"
echo "URL: $2"
echo "VERSION: $3"
echo "Signing file..."

SIGN=$(echo $ID | gpg --clearsign --no-tty -u $EMAIL)
Expand Down Expand Up @@ -86,8 +88,8 @@ case $BRANCH in
if [ $OS = Linux ]
then
URL=https://cdn.subutai.io:8338/kurjun/rest
upload_cdn subutai_control_center_bin/$PKGNAME $URL
upload_cdn subutai_control_center_bin/$BINNAME $URL
upload_cdn subutai_control_center_bin/$PKGNAME $URL $VERSION
upload_cdn subutai_control_center_bin/$BINNAME $URL $VERSION
fi
;;
esac
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.1.2
7.1.3

0 comments on commit 40d238d

Please sign in to comment.