Skip to content
This repository was archived by the owner on Apr 13, 2023. It is now read-only.

Commit 89cbe4c

Browse files
author
Matt Karl
committed
Fixed an issue with the order of the releases by status
1 parent 403ead3 commit 89cbe4c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/models/release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ ReleaseSchema.statics.getByGame = function(slug, options, callback)
226226
var select = options.multi ? Release.find(query) : Release.findOne(query);
227227

228228
// Make sure the the latest are always first
229-
select.sort('-updated');
229+
select.sort('-created');
230230

231231
select
232232
.select('version url capabilities commitId game -_id')

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SpringRollConnect",
3-
"version": "1.1.9",
3+
"version": "1.1.10",
44
"dependencies": {
55
"jquery": "*",
66
"bootstrap": "*",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.9",
2+
"version": "1.1.10",
33
"private": true,
44
"devDependencies": {
55
"grunt": "^0.4.5",

project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SpringRollConnect",
3-
"version": "1.1.9",
3+
"version": "1.1.10",
44
"main": [
55
"src/plugins/*.js",
66
"src/widgets/*.js",

0 commit comments

Comments
 (0)