Skip to content
This repository has been archived by the owner on Jan 6, 2022. It is now read-only.

add/download screen #516

Merged
merged 41 commits into from
Oct 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
5b3e113
add/download screen
aks- Feb 13, 2018
d680d86
refactor always true conditional
juliangruber Feb 22, 2018
b636749
paused defaults to falsy
juliangruber Feb 22, 2018
1ca6b58
refactor walk fn
juliangruber Feb 22, 2018
562daa3
paused defaults to false
juliangruber Feb 22, 2018
59e62d7
remove unnecessary timeout
juliangruber Feb 22, 2018
577a78d
key always exists in downloadSparseDat
juliangruber Feb 22, 2018
4b79992
remove redundant lines
juliangruber Feb 22, 2018
67908b7
add back missing dats[key] setter
juliangruber Feb 26, 2018
8fc7b89
Extracted dat methods into own middleware.
martinheidegger Apr 16, 2018
91e916d
Fixed removing of a Dat
martinheidegger Apr 18, 2018
26cd3d7
Making sure that deep folders get created through the use of mkdirp
martinheidegger Apr 18, 2018
039cb05
Fixed pause/resume of dat
martinheidegger Apr 18, 2018
3b438ad
Using byteLength instead of length to display in the table-row
martinheidegger Apr 18, 2018
d4d9524
Added CLI Options
martinheidegger Apr 18, 2018
5f3e1ef
Used consistent classnames for buttons
martinheidegger Apr 18, 2018
23ab581
Readded document.title to the app
martinheidegger Apr 18, 2018
eef9103
Reimplemented debug monkeyPatching through environment variables.
martinheidegger Apr 18, 2018
aa760f7
Only log in development environment.
martinheidegger Apr 18, 2018
e57c3e6
Integration tests made working again.
martinheidegger Apr 18, 2018
8521625
Updated package-lock
martinheidegger Jun 13, 2018
f9aba52
Package update
martinheidegger Jun 13, 2018
b459945
Preventing the repeat download of the same dat. The repeat adding of …
martinheidegger Jun 13, 2018
772055e
no message
martinheidegger Jun 14, 2018
4a3754e
Adding trigger property that doesn't propagate to parent elements. Th…
martinheidegger Jun 20, 2018
d834d51
Common logic used to remove a DAT
martinheidegger Jun 20, 2018
9096dcd
If the dat isn't in the list anymore it can be immediately marked as …
martinheidegger Jun 20, 2018
e4e7597
Destroying the mirroring process on removal, this way no accidental D…
martinheidegger Jun 20, 2018
472cf38
Added single-unit script that allows to run a single-unit testcase if…
martinheidegger Jun 28, 2018
7205ba7
Lint fix
martinheidegger Jun 29, 2018
536b53b
Merge commit '472698a1e711b9e9e85b6f3b316d5861619ccd85' into add/down…
martinheidegger Jun 29, 2018
d17dfd5
Lint fix
martinheidegger Jun 29, 2018
67dd5aa
Fixed merge mistake
martinheidegger Jun 29, 2018
fc522b6
removed: package-lock.json
AtuyL Oct 3, 2018
77d55f2
back to home-screen on the action of DIALOGS_DELETE_CLOSE.
AtuyL Oct 3, 2018
4830c33
Fixed: merge mistake.
AtuyL Oct 3, 2018
668af34
fixed: missing package.
AtuyL Oct 3, 2018
01d46d5
fixed: missing deps.
AtuyL Oct 9, 2018
d9f1369
Merge pull request #554 from dat-land/merge/react-add_download
martinheidegger Oct 9, 2018
47abdb2
apply: https://github.com/dat-land/dat-desktop/pull/516#discussion_r2…
AtuyL Oct 12, 2018
b6a8953
Merge branch 'react' into add/download
AtuyL Oct 12, 2018
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
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ env:
install:
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- npm install
- npm run build:prod
deploy:
provider: script
script: npm run dist
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ $ brew update && brew cask install dat
$ npm install # install dependencies
$ npm start # start the application
$ npm run dist # compile the app into an ASAR file to release
$ npm start --dat=<dir> # change the path for new dat archives (default ~/Downloads)
$ npm start --data=<dir> # change the path for new dat archives (default ~/Downloads/dat)
$ npm start --db=<dir> # change the path for users settings (default ~/.dat-desktop)
```

## FAQ
Expand Down
Loading