Skip to content
This repository was archived by the owner on Jun 26, 2020. It is now read-only.

Commit cb37b29

Browse files
committed
bump to version 2.2.0 and change some things
1 parent f9df5e2 commit cb37b29

File tree

4 files changed

+36
-3
lines changed

4 files changed

+36
-3
lines changed

.vscode/launch.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Launch",
6+
"type": "node",
7+
"request": "launch",
8+
"program": "",
9+
"stopOnEntry": false,
10+
"args": [],
11+
"cwd": "${workspaceRoot}/packages/client-app/",
12+
"runtimeExecutable": "${workspaceRoot}/packages/client-app/node_modules/.bin/electron",
13+
"runtimeArgs": [
14+
"${workspaceRoot}/packages/client-app/src/browser/main.js",
15+
"--enable-logging",
16+
"--dev"
17+
],
18+
"env": {},
19+
"sourceMaps": true
20+
},
21+
{
22+
"name": "Attach",
23+
"type": "node",
24+
"request": "attach",
25+
"port": 5858,
26+
"sourceMaps": true
27+
}
28+
]
29+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"url": "git+https://github.com/nylas/nylas-mail-all.git"
6666
},
6767
"author": "Nylas",
68-
"license": "proprietary",
68+
"license": "MIT",
6969
"engines": {
7070
"node": "6.9.1",
7171
"npm": "3.10.8"

packages/client-app/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Nylas Mail Changelog
22

3+
### 2.2.0 (9/14/2017)
4+
5+
+ Merge complete code dump from Nylas with 2.1.0 (Issue #69)
6+
37
### 2.1.0 (7/9/2017)
48

59
+ An NML (Nylas Mail Lives) Build

packages/client-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "nylas-mail",
33
"productName": "Nylas Mail",
4-
"version": "2.1.0",
4+
"version": "2.2.0",
55
"description": "The best email app for people and teams at work",
6-
"license": "GPL-3.0",
6+
"license": "MIT",
77
"main": "./src/browser/main.js",
88
"repository": {
99
"type": "git",

0 commit comments

Comments
 (0)