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

Commit

Permalink
### Version 0.13.2
Browse files Browse the repository at this point in the history
- Update dbl_dot_local_app to latest (11-02-2018)
- Skip calculating checksums for files over 250MB
  • Loading branch information
ericpyle committed Nov 5, 2018
1 parent 0b5fcd3 commit 499aeb9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Version 0.13.2
- Update dbl_dot_local_app to latest (11-02-2018)
- Skip calculating checksums for files over 250MB

### Version 0.13.1
#### Fixes
- don't get stuck in Uploading mode if something goes wrong (return to store mode)
Expand Down
2 changes: 1 addition & 1 deletion app/components/ManageBundleManifestResourcesDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ class ManageBundleManifestResourcesDialog extends Component<Props> {
const stats = await fs.stat(filePath);
const { size: sizeRaw } = stats;
const size = formatBytesByKbs(sizeRaw);
const checksum = await md5File(filePath);
const checksum = size < 268435456 ? await md5File(filePath) : '(too expensive)';
const totalResources = this.getUpdatedTotalResources(filePath, { size, checksum });
this.setState({ totalResources });
});
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nathanael",
"productName": "nathanael",
"version": "0.13.1",
"version": "0.13.2",
"description": "Electron frontend to DBL dot Local",
"scripts": {
"build": "concurrently \"npm run build-main\" \"npm run build-renderer\"",
Expand Down

0 comments on commit 499aeb9

Please sign in to comment.