Skip to content

Commit 2f3df67

Browse files
committed
Getting ready for 4.0.1 release
* Added change log, starts at 4.0.0 release
1 parent c9bcc89 commit 2f3df67

File tree

3 files changed

+28
-8
lines changed

3 files changed

+28
-8
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file.
3+
Adheres to [Semantic Versioning](http://semver.org/).
4+
5+
---
6+
7+
## 4.0.2 (TBD)
8+
9+
* TBD
10+
11+
## [4.0.1](https://github.com/ngageoint/mage-server/releases/tag/v4.0.1) (02-26-2016)
12+
13+
* You can now add users directly to an event
14+
* Events can be marked as complete. Complete events will not be returned for the default events route.
15+
16+
## [4.0.0](https://github.com/ngageoint/mage-server/releases/tag/v4.0.0) (02-03-2016)
17+
18+
* Google oauth support
19+
20+
* Standard Format Overlay has tile to retrieve implementation

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "MAGE",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Geospatial situation awareness application",
55
"keywords": [
66
"NGA",
@@ -27,8 +27,8 @@
2727
"express": "4.10.6",
2828
"fs-extra": "0.11.x",
2929
"gm": "1.17.x",
30-
"jade": "^1.11.0",
31-
"json2csv": "^2.2.1",
30+
"jade": "1.11.0",
31+
"json2csv": "2.2.1",
3232
"json2csv-stream": "0.1.2",
3333
"jszip": "2.5.0",
3434
"method-override": "1.0.x",
@@ -40,13 +40,13 @@
4040
"optimist": "0.3.x",
4141
"passport": "0.1.x",
4242
"passport-anonymous": "1.0.1",
43-
"passport-google-oauth": "^0.2.0",
43+
"passport-google-oauth": "0.2.0",
4444
"passport-http-bearer": "0.2.x",
4545
"passport-local": "1.0.0",
4646
"request": "2.51.x",
4747
"terraformer": "1.0.4",
4848
"terraformer-arcgis-parser": "1.0.4",
49-
"togeojson": "~0.3.0",
49+
"togeojson": "0.3.0",
5050
"walk": "2.3.4",
5151
"winston": "1.0.1",
5252
"xmldom": "0.1.19",
@@ -80,5 +80,5 @@
8080
},
8181
"bundleDependencies": [],
8282
"private": true,
83-
"main": "mage.js"
83+
"main": "app.js"
8484
}

public/app/admin/events/event.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ <h2>
5555
<div class="card-content">
5656
<strong class="text-primary">Complete event</strong>
5757
<p class="text-primary">Marking an event as complete will remove it as a selectable event. The event is not destroyed and can be changed back to an active state at any time.</p>
58-
<button class="btn btn-primary top-gap" ng-click="completeEvent(event)"> <i class="fa fa-check-square-o"></i> Complete</button>
58+
<button class="btn btn-primary top-gap" ng-click="completeEvent(event)">Complete</button>
5959
</div>
6060
</div>
6161

6262
<div class="card" ng-if="event.complete">
6363
<div class="card-content">
6464
<strong class="text-primary">Activate event</strong>
6565
<p class="text-primary">Marking an event as active will show it as a selectable event on clients. At that point users can contribute observations and locations to the event.</p>
66-
<button class="btn btn-primary top-gap" ng-click="activateEvent(event)"> <i class="fa fa-minus-square-o"></i> Activate</button>
66+
<button class="btn btn-primary top-gap" ng-click="activateEvent(event)">Activate</button>
6767
</div>
6868
</div>
6969

0 commit comments

Comments
 (0)