├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.MD ├── CONTRIBUTOR ├── COPYING ├── LICENSE ├── README.md ├── app ├── app.html ├── bridge.js ├── env.js ├── ffi │ ├── api │ │ ├── appendable_data.js │ │ ├── auth.js │ │ ├── cipher_opts.js │ │ ├── data_id.js │ │ ├── dns.js │ │ ├── immutable_data.js │ │ ├── misc.js │ │ ├── nfs.js │ │ └── structured_data.js │ ├── ffi_api.js │ ├── loader.js │ ├── model │ │ ├── app.js │ │ ├── enum.js │ │ └── permission.js │ └── util │ │ ├── app_manager.js │ │ ├── session_manager.js │ │ └── utils.js ├── images │ ├── account.svg │ ├── account_password.svg │ ├── account_secret.svg │ ├── account_white.svg │ ├── app_icon.png │ ├── back_arrow.svg │ ├── chevron_permissions.svg │ ├── close.svg │ ├── close_dark.svg │ ├── close_white.svg │ ├── connected.svg │ ├── cross.svg │ ├── dashboard.svg │ ├── dashboard_white.svg │ ├── down-chevron.svg │ ├── error-red.svg │ ├── error_alt.svg │ ├── error_login.svg │ ├── generic_spinner.svg │ ├── help.svg │ ├── help_white.svg │ ├── launcher_logo.svg │ ├── launcher_rocket.svg │ ├── link_chevron.svg │ ├── loading.svg │ ├── logs_icon.svg │ ├── logs_icon_white.svg │ ├── manage.svg │ ├── manage_blue.svg │ ├── maximize.svg │ ├── minimize.svg │ ├── not_connected.png │ ├── not_connected.svg │ ├── refresh_small.svg │ ├── safedrive_icon.svg │ ├── settings.svg │ ├── settings_white.svg │ ├── show_password.svg │ ├── show_password_active.svg │ ├── show_password_hover.svg │ ├── show_password_light.svg │ ├── show_password_light_active.svg │ ├── show_password_light_hover.svg │ ├── status.svg │ ├── tick.svg │ ├── tick_create_light.svg │ ├── tick_create_success.svg │ ├── tick_create_warn.svg │ └── trying.png ├── index.js ├── logger │ └── log.js ├── server │ ├── boot.js │ ├── controllers │ │ ├── appendable_data.js │ │ ├── auth.js │ │ ├── cipher_opts.js │ │ ├── data_id.js │ │ ├── dns.js │ │ ├── immutable_data.js │ │ ├── nfs.js │ │ └── structured_data.js │ ├── error_code_lookup.js │ ├── message_constants.js │ ├── model │ │ ├── activity.js │ │ └── session_info.js │ ├── routes │ │ └── version_0_6.js │ ├── session_manager.js │ ├── stream │ │ ├── dns_reader.js │ │ ├── immutable_data_reader.js │ │ ├── immutable_data_writer.js │ │ ├── nfs_reader.js │ │ └── nfs_writer.js │ └── utils.js ├── stylesheets │ ├── auth.less │ ├── base.less │ ├── buttons.less │ ├── colors.less │ ├── components.less │ ├── loader.less │ ├── main.less │ ├── mixins.less │ └── variables.less ├── ui │ ├── actions │ │ ├── action_types.js │ │ ├── app_action.js │ │ ├── auth_action.js │ │ ├── network_status_action.js │ │ └── toaster_action.js │ ├── components │ │ ├── account.js │ │ ├── account_app_list.js │ │ ├── account_storage_chart.js │ │ ├── app_auth_request.js │ │ ├── app_detail.js │ │ ├── app_list.js │ │ ├── app_logs.js │ │ ├── auth_bar_chart.js │ │ ├── auth_loader.js │ │ ├── auth_request_permissions.js │ │ ├── authorised_dashboard.js │ │ ├── dashboard.js │ │ ├── help.js │ │ ├── home.js │ │ ├── log.js │ │ ├── log_list.js │ │ ├── login.js │ │ ├── network_status.js │ │ ├── permission.js │ │ ├── register.js │ │ ├── register_acc_pass_form.js │ │ ├── register_acc_pass_info.js │ │ ├── register_acc_secret_form.js │ │ ├── register_acc_secret_info.js │ │ ├── register_invite_code_form.js │ │ ├── register_welcome.js │ │ ├── spinner.js │ │ ├── splash.js │ │ ├── toaster.js │ │ ├── unauth_bar_chart.js │ │ ├── unauthorised_dashboard.js │ │ └── upload_download_chart.js │ ├── constant.js │ ├── containers │ │ ├── account_app_list_container.js │ │ ├── account_container.js │ │ ├── app.js │ │ ├── app_logs_container.js │ │ ├── dashboard_container.js │ │ ├── help_container.js │ │ ├── home_container.js │ │ ├── login_container.js │ │ ├── network_status_container.js │ │ ├── register_container.js │ │ ├── splash_container.js │ │ └── toaster_container.js │ ├── event_registry.js │ ├── reducers │ │ ├── auth_reducer.js │ │ ├── index.js │ │ ├── network_status_reducer.js │ │ ├── toaster_reducer.js │ │ └── user_reducer.js │ ├── routes.js │ ├── store │ │ ├── configure_store.development.js │ │ ├── configure_store.js │ │ └── configure_store.production.js │ └── utils │ │ └── app_utils.js └── ui_utils.js ├── appveyor.yml ├── config ├── env_development.json ├── env_production.json └── env_test.json ├── main.development.js ├── package.js ├── package.json ├── rebuild_native.js ├── resources ├── icon.png ├── linux │ ├── DEBIAN │ │ └── control │ └── app.desktop ├── osx │ ├── Info.plist │ ├── appdmg.json │ ├── dmg-background.png │ ├── dmg-background@2x.png │ ├── dmg-icon.icns │ ├── helper_apps │ │ ├── Info EH.plist │ │ ├── Info NP.plist │ │ └── Info.plist │ └── icon.icns └── windows │ ├── icon.ico │ ├── installer.nsi │ ├── setup-banner.png │ └── setup-icon.ico ├── server.js ├── test ├── .eslintrc ├── api │ ├── app_authorisation.spec.js │ ├── appendable_data.spec.js │ ├── dns.spec.js │ ├── immutable_data.spec.js │ ├── nfs_directory.spec.js │ ├── nfs_file.spec.js │ ├── server.spec.js │ └── structured_data.spec.js ├── constants.js ├── e2e.js ├── mock_app.js ├── setup.js └── utils │ ├── appendable_data_utils.js │ ├── auth_utils.js │ ├── cipher_utils.js │ ├── data_id_utils.js │ ├── dns_utils.js │ ├── immutable_data_utils.js │ ├── nfs_utils.js │ ├── sign_key_utils.js │ ├── structured_data_utils.js │ └── utils.js ├── webpack.config.base.js ├── webpack.config.development.js ├── webpack.config.electron.js ├── webpack.config.eslint.js ├── webpack.config.node.js ├── webpack.config.production.js └── webpack.config.test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/CHANGELOG.MD -------------------------------------------------------------------------------- /CONTRIBUTOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/CONTRIBUTOR -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/README.md -------------------------------------------------------------------------------- /app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/app.html -------------------------------------------------------------------------------- /app/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/bridge.js -------------------------------------------------------------------------------- /app/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/env.js -------------------------------------------------------------------------------- /app/ffi/api/appendable_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/api/appendable_data.js -------------------------------------------------------------------------------- /app/ffi/api/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/api/auth.js -------------------------------------------------------------------------------- /app/ffi/api/cipher_opts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/api/cipher_opts.js -------------------------------------------------------------------------------- /app/ffi/api/data_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/api/data_id.js -------------------------------------------------------------------------------- /app/ffi/api/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/api/dns.js -------------------------------------------------------------------------------- /app/ffi/api/immutable_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/api/immutable_data.js -------------------------------------------------------------------------------- /app/ffi/api/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/api/misc.js -------------------------------------------------------------------------------- /app/ffi/api/nfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/api/nfs.js -------------------------------------------------------------------------------- /app/ffi/api/structured_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/api/structured_data.js -------------------------------------------------------------------------------- /app/ffi/ffi_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/ffi_api.js -------------------------------------------------------------------------------- /app/ffi/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/loader.js -------------------------------------------------------------------------------- /app/ffi/model/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/model/app.js -------------------------------------------------------------------------------- /app/ffi/model/enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/model/enum.js -------------------------------------------------------------------------------- /app/ffi/model/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/model/permission.js -------------------------------------------------------------------------------- /app/ffi/util/app_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/util/app_manager.js -------------------------------------------------------------------------------- /app/ffi/util/session_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/util/session_manager.js -------------------------------------------------------------------------------- /app/ffi/util/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ffi/util/utils.js -------------------------------------------------------------------------------- /app/images/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/account.svg -------------------------------------------------------------------------------- /app/images/account_password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/account_password.svg -------------------------------------------------------------------------------- /app/images/account_secret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/account_secret.svg -------------------------------------------------------------------------------- /app/images/account_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/account_white.svg -------------------------------------------------------------------------------- /app/images/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/app_icon.png -------------------------------------------------------------------------------- /app/images/back_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/back_arrow.svg -------------------------------------------------------------------------------- /app/images/chevron_permissions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/chevron_permissions.svg -------------------------------------------------------------------------------- /app/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/close.svg -------------------------------------------------------------------------------- /app/images/close_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/close_dark.svg -------------------------------------------------------------------------------- /app/images/close_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/close_white.svg -------------------------------------------------------------------------------- /app/images/connected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/connected.svg -------------------------------------------------------------------------------- /app/images/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/cross.svg -------------------------------------------------------------------------------- /app/images/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/dashboard.svg -------------------------------------------------------------------------------- /app/images/dashboard_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/dashboard_white.svg -------------------------------------------------------------------------------- /app/images/down-chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/down-chevron.svg -------------------------------------------------------------------------------- /app/images/error-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/error-red.svg -------------------------------------------------------------------------------- /app/images/error_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/error_alt.svg -------------------------------------------------------------------------------- /app/images/error_login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/error_login.svg -------------------------------------------------------------------------------- /app/images/generic_spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/generic_spinner.svg -------------------------------------------------------------------------------- /app/images/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/help.svg -------------------------------------------------------------------------------- /app/images/help_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/help_white.svg -------------------------------------------------------------------------------- /app/images/launcher_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/launcher_logo.svg -------------------------------------------------------------------------------- /app/images/launcher_rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/launcher_rocket.svg -------------------------------------------------------------------------------- /app/images/link_chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/link_chevron.svg -------------------------------------------------------------------------------- /app/images/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/loading.svg -------------------------------------------------------------------------------- /app/images/logs_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/logs_icon.svg -------------------------------------------------------------------------------- /app/images/logs_icon_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/logs_icon_white.svg -------------------------------------------------------------------------------- /app/images/manage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/manage.svg -------------------------------------------------------------------------------- /app/images/manage_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/manage_blue.svg -------------------------------------------------------------------------------- /app/images/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/maximize.svg -------------------------------------------------------------------------------- /app/images/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/minimize.svg -------------------------------------------------------------------------------- /app/images/not_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/not_connected.png -------------------------------------------------------------------------------- /app/images/not_connected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/not_connected.svg -------------------------------------------------------------------------------- /app/images/refresh_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/refresh_small.svg -------------------------------------------------------------------------------- /app/images/safedrive_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/safedrive_icon.svg -------------------------------------------------------------------------------- /app/images/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/settings.svg -------------------------------------------------------------------------------- /app/images/settings_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/settings_white.svg -------------------------------------------------------------------------------- /app/images/show_password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/show_password.svg -------------------------------------------------------------------------------- /app/images/show_password_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/show_password_active.svg -------------------------------------------------------------------------------- /app/images/show_password_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/show_password_hover.svg -------------------------------------------------------------------------------- /app/images/show_password_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/show_password_light.svg -------------------------------------------------------------------------------- /app/images/show_password_light_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/show_password_light_active.svg -------------------------------------------------------------------------------- /app/images/show_password_light_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/show_password_light_hover.svg -------------------------------------------------------------------------------- /app/images/status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/status.svg -------------------------------------------------------------------------------- /app/images/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/tick.svg -------------------------------------------------------------------------------- /app/images/tick_create_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/tick_create_light.svg -------------------------------------------------------------------------------- /app/images/tick_create_success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/tick_create_success.svg -------------------------------------------------------------------------------- /app/images/tick_create_warn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/tick_create_warn.svg -------------------------------------------------------------------------------- /app/images/trying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/images/trying.png -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/index.js -------------------------------------------------------------------------------- /app/logger/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/logger/log.js -------------------------------------------------------------------------------- /app/server/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/boot.js -------------------------------------------------------------------------------- /app/server/controllers/appendable_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/controllers/appendable_data.js -------------------------------------------------------------------------------- /app/server/controllers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/controllers/auth.js -------------------------------------------------------------------------------- /app/server/controllers/cipher_opts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/controllers/cipher_opts.js -------------------------------------------------------------------------------- /app/server/controllers/data_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/controllers/data_id.js -------------------------------------------------------------------------------- /app/server/controllers/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/controllers/dns.js -------------------------------------------------------------------------------- /app/server/controllers/immutable_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/controllers/immutable_data.js -------------------------------------------------------------------------------- /app/server/controllers/nfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/controllers/nfs.js -------------------------------------------------------------------------------- /app/server/controllers/structured_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/controllers/structured_data.js -------------------------------------------------------------------------------- /app/server/error_code_lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/error_code_lookup.js -------------------------------------------------------------------------------- /app/server/message_constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/message_constants.js -------------------------------------------------------------------------------- /app/server/model/activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/model/activity.js -------------------------------------------------------------------------------- /app/server/model/session_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/model/session_info.js -------------------------------------------------------------------------------- /app/server/routes/version_0_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/routes/version_0_6.js -------------------------------------------------------------------------------- /app/server/session_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/session_manager.js -------------------------------------------------------------------------------- /app/server/stream/dns_reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/stream/dns_reader.js -------------------------------------------------------------------------------- /app/server/stream/immutable_data_reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/stream/immutable_data_reader.js -------------------------------------------------------------------------------- /app/server/stream/immutable_data_writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/stream/immutable_data_writer.js -------------------------------------------------------------------------------- /app/server/stream/nfs_reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/stream/nfs_reader.js -------------------------------------------------------------------------------- /app/server/stream/nfs_writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/stream/nfs_writer.js -------------------------------------------------------------------------------- /app/server/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/server/utils.js -------------------------------------------------------------------------------- /app/stylesheets/auth.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/stylesheets/auth.less -------------------------------------------------------------------------------- /app/stylesheets/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/stylesheets/base.less -------------------------------------------------------------------------------- /app/stylesheets/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/stylesheets/buttons.less -------------------------------------------------------------------------------- /app/stylesheets/colors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/stylesheets/colors.less -------------------------------------------------------------------------------- /app/stylesheets/components.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/stylesheets/components.less -------------------------------------------------------------------------------- /app/stylesheets/loader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/stylesheets/loader.less -------------------------------------------------------------------------------- /app/stylesheets/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/stylesheets/main.less -------------------------------------------------------------------------------- /app/stylesheets/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/stylesheets/mixins.less -------------------------------------------------------------------------------- /app/stylesheets/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/stylesheets/variables.less -------------------------------------------------------------------------------- /app/ui/actions/action_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/actions/action_types.js -------------------------------------------------------------------------------- /app/ui/actions/app_action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/actions/app_action.js -------------------------------------------------------------------------------- /app/ui/actions/auth_action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/actions/auth_action.js -------------------------------------------------------------------------------- /app/ui/actions/network_status_action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/actions/network_status_action.js -------------------------------------------------------------------------------- /app/ui/actions/toaster_action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/actions/toaster_action.js -------------------------------------------------------------------------------- /app/ui/components/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/account.js -------------------------------------------------------------------------------- /app/ui/components/account_app_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/account_app_list.js -------------------------------------------------------------------------------- /app/ui/components/account_storage_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/account_storage_chart.js -------------------------------------------------------------------------------- /app/ui/components/app_auth_request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/app_auth_request.js -------------------------------------------------------------------------------- /app/ui/components/app_detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/app_detail.js -------------------------------------------------------------------------------- /app/ui/components/app_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/app_list.js -------------------------------------------------------------------------------- /app/ui/components/app_logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/app_logs.js -------------------------------------------------------------------------------- /app/ui/components/auth_bar_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/auth_bar_chart.js -------------------------------------------------------------------------------- /app/ui/components/auth_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/auth_loader.js -------------------------------------------------------------------------------- /app/ui/components/auth_request_permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/auth_request_permissions.js -------------------------------------------------------------------------------- /app/ui/components/authorised_dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/authorised_dashboard.js -------------------------------------------------------------------------------- /app/ui/components/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/dashboard.js -------------------------------------------------------------------------------- /app/ui/components/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/help.js -------------------------------------------------------------------------------- /app/ui/components/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/home.js -------------------------------------------------------------------------------- /app/ui/components/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/log.js -------------------------------------------------------------------------------- /app/ui/components/log_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/log_list.js -------------------------------------------------------------------------------- /app/ui/components/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/login.js -------------------------------------------------------------------------------- /app/ui/components/network_status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/network_status.js -------------------------------------------------------------------------------- /app/ui/components/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/permission.js -------------------------------------------------------------------------------- /app/ui/components/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/register.js -------------------------------------------------------------------------------- /app/ui/components/register_acc_pass_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/register_acc_pass_form.js -------------------------------------------------------------------------------- /app/ui/components/register_acc_pass_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/register_acc_pass_info.js -------------------------------------------------------------------------------- /app/ui/components/register_acc_secret_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/register_acc_secret_form.js -------------------------------------------------------------------------------- /app/ui/components/register_acc_secret_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/register_acc_secret_info.js -------------------------------------------------------------------------------- /app/ui/components/register_invite_code_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/register_invite_code_form.js -------------------------------------------------------------------------------- /app/ui/components/register_welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/register_welcome.js -------------------------------------------------------------------------------- /app/ui/components/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/spinner.js -------------------------------------------------------------------------------- /app/ui/components/splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/splash.js -------------------------------------------------------------------------------- /app/ui/components/toaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/toaster.js -------------------------------------------------------------------------------- /app/ui/components/unauth_bar_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/unauth_bar_chart.js -------------------------------------------------------------------------------- /app/ui/components/unauthorised_dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/unauthorised_dashboard.js -------------------------------------------------------------------------------- /app/ui/components/upload_download_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/components/upload_download_chart.js -------------------------------------------------------------------------------- /app/ui/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/constant.js -------------------------------------------------------------------------------- /app/ui/containers/account_app_list_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/containers/account_app_list_container.js -------------------------------------------------------------------------------- /app/ui/containers/account_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/containers/account_container.js -------------------------------------------------------------------------------- /app/ui/containers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/containers/app.js -------------------------------------------------------------------------------- /app/ui/containers/app_logs_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/containers/app_logs_container.js -------------------------------------------------------------------------------- /app/ui/containers/dashboard_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/containers/dashboard_container.js -------------------------------------------------------------------------------- /app/ui/containers/help_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/containers/help_container.js -------------------------------------------------------------------------------- /app/ui/containers/home_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/containers/home_container.js -------------------------------------------------------------------------------- /app/ui/containers/login_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/containers/login_container.js -------------------------------------------------------------------------------- /app/ui/containers/network_status_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/containers/network_status_container.js -------------------------------------------------------------------------------- /app/ui/containers/register_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/containers/register_container.js -------------------------------------------------------------------------------- /app/ui/containers/splash_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/containers/splash_container.js -------------------------------------------------------------------------------- /app/ui/containers/toaster_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/containers/toaster_container.js -------------------------------------------------------------------------------- /app/ui/event_registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/event_registry.js -------------------------------------------------------------------------------- /app/ui/reducers/auth_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/reducers/auth_reducer.js -------------------------------------------------------------------------------- /app/ui/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/reducers/index.js -------------------------------------------------------------------------------- /app/ui/reducers/network_status_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/reducers/network_status_reducer.js -------------------------------------------------------------------------------- /app/ui/reducers/toaster_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/reducers/toaster_reducer.js -------------------------------------------------------------------------------- /app/ui/reducers/user_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/reducers/user_reducer.js -------------------------------------------------------------------------------- /app/ui/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/routes.js -------------------------------------------------------------------------------- /app/ui/store/configure_store.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/store/configure_store.development.js -------------------------------------------------------------------------------- /app/ui/store/configure_store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/store/configure_store.js -------------------------------------------------------------------------------- /app/ui/store/configure_store.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/store/configure_store.production.js -------------------------------------------------------------------------------- /app/ui/utils/app_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui/utils/app_utils.js -------------------------------------------------------------------------------- /app/ui_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/app/ui_utils.js -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/appveyor.yml -------------------------------------------------------------------------------- /config/env_development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/config/env_development.json -------------------------------------------------------------------------------- /config/env_production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/config/env_production.json -------------------------------------------------------------------------------- /config/env_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/config/env_test.json -------------------------------------------------------------------------------- /main.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/main.development.js -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/package.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/package.json -------------------------------------------------------------------------------- /rebuild_native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/rebuild_native.js -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/linux/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/linux/DEBIAN/control -------------------------------------------------------------------------------- /resources/linux/app.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/linux/app.desktop -------------------------------------------------------------------------------- /resources/osx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/osx/Info.plist -------------------------------------------------------------------------------- /resources/osx/appdmg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/osx/appdmg.json -------------------------------------------------------------------------------- /resources/osx/dmg-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/osx/dmg-background.png -------------------------------------------------------------------------------- /resources/osx/dmg-background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/osx/dmg-background@2x.png -------------------------------------------------------------------------------- /resources/osx/dmg-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/osx/dmg-icon.icns -------------------------------------------------------------------------------- /resources/osx/helper_apps/Info EH.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/osx/helper_apps/Info EH.plist -------------------------------------------------------------------------------- /resources/osx/helper_apps/Info NP.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/osx/helper_apps/Info NP.plist -------------------------------------------------------------------------------- /resources/osx/helper_apps/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/osx/helper_apps/Info.plist -------------------------------------------------------------------------------- /resources/osx/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/osx/icon.icns -------------------------------------------------------------------------------- /resources/windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/windows/icon.ico -------------------------------------------------------------------------------- /resources/windows/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/windows/installer.nsi -------------------------------------------------------------------------------- /resources/windows/setup-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/windows/setup-banner.png -------------------------------------------------------------------------------- /resources/windows/setup-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/resources/windows/setup-icon.ico -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/server.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/api/app_authorisation.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/api/app_authorisation.spec.js -------------------------------------------------------------------------------- /test/api/appendable_data.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/api/appendable_data.spec.js -------------------------------------------------------------------------------- /test/api/dns.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/api/dns.spec.js -------------------------------------------------------------------------------- /test/api/immutable_data.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/api/immutable_data.spec.js -------------------------------------------------------------------------------- /test/api/nfs_directory.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/api/nfs_directory.spec.js -------------------------------------------------------------------------------- /test/api/nfs_file.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/api/nfs_file.spec.js -------------------------------------------------------------------------------- /test/api/server.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/api/server.spec.js -------------------------------------------------------------------------------- /test/api/structured_data.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/api/structured_data.spec.js -------------------------------------------------------------------------------- /test/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/constants.js -------------------------------------------------------------------------------- /test/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/e2e.js -------------------------------------------------------------------------------- /test/mock_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/mock_app.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/setup.js -------------------------------------------------------------------------------- /test/utils/appendable_data_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/utils/appendable_data_utils.js -------------------------------------------------------------------------------- /test/utils/auth_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/utils/auth_utils.js -------------------------------------------------------------------------------- /test/utils/cipher_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/utils/cipher_utils.js -------------------------------------------------------------------------------- /test/utils/data_id_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/utils/data_id_utils.js -------------------------------------------------------------------------------- /test/utils/dns_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/utils/dns_utils.js -------------------------------------------------------------------------------- /test/utils/immutable_data_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/utils/immutable_data_utils.js -------------------------------------------------------------------------------- /test/utils/nfs_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/utils/nfs_utils.js -------------------------------------------------------------------------------- /test/utils/sign_key_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/utils/sign_key_utils.js -------------------------------------------------------------------------------- /test/utils/structured_data_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/utils/structured_data_utils.js -------------------------------------------------------------------------------- /test/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/test/utils/utils.js -------------------------------------------------------------------------------- /webpack.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/webpack.config.base.js -------------------------------------------------------------------------------- /webpack.config.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/webpack.config.development.js -------------------------------------------------------------------------------- /webpack.config.electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/webpack.config.electron.js -------------------------------------------------------------------------------- /webpack.config.eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/webpack.config.eslint.js -------------------------------------------------------------------------------- /webpack.config.node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/webpack.config.node.js -------------------------------------------------------------------------------- /webpack.config.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/webpack.config.production.js -------------------------------------------------------------------------------- /webpack.config.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/safe_launcher/HEAD/webpack.config.test.js --------------------------------------------------------------------------------