Skip to content

Commit

Permalink
Merge pull request #812 from oceanzus/redesign_patchnotedate
Browse files Browse the repository at this point in the history
Adds date version was tagged to json format.
  • Loading branch information
oceanzus authored Jan 17, 2017
2 parents 141e73e + 75eb0c7 commit f4ab343
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ooiui/static/js/partials/PatchNotes.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<h3> Version Number: <%= VersionNumber %> </h3>
</div>
<div class="Description">
<h4> Patch Notes </h4>
<h4> Patch Notes (<%= VersionDate %>)</h4>
<% _.each(VersionDescription, function(description){%>
<li>
-<%= description %>
Expand Down
2 changes: 1 addition & 1 deletion ooiui/static/js/views/common/PatchNotes.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ var PatchNoteView = Backbone.View.extend({
$(self.el).append(patchNoteTemplate);
}, self);
return this;
},
}
});
14 changes: 7 additions & 7 deletions ooiui/static/json/uFramePatchNotes.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[
{
"VersionNumber":"1.2.1",
"VersionDate":"2017-01-17",
"VersionDescription":[
"Added author to annotations. (11715)",
"Removed cruiseIdentifier from Cruise event and parser. (11701)",
"Created new interface for event selection, reducing amount of data returned and removing direct association of event with asset. (11688)"
]
]
},

{
"VersionNumber":"1.1.3",
"VersionDate":"2016-12-09",
"VersionDescription":[
"Removed CruiseInfo cruiseIdentifer. (11701)",
"Disconnected events collection from the associated asset. (11688)",
Expand All @@ -28,11 +29,11 @@
"Added ReferenceDesignator to subsite/metadata query response. (11347)",
"Created tools to manage preload data; visualize stream parameters and automated loading of changes. (11382)",
"Added limit for total number of jobs per user. (11439)"
]
]
},

{
"VersionNumber":"1.1.2",
"VersionDate":"2016-10-24",
"VersionDescription":[
"Corrected two-dimensional calibration data. (11370)",
"Preload information is now stored in an internal database. (11199)",
Expand All @@ -41,7 +42,6 @@
"Added support to query deployment events from the asset ID. (11222)",
"Removed restriction for length of annotation text. (11455)",
"Fixed an issue that caused editing of an asset to fail. (11431)"
]
]
}
]

]
3 changes: 3 additions & 0 deletions ooiui/static/json/uiPatchNotes.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[
{
"VersionNumber":"1.3.0",
"VersionDate":"2017-01-17",
"VersionDescription":[
"Plotting: Download plot image scaling problem fixed. (10821)",
"Plotting: Data zoom with dynamic refresh implemented. (8865)",
Expand Down Expand Up @@ -37,6 +38,7 @@
},
{
"VersionNumber":"1.2.0",
"VersionDate":"2016-12-12",
"VersionDescription":[
"Adds New Feature: Status UI Functionality.",
"Additional parameters and instruments added to data catalog filters.",
Expand All @@ -54,6 +56,7 @@
},
{
"VersionNumber":"1.1.0",
"VersionDate":"2016-10-28",
"VersionDescription":[
"Adds patch note capabilities.",
"Interim fix of latitude/longitudes being shown as -1, -1 for all assets.",
Expand Down

0 comments on commit f4ab343

Please sign in to comment.