Skip to content

Commit

Permalink
Merge pull request #185 from shankari/release_v150
Browse files Browse the repository at this point in the history
Bump up version number + fix list of invalid users
  • Loading branch information
shankari authored Nov 15, 2016
2 parents 8828618 + 96bfa7c commit 48762e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions config.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<widget id="edu.berkeley.eecs.emission"
version="1.4.1"
android-versionCode="18"
ios-CFBundleVersion="18"
version="1.5.0"
android-versionCode="19"
ios-CFBundleVersion="19"
xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>emission</name>
<description>
Expand Down
3 changes: 2 additions & 1 deletion www/js/goals.js
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,8 @@ angular.module('emission.main.goals',['emission.services', 'emission.plugin.logg
console.log("Sucessfully got all the users");
var allUsers = response.data;
var ignoreList = ['Superb Girl','Test-em-mri','Test_em-mr','Test_berkeley',
'Abcdef','admin','Ucb.sdb.android.3','Ucb.sdb.android.1','Test', 'Test100'];
'Abcdef','admin','Ucb.sdb.android.3','Ucb.sdb.android.1','Test', 'Test100',
"Em Jr. #4", "Em jr#3", "Em_MR_2", 'MpoOR', 'QH9Ht', 'ZLsYA', 'Fe5Be', "UHJR8"];
users = allUsers.filter(function(obj) {
return ignoreList.indexOf(obj.profile.name) === -1;
});
Expand Down

0 comments on commit 48762e7

Please sign in to comment.