Skip to content

Commit 1b6180a

Browse files
committed
version bump
1 parent a3f6072 commit 1b6180a

8 files changed

+8
-8
lines changed

app/scripts/dimApp.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ if (typeof window.onerror == "object") {
188188

189189
_gaq.push([
190190
'errorTracker._trackEvent',
191-
'DIM - Chrome Extension - v3.1.13.2',
191+
'DIM - Chrome Extension - v3.1.13.3',
192192
exceptionDescription,
193193
' @ ' + url + ':' + lineNumber + ':' + columnNumber,
194194
0,

app/scripts/services/dimItemBucketDefinitions.factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
function ItemBucketDefinitions($q, $timeout, $http) {
1010
var deferred = $q.defer();
1111

12-
$http.get('scripts/api-manifest/buckets.json?v=3.1.13.2')
12+
$http.get('scripts/api-manifest/buckets.json?v=3.1.13.3')
1313
.success(function(data) {
1414
deferred.resolve(data);
1515
})

app/scripts/services/dimItemDefinitions.factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
function ItemDefinitions($q, $timeout, $http) {
1010
var deferred = $q.defer();
1111

12-
$http.get('scripts/api-manifest/items.json?v=3.1.13.2')
12+
$http.get('scripts/api-manifest/items.json?v=3.1.13.3')
1313
.success(function(data) {
1414
deferred.resolve(data);
1515
})

app/scripts/services/dimObjectiveDefinitions.factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
function ObjectiveDefinitions($q, $timeout, $http) {
1010
var deferred = $q.defer();
1111

12-
$http.get('scripts/api-manifest/objectives.json?v=3.1.13.2')
12+
$http.get('scripts/api-manifest/objectives.json?v=3.1.13.3')
1313
.success(function(data) {
1414
deferred.resolve(data);
1515
})

app/scripts/services/dimSandboxPerkDefinitions.factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
function dimSandboxPerkDefinitions($q, $http) {
1010
var deferred = $q.defer();
1111

12-
$http.get('scripts/api-manifest/perks.json?v=3.1.13.2')
12+
$http.get('scripts/api-manifest/perks.json?v=3.1.13.3')
1313
.then(function(data) {
1414
deferred.resolve(data);
1515
},

app/scripts/services/dimStatDefinitions.factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
function StatDefinitions($q, $timeout, $http) {
1010
var deferred = $q.defer();
1111

12-
$http.get('scripts/api-manifest/stats.json?v=3.1.13.2')
12+
$http.get('scripts/api-manifest/stats.json?v=3.1.13.3')
1313
.success(function(data) {
1414
deferred.resolve(data);
1515
})

app/scripts/services/dimTalentDefinitions.factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
function TalentDefinitions($q, $timeout, $http) {
1010
var deferred = $q.defer();
1111

12-
$http.get('scripts/api-manifest/talent.json?v=3.1.13.2')
12+
$http.get('scripts/api-manifest/talent.json?v=3.1.13.3')
1313
.then(function(data) {
1414
deferred.resolve(data);
1515
},

app/views/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div dim-about dim-click-anywhere-but-here="app.closeLoadoutPopup()">
22
<h1 class="orange">About Destiny Item Manager (DIM)</h1>
3-
<h3>Version 3.1.13.2</h3>
3+
<h3>Version 3.1.13.3</h3>
44
<p>
55
DIM is built upon the same services used by Bungie.net and the Destiny Companion App. DIM can access the items within your Guardians inventory and the Vault for both PlayStation and Xbox, if you have played on either platforms.
66
</p>

0 commit comments

Comments
 (0)