Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# [CHANGELOG](#changelog)

---
## v2.3.6

- Update packages
- Czech translation (by [Franatrtur](https://github.com/Franatrtur)).
- Turkish translation (by [darkao](https://github.com/darkao)).
- Frank7sun translation (by [Frank7sun](https://github.com/Frank7sun)).

## v2.3.5

- Update packages
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /app

COPY package*.json ./

RUN npm ci
RUN npm install

COPY . ./

Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ The project is maintained in my free time. Donations of any size are appreciated
- [matteotardito](https://github.com/matteotardito) for translating to Italian.
- [t0mzSK](https://github.com/t0mzSK) for translating to Slovak.
- [Xurdejl](https://github.com/Xurdejl) for translating to Spanish.
- [Franatrtur](https://github.com/Franatrtur) for translating to Czech.
- [darkao](https://github.com/darkao) for translating to Turkish.
- [Frank7sun](https://github.com/Frank7sun) for translating to Japanese.

<br>

Expand Down
4 changes: 4 additions & 0 deletions cypress/integration/asymmetricCryptoTests.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ describe("Asymmetric encryption test", () => {

cy.get(".downloadFile").realClick();
});

cy.wait(2500);
});

it("verify the encrypted file path", () => {
Expand Down Expand Up @@ -194,6 +196,8 @@ describe("Asymmetric encryption test", () => {

cy.get(".downloadFileDec").realClick();
});

cy.wait(2500);
});

it("verify the decrypted file path", () => {
Expand Down
4 changes: 4 additions & 0 deletions cypress/integration/symmetricCryptoTests.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ describe("Symmetric encryption test", () => {

cy.get(".downloadFile").realClick();
});

cy.wait(2500);
});

it("verify the encrypted file path", () => {
Expand Down Expand Up @@ -131,6 +133,8 @@ describe("Symmetric encryption test", () => {

cy.get(".downloadFileDec").realClick();
});

cy.wait(2500);
});

it("verify the decrypted file path", () => {
Expand Down
Loading