2947 Commits

Author SHA1 Message Date
Juan Cruz Viotti
a50a07a233 Merge pull request #104 from resin-io/feat/trackjs
Integrate Etcher with TrackJS
2016-01-20 16:38:45 -04:00
Federico Martín Alconada Verzini
6331ee4aa1 Add button to burn the same image again. Fixes #74 2016-01-20 12:28:15 -04:00
Juan Cruz Viotti
9a125c2a36 Integrate Etcher with TrackJS 2016-01-19 14:00:20 -04:00
Juan Cruz Viotti
1f3baf3f4d Merge pull request #103 from resin-io/feat/-logger
Make LoggerService use Angular's $log
2016-01-19 10:39:55 -04:00
Juan Cruz Viotti
4ab2dc1948 Merge pull request #102 from resin-io/fix/use-logger-service
Make use of LoggerService in reselection routines
2016-01-19 10:31:35 -04:00
Juan Cruz Viotti
26f2104163 Merge pull request #101 from resin-io/doc/ng-cloak
Explain why we toggle body's display manually instead of using ngCloak
2016-01-19 10:27:45 -04:00
Juan Cruz Viotti
238c459d01 Make LoggerService use Angular's $log
This has the added benefit that services like TrackJS, which deeply
integrate with Angular, will share the messages with the service.
2016-01-19 10:26:51 -04:00
Juan Cruz Viotti
7d6a43e091 Make use of LoggerService in reselection routines 2016-01-19 10:25:13 -04:00
Juan Cruz Viotti
f20fb36328 Merge pull request #100 from resin-io/feat/logger
Implement a decent debug logger service
2016-01-19 10:16:33 -04:00
Juan Cruz Viotti
817a6f591b Explain why we toggle body's display manually instead of using ngCloak 2016-01-19 10:14:37 -04:00
Juan Cruz Viotti
f1a91ddebc Merge pull request #99 from resin-io/style/image-supported-label
Only show supported files label when there is no selected image
2016-01-19 10:08:49 -04:00
Juan Cruz Viotti
cc7f6f2587 Merge pull request #98 from resin-io/feature/step-reselection
Allow to re-select the first two step selections
2016-01-19 10:08:38 -04:00
Juan Cruz Viotti
6478982896 Implement a decent debug logger service
This service prints the exact date and time of the messages.
2016-01-19 10:07:59 -04:00
Juan Cruz Viotti
347d965e52 Only show supported files label when there is no selected image 2016-01-19 09:50:00 -04:00
Juan Cruz Viotti
8026cef1df Allow to re-select the first two step selections
You can click on the selected image/drive label to select them again.

The re-selection is disabled if there is a burning in process.

Fixes: https://github.com/resin-io/resin-etcher/issues/90
2016-01-19 09:47:58 -04:00
Juan Cruz Viotti
b3dde83083 Implement removeDrive and removeImage in selection service 2016-01-19 09:42:57 -04:00
Juan Cruz Viotti
ffbccc5aec Merge pull request #97 from resin-io/feat/86/format-explanation
Add image format footer explanation
2016-01-18 15:56:04 -04:00
Juan Cruz Viotti
2f301ad382 Add image format footer explanation
Fixes: https://github.com/resin-io/resin-etcher/issues/86
2016-01-18 15:35:40 -04:00
Juan Cruz Viotti
9dcc7b40ac Merge pull request #95 from resin-io/fix/window-lint-warn
Require electron-window as ElectronWindow
2016-01-18 15:29:32 -04:00
Juan Cruz Viotti
a45b0fdc95 Merge pull request #66 from resin-io/feat/burning-speed
Show burn speed information during write
2016-01-18 15:28:29 -04:00
Juan Cruz Viotti
7f724b6295 Show burn speed information during write
The speed is shown right below the Burn button.
2016-01-18 14:55:13 -04:00
Juan Cruz Viotti
cf41b6279d Save burn progress speed in image writer state 2016-01-18 14:55:13 -04:00
Juan Cruz Viotti
d9641fc557 Rename setProgress to setProgressState
It shows the intention more clearly now that the function not only
accepts a plain percentage.
2016-01-18 14:55:13 -04:00
Juan Cruz Viotti
a46a716512 Make setProgress accept an options object
This allows us to pass more things than just the percentage to
`setProgress`.
2016-01-18 14:55:13 -04:00
Juan Cruz Viotti
e30de45707 Implement ImageWriterService.reset()
This function allows the client to easily reset the progress state
without breaking encapsulation.
2016-01-18 14:55:13 -04:00
Juan Cruz Viotti
3705d0fc3a Namespace ImageWriter progress in state object
This change allows us to scale the state information to more properties
than just the percentage.
2016-01-18 14:55:13 -04:00
Juan Cruz Viotti
139e9c29c5 Merge pull request #92 from resin-io/misc/jshint-maxlen
Set an explicit maxlen
2016-01-18 14:48:49 -04:00
Juan Cruz Viotti
b8cb722ad6 Merge pull request #93 from resin-io/misc/ci-iojs
Only target v4 in CI servers
2016-01-18 14:48:45 -04:00
Juan Cruz Viotti
320cbba9ef Merge pull request #94 from resin-io/misc/rebuilt-browserify
Rebuild browserify browser code
2016-01-18 14:48:37 -04:00
Juan Cruz Viotti
6a50015ddc Require electron-window as ElectronWindow
JSHint complains about `Window` as a redefinition warning.
2016-01-18 14:12:54 -04:00
Juan Cruz Viotti
ee913639af Rebuild browserify browser code 2016-01-18 14:12:00 -04:00
Juan Cruz Viotti
7e4d583f03 Merge pull request #91 from resin-io/feat/autoselect-single-drive
Autoselect the drive if only one drive is present
2016-01-18 14:07:16 -04:00
Juan Cruz Viotti
568cae7ded Only target v4 in CI servers
We're only targetting Electron, which uses only modern versions of
NodeJS.
2016-01-18 14:05:28 -04:00
Juan Cruz Viotti
cdb863c7cf Set an explicit maxlen
Hound CI uses it's default otherwise, which is too short.
2016-01-18 14:03:50 -04:00
Juan Cruz Viotti
9ffc642784 Autoselect a single drive by using DriveScanner scan event
- The autoselection only happens once the user has selected an image to
prevent weird behaviour.

