Skip to content

Commit

Permalink
3.4.3 ready
Browse files Browse the repository at this point in the history
  • Loading branch information
dasilva333 committed Oct 15, 2015
1 parent 026b496 commit df495b5
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tower-ghost-builder",
"version": "3.4.2",
"version": "3.4.3",
"description": "",
"main": "update_definitions.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Tower Ghost for Destiny",
"version": "3.4.2",
"version": "3.4.3",
"description": "Formerly known as DIV. This app allows you to transfer items between profiles, with various filters.",
"icons": {
"16": "www/assets/icon16.png",
Expand Down
2 changes: 1 addition & 1 deletion package_firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "This app allows you to transfer items between profiles, with various filters.",
"author": "Richard Pinedo",
"license": "MPL 2.0",
"version": "3.4.2",
"version": "3.4.3",
"permissions": {
"cross-domain-content": [
"https://www.bungie.net"
Expand Down
2 changes: 1 addition & 1 deletion package_nw.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "This app allows you to transfer items between profiles, with various filters.",
"author": "Richard Pinedo",
"license": "MPL 2.0",
"version": "3.4.2",
"version": "3.4.3",
"icon": "icon.png",
"main": "www\\index.html",
"window": {
Expand Down
2 changes: 1 addition & 1 deletion www/config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.richardpinedo.towerghostfordestiny" versionCode="3420" version="3.4.2" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<widget id="com.richardpinedo.towerghostfordestiny" versionCode="3430" version="3.4.3" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name>Tower Ghost for Destiny</name>
<description>
Formerly known as DIV. This app allows you to transfer items between profiles, with various filters.
Expand Down
6 changes: 3 additions & 3 deletions www/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion www/js/Profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ Profile.prototype = {
candidates = _.filter(items, function(item) {
return item.bucketType == bucket && item.equipRequiredLevel <= character.level() && item.canEquip === true && (
(item.classType != 3 && tgd.DestinyClass[item.classType] == character.classType()) || (item.classType == 3 && item.armorIndex > -1 && item.typeName.indexOf(character.classType()) > -1) || (item.weaponIndex > -1)
) && ((type == "All" && item.armorIndex > -1) || type != "All")
) && ((type == "All" && item.armorIndex > -1) || type != "All");
});
//console.log("bucket: " + bucket);
//console.log(candidates);
Expand Down
2 changes: 1 addition & 1 deletion www/js/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tgd.version = "3.4.2";
tgd.version = "3.4.3";

0 comments on commit df495b5

Please sign in to comment.