Skip to content

Commit

Permalink
Removing test code for releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
lexandro committed Jul 15, 2015
1 parent 1f4cae7 commit 26c6cc9
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 27 deletions.
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,12 @@ Here's the list of active, scheduled, planned and finished development goals

## Under development
0.2.9
+ Add: link containers in Create
+ Add: show links in container details
- Add: download logs as file.
- Add: back button/listener to screens in chrome mode
+ Add: release notes to about/first run of new version
+ Fix: Create container on/off switch changed from radio to checkbox
+ Fix: CSS/colspan on Repository view
+ Fix: Xterm.js css wasn't imported
- Add: link containers in Create
- Add: show links in container details
- Add: release notes to about/first run of new version
- Fix: Create container on/off switch changed from radio to checkbox
- Fix: CSS/colspan on Repository view
- Fix: Xterm.js css wasn't imported

## Roadmap /by priority/
0.3.0
Expand Down Expand Up @@ -141,7 +139,10 @@ Here's the list of active, scheduled, planned and finished development goals
0.6.3
- Add: export/import hosts list


## Not scheduled
- Add: download logs as file.
- Add: back button/listener to screens in chrome mode
- Help
- docker image with version check in the webapp
- Fix: stopping multiple containers is not working properly on huge list with already stopped containers
Expand Down
4 changes: 0 additions & 4 deletions app/app.modules.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,6 @@ angular.module('dockery', [
$rootScope.appVersion = '0.2.9';
$rootScope.tasks = [];
$rootScope.taskInProgress = false;
$rootScope.goto = function (path) {
console.log('back')
window.history.back();
};
if (window.chrome && chrome.app && chrome.app.runtime) {
$rootScope.chrome = true;
chrome.app.window.current().maximize();
Expand Down
17 changes: 6 additions & 11 deletions app/containerDetails/containerDetails.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,9 @@
<h3 class="panel-title"><span class="fa fa-exclamation-triangle"></span>
This is a privileged container</h3>
</div>

<div class="row">
<div class="col-md-6">

<h3>
<button class="btn btn-success btn-sm" ng-click="$root.goBack()" ng-show="$root.chrome"><span
class="fa fa-arrow-left"></span><strong> Go back</strong></button>
</button>Container: <strong>{{containerDetails.Name.substring(1).toUpperCase()}}</strong>
<h3>Container: <strong>{{containerDetails.Name.substring(1).toUpperCase()}}</strong>
<span ng-show='containerDetails.State.Running==true && containerDetails.State.Paused==false'
class="label label-success">Running</span>
<span ng-show='containerDetails.State.Paused==true' class="label label-warning">Paused</span>
Expand Down Expand Up @@ -315,11 +310,11 @@ <h3 class="panel-title"><span class="glyphicon glyphicon-refresh spin"></span>
{{containerLogsLoadingMessage}}</h3>
</div>
<div class="col-md-12">
<button type="button" ng-click="downloadAllLogs()"
class='btn btn-success'>
<span class='fa fa-download'></span>
Download logs
</button>
<!--<button type="button" ng-click="downloadAllLogs()"-->
<!--class='btn btn-success'>-->
<!--<span class='fa fa-download'></span>-->
<!--Download logs-->
<!--</button>-->
<button type="button" ng-click="switchStdOutPanel()"
ng-class="{'btn btn-primary': logSettings['showStdOut'], 'btn btn-info': !logSettings['showStdOut']}">
<span ng-class="{'glyphicon glyphicon-check': logSettings['showStdOut'], 'glyphicon glyphicon-unchecked': !logSettings['showStdOut']}"></span>
Expand Down
3 changes: 1 addition & 2 deletions app/containers/containers.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<div class="col-md-12 pull-right">
<div class="row">
<div class="col-md-6">
<h3><button class="btn btn-success btn-sm" ng-click="$root.goBack()" ng-show="$root.chrome"><span
class="fa fa-arrow-left"></span><strong> Go back</strong></button> Containers on: <strong>{{$root.hostUrl}}</strong></h3>
<h3>Containers on: <strong>{{$root.hostUrl}}</strong></h3>

</div>
<div class="col-md-6">
Expand Down
3 changes: 1 addition & 2 deletions app/createContainer/createContainer.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<div class="col-md-12 ">
<h1><button class="btn btn-success btn-sm" ng-click="$root.goBack()" ng-show="$root.chrome"><span
class="fa fa-arrow-left"></span><strong> Go back</strong></button> <span class="fa fa-cube"></span> Create container
<h1>Create container
<button title="Create" type="submit" ng-click="createContainer(false)"
class="btn btn-success">
<span class="fa fa-plus"></span> Create
Expand Down

0 comments on commit 26c6cc9

Please sign in to comment.