-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f20dd4d
commit 661be19
Showing
6 changed files
with
58 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,6 @@ | ||
# v1.7.0+1.21.2 | ||
|
||
Hey Wiki now supports BoB! | ||
# v1.7.1+1.21.3 | ||
|
||
## Changes | ||
|
||
- Ported to 1.21.2. Please report any issues you may have! | ||
- Now supports searching the AE2 guide | ||
|
||
### APIs | ||
|
||
- Now supports the `search_provider` field for wikis | ||
- Values can be `mediawiki` and `algolia` | ||
- All wikis that support autocompleted search should fill this field | ||
- If the field is not filled, and both `search_url` and `mw_api_url` are present, the search will default to `mediawiki`. However, this is deprecated and will be removed in v2 | ||
- `search_url` is now optional for wikis that supports search, as long as they have `search_provider` field filled | ||
- Added Agolia search support | ||
- This requires you to configure the following fields in the `algolia` object: | ||
- `api_url` | ||
- `index_name` | ||
- `api_key` | ||
- `app_id` | ||
- New wiki: [Endertech Infinity Wiki](https://endertechinfinity.wiki.gg/) | ||
- New wiki: [Marvel Superheroes Mod Wiki](https://marvelsuperheroesmod.wiki.gg/) |
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
22 changes: 22 additions & 0 deletions
22
common/src/main/resources/assets/heywiki/wiki_family/endertechinf.json
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,22 @@ | ||
{ | ||
"namespace": [ | ||
"endertechinf" | ||
], | ||
"wikis": [ | ||
{ | ||
"article_url": "https://endertechinfinity.wiki.gg/?search=%s", | ||
"mw_api_url": "https://endertechinfinity.wiki.gg/api.php", | ||
"random_article": "Special:RandomPage", | ||
"excerpt": "text_extracts", | ||
"search_provider": "mediawiki", | ||
"search_url": "https://endertechinfinity.wiki.gg/?search=%s", | ||
"language": { | ||
"wiki_language": "en", | ||
"main": true, | ||
"default": "en_us", | ||
"regex": "^en_.*", | ||
"exclude": null | ||
} | ||
} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
common/src/main/resources/assets/heywiki/wiki_family/marvel.json
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,22 @@ | ||
{ | ||
"namespace": [ | ||
"marvel" | ||
], | ||
"wikis": [ | ||
{ | ||
"article_url": "https://marvelsuperheroesmod.wiki.gg/?search=%s", | ||
"mw_api_url": "https://marvelsuperheroesmod.wiki.gg/api.php", | ||
"random_article": "Special:RandomPage", | ||
"excerpt": "text_extracts", | ||
"search_provider": "mediawiki", | ||
"search_url": "https://marvelsuperheroesmod.wiki.gg/?search=%s", | ||
"language": { | ||
"wiki_language": "en", | ||
"main": true, | ||
"default": "en_us", | ||
"regex": "^en_.*", | ||
"exclude": null | ||
} | ||
} | ||
] | ||
} |
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