Skip to content

Commit

Permalink
Merge branch 'release/0.16.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed Jan 14, 2023
2 parents ce4f4b3 + add7504 commit 8872a1e
Show file tree
Hide file tree
Showing 27 changed files with 549 additions and 287 deletions.
1 change: 1 addition & 0 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
# Chrome 84.0 is the oldest version available on selenium/standalone-xxx.
Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [0.16.0] - 2023-01-14
### Changed
- Clear input files and text after sent
- Make Piping UI Auth use detectable for normal receiver in the future
- Save as input file name in passwordless protection
- Improve progress bar when viewing in passwordless protection

## Added
- Show progress bar when downloading in passwordless protection
- Show update-app button when key exchange version is out-of-date

## [0.15.0] - 2023-01-07
### Added
- Add info tooltips to "Passwordless", "Verify and Send" and "Password" switches
Expand Down Expand Up @@ -454,7 +465,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
### Added
- First release

[Unreleased]: https://github.com/nwtgck/piping-ui-web/compare/v0.15.0...HEAD
[Unreleased]: https://github.com/nwtgck/piping-ui-web/compare/v0.16.0...HEAD
[0.16.0]: https://github.com/nwtgck/piping-ui-web/compare/v0.15.0...v0.16.0
[0.15.0]: https://github.com/nwtgck/piping-ui-web/compare/v0.14.0...v0.15.0
[0.14.0]: https://github.com/nwtgck/piping-ui-web/compare/v0.13.0...v0.14.0
[0.13.0]: https://github.com/nwtgck/piping-ui-web/compare/v0.12.1...v0.13.0
Expand Down
14 changes: 7 additions & 7 deletions e2e-test/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 e2e-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"selenium-webdriver": "^4.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"undici": "^5.14.0"
"undici": "^5.15.0"
}
}
2 changes: 1 addition & 1 deletion e2e-test/src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ describe('Piping UI', () => {
const finishRetryDownload = receiverActions.retryDownloadButtonIfNeed();
defer(() => finishRetryDownload());

const downloadedFilePath = path.join(downloadPath, secretPath);
const downloadedFilePath = path.join(downloadPath, "mydata.dat");
await waitForDownload(downloadedFilePath);
const downloadedFileContent = fs.readFileSync(downloadedFilePath);

Expand Down
Loading

0 comments on commit 8872a1e

Please sign in to comment.