- The autoselection happens only if the current selected drive is
different from the new drive in order to avoid selecting the same driver
over and over again if it still is the only one.
2016-01-18 13:46:52 -04:00
Juan Cruz Viotti
f218cc1b59 Make DriveScanner.start() return an EventEmitter instance 2016-01-18 13:46:51 -04:00
Juan Cruz Viotti
491a0ae9c9 Trigger drive scans after slight delays
This allows unit tests to easily capture the first run, as otherwise
happens too fast.
2016-01-18 13:46:51 -04:00
Juan Cruz Viotti
b7da4dfeda Autoselect the drive if only one drive is present 2016-01-18 13:46:29 -04:00
Juan Cruz Viotti
79ebe75472 Merge pull request #85 from resin-io/style/68/footer-logo
Implement new footer with the Resin.io logo
2016-01-18 11:26:53 -04:00
Juan Cruz Viotti
da4748a1a1 Implement new footer with the Resin.io logo
Fixes: https://github.com/resin-io/resin-etcher/issues/68
2016-01-18 10:36:39 -04:00
Juan Cruz Viotti
0a8e89c782 Only append label if this exists in hero-icon
Currently, an empty element was appended to hero-icon template to hold
the label even if this didn't exist, causing some vertical bottom
spacing.

We use Polymer's `dom-if` to conditional show this element. The label
was changed to be passed as an HTML property since it seems to be really
difficult to access the inner HTML of a polymer element programatically.
2016-01-18 10:32:27 -04:00
Juan Cruz Viotti
79b33cea1c Allow customising hero-icon size using HTML attributes 2016-01-18 10:05:13 -04:00
Juan Cruz Viotti
d759fecf3e Merge pull request #83 from resin-io/doc/cli
Reference the experimental Etcher CLI
2016-01-18 09:19:53 -04:00
Juan Cruz Viotti
98c45556a4 Reference the experimental Etcher CLI 2016-01-17 23:51:29 -04:00
Juan Cruz Viotti
9a63b62cf4 Merge pull request #82 from resin-io/ci/notifications
Improve Travis CI and Appveyor notifications
2016-01-15 10:04:00 -04:00
Juan Cruz Viotti
f56ffebfdc Merge pull request #81 from resin-io/doc/contributing-guidelines-pr
Improve pull request contributing guidelines
2016-01-14 10:50:04 -04:00
Juan Cruz Viotti
e696b01fb6 Improve Travis CI and Appveyor notifications 2016-01-14 10:48:08 -04:00
Juan Cruz Viotti
bf17b09fff Improve pull request contributing guidelines 2016-01-14 10:22:46 -04:00
Juan Cruz Viotti
c6cbd1da59 Merge pull request #78 from resin-io/feat/badge-waffle
Add Waffle badge
2016-01-12 14:26:16 -04:00
Juan Cruz Viotti
f46d6e24d2 Add Waffle badge 2016-01-12 08:15:16 -04:00