-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2699 from RaiderIO/development
Release v11.9.7 - Even more heatmap changes
- Loading branch information
Showing
21 changed files
with
187 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"id": 273, | ||
"release_changelog_id": 280, | ||
"version": "v11.9.7", | ||
"title": "Even more heatmap changes", | ||
"backup_db": 1, | ||
"silent": 1, | ||
"spotlight": 0, | ||
"released": 0, | ||
"created_at": "2025-01-31T15:55:25+00:00", | ||
"updated_at": "2025-01-31T15:55:25+00:00", | ||
"changelog": { | ||
"id": 280, | ||
"release_id": 273, | ||
"description": null, | ||
"changes": [ | ||
{ | ||
"release_changelog_id": 280, | ||
"release_changelog_category_id": 13, | ||
"ticket_id": 2697, | ||
"change": "You can now pass a defaultZoom to the explore embeds." | ||
}, | ||
{ | ||
"release_changelog_id": 280, | ||
"release_changelog_category_id": 13, | ||
"ticket_id": 2660, | ||
"change": "Specialization filters now once again support multiple specs at once" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'us' => 'Americas', | ||
'eu' => 'Europe', | ||
'cn' => 'China', | ||
'tw' => 'Taiwan', | ||
'kr' => 'Korea', | ||
|
||
'us' => 'Americas', | ||
'eu' => 'Europe', | ||
'cn' => 'China', | ||
'tw' => 'Taiwan', | ||
'kr' => 'Korea', | ||
'world' => 'World', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
resources/assets/js/custom/inline/common/search/filters/filterradioregion.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
class SearchFilterRadioRegion extends SearchFilterRadio { | ||
getFilterHeaderText() { | ||
return lang.get('messages.filter_input_region_header') | ||
.replace(':value', lang.get(`gameserverregions.${this.getValue()}`)); | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
resources/assets/js/custom/inline/common/search/filters/filterselect.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
class SearchFilterSelect extends SearchFilter { | ||
/** | ||
* | ||
* @returns {Array} | ||
*/ | ||
getValue() { | ||
return $(`${this.selector}`).val(); | ||
} | ||
|
||
/** | ||
* | ||
* @param value {string} | ||
*/ | ||
setValue(value) { | ||
let split = value.split(','); | ||
|
||
$(`${this.selector}`).val(split); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.