Skip to content
This repository was archived by the owner on Jan 7, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions demo_app/CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# MaidSafe Demo App Change Log

##[0.5.1]
- Close application on authorisation failure

##[0.5.0]
- New UI workflow integration
- Separation of website and network data management
- Ability to cancel uploads
- Show file count status while uploading folders
- Open the download folder instead of opening the downloaded file
- Initial root folder creation failure recovery
- Show initial authorisation stages on loading
- Ability to remap service home directory
- Option to delete a service
- various bug fixes and UX updates

##[0.4.0]
- File size limit increased to 50 MB
- Compatibility with safe launcher v0.6.0
Expand Down
24 changes: 15 additions & 9 deletions demo_app/app/images/add.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions demo_app/app/images/copy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions demo_app/app/images/cut.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 16 additions & 15 deletions demo_app/app/images/delete.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions demo_app/app/images/paste.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 15 additions & 15 deletions demo_app/app/images/rename.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions demo_app/app/images/tick_white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions demo_app/app/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "maidsafe-demo-app",
"productName": "MaidSafe Demo App",
"productName": "Launcher Demo App",
"identifier": "com.maidsafe.demo_app",
"description": "MaidSafe Demo Application",
"version": "0.4.0",
"version": "0.5.1",
"author": "MaidSafe",
"copyright": "",
"main": "background.js",
Expand Down
7 changes: 7 additions & 0 deletions demo_app/app/scripts/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,10 @@ window.maidsafeDemo.constant('MESSAGES', {
'CREATE_PUBLIC_ID': 'Creating Public ID',
'PREPARING_TEMPLATE': 'Preparing Template'
});

window.maidsafeDemo.constant('CONSTANT', {
ROOT_PATH: {
APP: 'app',
DRIVE: 'drive'
}
});
4 changes: 4 additions & 0 deletions demo_app/app/scripts/controllers/authorise_controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ window.maidsafeDemo.controller('AuthoriseCtrl', [ '$scope', '$rootScope', '$stat
var authoriseCb = function(err, res) {
if (err) {
console.error(err);
$rootScope.$loader.hide();
$rootScope.prompt.show('Authorisation failed', 'Failed to authorise with launcher.', function() {
window.uiUtils.closeApp();
});
return;
}
$scope.authorisationTasks.currentState = $scope.authorisationTasks.state.INITIALISING;
Expand Down
Loading