Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reactmap",
"version": "1.3.5",
"version": "1.4.0",
"description": "React based frontend map.",
"main": "ReactMap.mjs",
"author": "TurtIeSocks <58572875+TurtIeSocks@users.noreply.github.com>",
Expand Down
22 changes: 18 additions & 4 deletions server/src/configs/custom-environment-variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -315,10 +315,6 @@
"__name": "MAP_MISC_ENABLE_MAP_JS_FILTER",
"__format": "boolean"
},
"questRewardTypeFilters": {
"__name": "MAP_MISC_QUEST_REWARD_TYPE_FILTERS",
"__format": "boolean"
},
"fetchLatestInvasions": {
"__name": "MAP_MISC_FETCH_LATEST_INVASIONS",
"__format": "boolean"
Expand Down Expand Up @@ -820,6 +816,24 @@
"__name": "DEFAULT_FILTERS_POKESTOPS_STARDUST_ENABLED",
"__format": "boolean"
}
},
"xp": {
"min": {
"__name": "DEFAULT_FILTERS_POKESTOPS_XP_MIN",
"__format": "number"
},
"max": {
"__name": "DEFAULT_FILTERS_POKESTOPS_XP_MAX",
"__format": "number"
},
"interval": {
"__name": "DEFAULT_FILTERS_POKESTOPS_XP_INTERVAL",
"__format": "number"
},
"enabled": {
"__name": "DEFAULT_FILTERS_POKESTOPS_XP_ENABLED",
"__format": "boolean"
}
}
},
"pokemon": {
Expand Down
7 changes: 6 additions & 1 deletion server/src/configs/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@
},
"misc": {
"enableMapJsFilter": true,
"questRewardTypeFilters": false,
"fetchLatestInvasions": true,
"invasionCacheHrs": 1,
"masterfileCacheHrs": 6,
Expand Down Expand Up @@ -388,6 +387,12 @@
"max": 2000,
"interval": 100,
"enabled": true
},
"xp": {
"min": 100,
"max": 1000,
"interval": 100,
"enabled": true
}
},
"pokemon": {
Expand Down
1 change: 1 addition & 0 deletions server/src/graphql/mapTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ module.exports = gql`
item_amount: Int
candy_pokemon_id: Int
candy_amount: Int
xp_amount: Int
with_ar: Boolean
quest_title: String
quest_target: Int
Expand Down
1 change: 1 addition & 0 deletions server/src/graphql/scannerTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ module.exports = gql`
candy_amount: Int
xl_candy_pokemon_id: Int
xl_candy_amount: Int
xp_amount: Int
with_ar: Boolean
key: String
}
Expand Down
Loading