Skip to content

Commit

Permalink
add download stat
Browse files Browse the repository at this point in the history
  • Loading branch information
lisong committed Aug 9, 2017
1 parent 4121d3b commit ff07696
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Changelog for code-push-server
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# CodePush Server [source](https://github.com/lisong/code-push-server)

[![NPM](https://nodei.co/npm/code-push-server.svg?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/code-push-server/)

[![NPM Version](https://img.shields.io/npm/v/code-push-server.svg)](https://npmjs.org/package/code-push-server)
[![Node.js Version](https://img.shields.io/node/v/code-push-server.svg)](https://nodejs.org/en/download/)
[![Linux Status](https://img.shields.io/travis/lisong/code-push-server/master.svg?label=linux)](https://travis-ci.org/lisong/code-push-server)
Expand Down
2 changes: 1 addition & 1 deletion config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ config.development = {
},
// Config for smtp email,register module need validate user email project source https://github.com/nodemailer/nodemailer
smtpConfig:{
host: "smtp.mxhichina.com",
host: "smtp.aliyun.com",
port: 465,
secure: true,
auth: {
Expand Down
3 changes: 2 additions & 1 deletion core/services/app-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ proto.getAppDetailInfo = function (appInfo, currentUid) {
return _.get(item, 'name');
}),

name: appInfo.get('name')
name: appInfo.get('name'),
id: appInfo.get('id')
});
});
};

0 comments on commit ff07696

Please sign in to comment.