Skip to content

Commit c0d98c2

Browse files
Merge pull request #27 from conjoon/dev
Dev
2 parents 27540e0 + d72cf0b commit c0d98c2

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [1.0.0](https://github.com/conjoon/extjs-dev-webmailsim/compare/v0.1.6...v1.0.0) (2023-01-28)
6+
57
### [0.1.6](https://github.com/conjoon/extjs-dev-webmailsim/compare/v0.1.5...v0.1.6) (2022-12-14)
68

79
### [0.1.5](https://github.com/conjoon/extjs-dev-webmailsim/compare/v0.1.4...v0.1.5) (2022-12-14)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
]
4444
},
4545
"description": "This Sencha Ext JS NPM package contains mock data for development of @conjoon/extjs-app-webmail]",
46-
"version": "0.1.6",
46+
"version": "1.0.0",
4747
"main": "index.js",
4848
"directories": {
4949
"test": "tests"
@@ -83,8 +83,8 @@
8383
},
8484
"homepage": "https://github.com/conjoon/extjs-dev-webmailsim#readme",
8585
"dependencies": {
86-
"@l8js/l8": "^0.8.0",
87-
"@coon-js/extjs-lib-core": "^1.0.0"
86+
"@l8js/l8": "^0.10.1",
87+
"@coon-js/extjs-lib-core": "^1.0.5"
8888
},
8989
"devDependencies": {
9090
"@commitlint/cli": "^13.2.0",

src/data/MailAccountSim.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* conjoon
33
* extjs-dev-webmailsim
4-
* Copyright (C) 2019-2022 Thorsten Suckow-Homberg https://github.com/conjoon/extjs-dev-webmailsim
4+
* Copyright (C) 2019-2023 Thorsten Suckow-Homberg https://github.com/conjoon/extjs-dev-webmailsim
55
*
66
* Permission is hereby granted, free of charge, to any person
77
* obtaining a copy of this software and associated documentation
@@ -45,19 +45,22 @@ Ext.define("conjoon.dev.cn_mailsim.data.MailAccountSim", {
4545
outbox_port: 993,
4646
outbox_user: "outboxuser",
4747
outbox_password: "outboxpassword",
48-
outbox_secure: ["tls", "ssl"][Math.floor(Math.random() * (1 - 0 + 1)) + 0]
48+
outbox_secure: ["tls", "ssl"][Math.floor(Math.random() * (1 - 0 + 1)) + 0],
49+
subscriptions: ["INBOX"]
4950

5051
}, {
5152
id: "mail_account",
5253
name: "google mail",
5354
from: {name: "Peter Parker", address: "[email protected]"},
5455
replyTo: {name: "Peter Parker", address: "[email protected]"},
5556
inbox_type: "IMAP",
56-
outbox_secure: ["tls", "ssl"][Math.floor(Math.random() * (1 - 0 + 1)) + 0]
57+
outbox_secure: ["tls", "ssl"][Math.floor(Math.random() * (1 - 0 + 1)) + 0],
58+
subscriptions: ["INBOX", "[Gmail]"]
5759
}],
5860

5961

6062
doGet: function (ctx) {
63+
6164
const
6265
me = this,
6366
accounts = me.getMockAccounts();
@@ -83,7 +86,7 @@ Ext.define("conjoon.dev.cn_mailsim.data.MailAccountSim", {
8386
},
8487

8588

86-
doPut: function (ctx) {
89+
doPatch: function (ctx) {
8790

8891
const me = this;
8992

0 commit comments

Comments
 (0)