Vikas Shashidhar 299e75eca3 Electron 44 File Download Experience (#116)
* Implemented File Download Experience

1. Initiate download manager when a file download is initiated.
2. Add items to download manager when new items are downloaded.
3. Allow user to open file in default OS app.
4. Allow user to show file in finder/explorer.
5. Allow user to close download bar.

* 1. Removed underscore
2. Added safety checks
3. Added support for popouts
4. Creating most elements of download manager if electron

* 1. Moved download manager logic to a separate file

* 1. Added styles to help pushing up the content of the app when the download manager is being shown.

* 1. Added tests for Download Manager.

* Removed unnecessary code.

* Made adjustments to handle positioning of the download manager through the flexbox model rather than the fixed positioning way.

* Removed data attributes being added to body to handle download manager.
2017-06-27 08:08:58 -07:00
2017-02-13 16:31:42 -08:00
2017-05-08 10:46:56 -07:00
2016-12-03 00:59:30 +01:00
2016-12-03 00:59:30 +01:00
2017-06-09 15:32:27 -07:00

Symphony Software Foundation - Incubating

SymphonyElectron

Project Goals:

Our goal is to improve the performance and development agility of Symphony's desktop wrapper and build a path to support other wrappers by:

  1. Standardizing the JS to native interfaces
  2. Standardizing the app to app interfaces (current embedding API)
  3. Provide an open and free reference implementation that anyone can contribute to, modify, and make derivative works.

In order to achieve those goals Symphony is participating and working in close collaboration with the Foundation Desktop Wrapper Working Group

Windows Dev Env

  • NodeJS version >= 7.4.0 (corresponds to electron 1.6.7)
  • install Microsoft Visual Studio 2015 with both C++ and .NET/C# development tools. Free community versions works.
  • also make sure .NET3.5SP1 is installed.
  • note: C++ tools needed to recompile node modules
  • note: .NET/C# tools needed to compile screen-snippet
  • open 'Developer Command Prompt for VS2015' - this sets paths to visual studio build tools

Mac Dev Env

  • need to install xcode command line tools.
  • NodeJS version >= 7.4.0 (corresponds to electron 1.6.7) - needed to run tests locally

Run demo:

  • npm install
  • npm run demo-win (for windows)
  • npm run demo-mac (for mac osx)

Build Instructions:

  • npm install
  • to run locally: npm run dev
  • to build mac pkg:
  • to build win msi: npm run unpacked-win (for 64 bit) and use 'advanced installer' .aip file in installer/ dir

msi command line options:

  • to install for all users (admin required): msiexec.exe /i Symphony-x64.msi ALLUSERS=1
  • to install per user: msiexec.exe /i Symphony-x64.msi ALLUSERS=""
  • to change default pod url: msiexe.exe /i Symphony-x64.msi POD_URL=my.symphony.com
  • to change auto start: msiexe.exe /i Symphony-x64.msi AUTO_START=true (or false) - if not specified default it true.
  • to change minimize on close: msiexe.exe /i Symphony-x64.msi MINIMIZE_ON_CLOSE=true (or false) - if not specified default is true.
  • any of the above options can be chained together, for example: msiexe.exe /i Symphony-x64.msi MINIMIZE_ON_CLOSE=true AUTO_START=false POD_URL=my.symphony.com

Start URL

  • To change the start url (i.e., pod url), edit config/Symphony.config and change 'url' variable. if no protocol provided, then https will be added.
  • The installer will include file config/Symphony.config next to executable. Changes in this file will effect all users.

Tests and Code Coverage

  • jest framework is used to run tests: http://facebook.github.io/jest/
  • to run tests and get code coverage report: npm test
  • code coverage reports are placed in dir: converage
  • tests are located in dir: tests

Misc notes

If desiring to run against server without proper cert use cmd line option: --ignore-certificate-errors

S
Description
A desktop client for the Symphony Collaboration Platform built using Electron
Readme
166 MiB
Languages
TypeScript 56.2%
C# 26.3%
Rich Text Format 5.6%
Less 3.5%
HTML 3%
Other 5.3%