Skip to content
Merged
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
37 changes: 36 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,44 @@
# Change Log

## [0.11.4](https://github.com/criptext/Criptext-Email-React-Client/tree/0.11.4) (2018-09-27)
[Full Changelog](https://github.com/criptext/Criptext-Email-React-Client/compare/0.11.3...0.11.4)

**Implemented enhancements:**

- Add CHANGELOG [\#448](https://github.com/Criptext/Criptext-Email-React-Client/issues/448)
- Mailbox: Discard drafts [\#441](https://github.com/Criptext/Criptext-Email-React-Client/issues/441)

**Fixed bugs:**

- Mailbox: Fix labels on Spam and Trash [\#442](https://github.com/Criptext/Criptext-Email-React-Client/issues/442)
- Mailbox: Discard drafts [\#441](https://github.com/Criptext/Criptext-Email-React-Client/issues/441)
- Fix scroll [\#436](https://github.com/Criptext/Criptext-Email-React-Client/issues/436)
- Fix decryption error [\#434](https://github.com/Criptext/Criptext-Email-React-Client/issues/434)
- Fix search contact, shoul be fast [\#425](https://github.com/Criptext/Criptext-Email-React-Client/issues/425)

**Closed issues:**

- Automatic sync, when mailbox windows is focus [\#438](https://github.com/Criptext/Criptext-Email-React-Client/issues/438)
- Composer: focus respective input with the differents action \[reply, fordward, new email\] [\#426](https://github.com/Criptext/Criptext-Email-React-Client/issues/426)

**Merged pull requests:**

- Composer and project structure [\#447](https://github.com/Criptext/Criptext-Email-React-Client/pull/447) ([erikaperugachi](https://github.com/erikaperugachi))
- Remote Login [\#446](https://github.com/Criptext/Criptext-Email-React-Client/pull/446) ([JulianAdams4](https://github.com/JulianAdams4))
- Fix reply email [\#445](https://github.com/Criptext/Criptext-Email-React-Client/pull/445) ([erikaperugachi](https://github.com/erikaperugachi))
- Discard drafts, Spam & Trash Labels [\#444](https://github.com/Criptext/Criptext-Email-React-Client/pull/444) ([JulianAdams4](https://github.com/JulianAdams4))
- Fix contact search & cleanHTML [\#443](https://github.com/Criptext/Criptext-Email-React-Client/pull/443) ([erikaperugachi](https://github.com/erikaperugachi))
- Update issue templates [\#440](https://github.com/Criptext/Criptext-Email-React-Client/pull/440) ([danieltigse](https://github.com/danieltigse))
- Automatic sync, when mailbox windows is focus. Close \#438 [\#439](https://github.com/Criptext/Criptext-Email-React-Client/pull/439) ([erikaperugachi](https://github.com/erikaperugachi))
- Fix scroll. Fix \#436 [\#437](https://github.com/Criptext/Criptext-Email-React-Client/pull/437) ([erikaperugachi](https://github.com/erikaperugachi))
- Fix decryption error. Fix \#434 [\#435](https://github.com/Criptext/Criptext-Email-React-Client/pull/435) ([erikaperugachi](https://github.com/erikaperugachi))

## [0.11.3](https://github.com/criptext/Criptext-Email-React-Client/tree/0.11.3) (2018-09-21)
[Full Changelog](https://github.com/criptext/Criptext-Email-React-Client/compare/0.11.2...0.11.3)

**Implemented enhancements:**

- Login/Loading: Refactoring creating account new device [\#433](https://github.com/Criptext/Criptext-Email-React-Client/issues/433)
- Settings: Add OS information on Contact Support [\#420](https://github.com/Criptext/Criptext-Email-React-Client/issues/420)
- App: Remove all email data on delete [\#417](https://github.com/Criptext/Criptext-Email-React-Client/issues/417)
- Mailbox: Empty Search Icon [\#409](https://github.com/Criptext/Criptext-Email-React-Client/issues/409)
Expand All @@ -22,6 +56,7 @@

**Closed issues:**

- Login & Mailbox: Login without password [\#431](https://github.com/Criptext/Criptext-Email-React-Client/issues/431)
- EmailDetail: Move single email in thread to Spam or Trash [\#414](https://github.com/Criptext/Criptext-Email-React-Client/issues/414)
- Mailbox: Delete emails in Trash over 30 days ago [\#406](https://github.com/Criptext/Criptext-Email-React-Client/issues/406)
- Validate that any js run in the email viewer [\#349](https://github.com/Criptext/Criptext-Email-React-Client/issues/349)
Expand Down Expand Up @@ -573,4 +608,4 @@



\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
2 changes: 1 addition & 1 deletion electron_app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "criptext",
"version": "0.11.4",
"version": "0.12.0",
"author": {
"name": "Criptext Inc.",
"email": "info@criptext.com",
Expand Down
5 changes: 1 addition & 4 deletions email_login/src/components/LoginWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,15 +174,12 @@ class LoginWrapper extends Component {
ev.stopPropagation();
const username = this.state.values.username;
const isAvailable = await checkUsernameAvailable(username);
const isAvailableLinkDevice = false;
if (isAvailable) {
this.setState({
errorMessage: errorMessages.USERNAME_NOT_EXISTS
});
} else if (isAvailableLinkDevice) {
await this.initLinkDevice(username);
} else {
this.goToPasswordLogin();
await this.initLinkDevice(username);
}
};

Expand Down
2 changes: 1 addition & 1 deletion email_mailbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "email_mailbox",
"version": "0.11.4",
"version": "0.12.0",
"private": true,
"dependencies": {
"animejs": "^2.2.0",
Expand Down
11 changes: 3 additions & 8 deletions email_mailbox/src/utils/electronEventInterface.js
Original file line number Diff line number Diff line change
Expand Up @@ -632,15 +632,10 @@ const setEventAsHandled = async eventId => {
----------------------------- */
ipcRenderer.on('socket-message', async (ev, message) => {
const eventId = message.cmd;
if (
eventId === SocketCommand.DEVICE_REMOVED ||
eventId === SocketCommand.PEER_PASSWORD_CHANGED ||
eventId === SocketCommand.PEER_RECOVERY_EMAIL_CHANGED ||
eventId === SocketCommand.PEER_RECOVERY_EMAIL_CONFIRMED
) {
handleEvent(message);
} else if (eventId === 400) {
if (eventId === 400) {
await getGroupEvents();
} else {
handleEvent(message);
}
});

Expand Down