♻️ 使用更加简约的方法生成mcbbsnews的推送,修改测试用例 (#170)

* change(mcbbsnews):使用更加简约的方法生成mcbbsnews的推送,修改测试用例

test(mcbbsnews):添加测试函数小工具

change(mcbbsnews):优化代码

test(mcbbsnews):调整测试

test(mcbbsnews):完善细节部分

fix(mcbbsnews):修改traceback的import位置

test fix(mcbbsnews):删除错误传参

* fix(mcbbsnews): 更新过时的category名称

feat(platform): 添加新的异常(CategoryNotRecognize), 用以区别已知但不支持的category(CategoryNotSupport)和未知的新增category(CategoryNotRecognize)

chore: 为各处的CategoryNotRecognize和CategoryNotSupport添加异常描述

test(mcbbsnews): 更新测试用文件的过时category名称
This commit is contained in:
AzideCupric 2023-02-05 17:00:11 +08:00 committed by felinae98
parent 15e8dca5f8
commit 7fa31b6060
No known key found for this signature in database
GPG Key ID: 00C8B010587FF610
31 changed files with 343 additions and 13010 deletions

View File

@ -8,7 +8,7 @@ from nonebot.plugin import require
from ..post import Post
from ..types import Category, RawPost, Target
from ..utils.scheduler_config import SchedulerConfig
from .platform import CategoryNotSupport, NewMessage, StatusChange
from .platform import CategoryNotRecognize, NewMessage, StatusChange
class ArknightsSchedConf(SchedulerConfig):
@ -79,7 +79,7 @@ class Arknights(NewMessage):
elif pic := soup.find("img", class_="banner-image"):
pics.append(pic["src"]) # type: ignore
else:
raise CategoryNotSupport()
raise CategoryNotRecognize("未找到可渲染部分")
return Post(
"arknights",
text=text,

View File

@ -12,7 +12,7 @@ from typing_extensions import Self
from ..post import Post
from ..types import ApiError, Category, RawPost, Tag, Target
from ..utils import SchedulerConfig
from .platform import CategoryNotSupport, NewMessage, StatusChange
from .platform import CategoryNotRecognize, CategoryNotSupport, NewMessage, StatusChange
class BilibiliSchedConf(SchedulerConfig):
@ -121,7 +121,7 @@ class Bilibili(NewMessage):
elif post_type == 1:
# 转发
return Category(5)
raise CategoryNotSupport()
raise CategoryNotRecognize(post_type)
def get_category(self, post: RawPost) -> Category:
post_type = post["desc"]["type"]
@ -153,7 +153,7 @@ class Bilibili(NewMessage):
text = card["item"]["content"]
pic = []
else:
raise CategoryNotSupport()
raise CategoryNotSupport(post_type)
return text, pic
async def parse(self, raw_post: RawPost) -> Post:

View File

@ -1,290 +1,190 @@
import re
import time
from typing import Literal, Optional
import traceback
from typing import Literal
import httpx
from bs4 import BeautifulSoup, NavigableString, Tag
from bs4 import BeautifulSoup, Tag
from httpx import AsyncClient
from nonebot.plugin import require
from ..plugin_config import plugin_config
from ..post import Post
from ..types import Category, RawPost, Target
from ..utils import scheduler
from .platform import CategoryNotSupport, NewMessage
from ..utils import SchedulerConfig, http_client
from .platform import CategoryNotRecognize, CategoryNotSupport, NewMessage
def _format_text(rawtext: str, mode: int) -> str:
"""处理BeautifulSoup生成的string中奇怪的回车+连续空格
mode 0:处理标题
mode 1:处理版本资讯类推文
mode 2:处理快讯类推文"""
match mode:
case 0:
ftext = re.sub(r"\n\s*", " ", rawtext)
case 1:
ftext = re.sub(r"[\n\s*]", "", rawtext)
case 2:
ftext = re.sub(r"\r\n", "", rawtext)
return ftext
def _stamp_date(rawdate: str) -> int:
"""将时间转化为时间戳yyyy-mm-dd->timestamp"""
time_stamp = int(time.mktime(time.strptime(rawdate, "%Y-%m-%d")))
return time_stamp
class McbbsnewsSchedConf(SchedulerConfig):
name = "mcbbsnews"
schedule_type = "interval"
schedule_setting = {"minutes": 30}
class McbbsNews(NewMessage):
categories = {1: "Java版本资讯", 2: "基岩版本资讯", 3: "快讯", 4: "基岩快讯", 5: "周边消息"}
enable_tag = False
platform_name = "mcbbsnews"
name = "MCBBS幻翼块讯"
enabled = True
is_common = False
scheduler = scheduler("interval", {"hours": 1})
has_target = False
categories: dict[int, str] = {
1: "Java版资讯",
2: "基岩版资讯",
3: "块讯",
4: "基岩块讯",
5: "周边",
6: "主机",
7: "时评",
}
enable_tag: bool = False
platform_name: str = "mcbbsnews"
name: str = "MCBBS幻翼块讯"
enabled: bool = True
is_common: bool = False
scheduler = McbbsnewsSchedConf
has_target: bool = False
_known_cats: dict[int, str] = {
1: "Java版资讯",
2: "基岩版资讯",
3: "块讯",
4: "基岩块讯",
5: "周边",
6: "主机",
7: "时评",
}
@classmethod
async def get_target_name(
cls, client: AsyncClient, target: Target
) -> Optional[str]:
async def get_target_name(cls, client: AsyncClient, target: Target) -> str:
return cls.name
async def get_sub_list(self, _: Target) -> list[RawPost]:
url = "https://www.mcbbs.net/forum-news-1.html"
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) "
"Chrome/51.0.2704.63 Safari/537.36"
}
url: str = "https://www.mcbbs.net/forum-news-1.html"
async with httpx.AsyncClient() as client:
html = await client.get(url, headers=headers)
soup = BeautifulSoup(html.text, "html.parser")
raw_post_list = soup.find_all(
"tbody", id=re.compile(r"normalthread_[0-9]*")
)
post_list = self._gen_post_list(raw_post_list)
html = await self.client.get(url)
soup = BeautifulSoup(html.text, "html.parser")
raw_post_list = soup.find_all("tbody", id=re.compile(r"normalthread_[0-9]*"))
post_list = self._gen_post_list(raw_post_list)
return post_list
@staticmethod
def _format_text(rawtext: str, mode: int) -> str:
"""处理BeautifulSoup生成的string中奇怪的回车+连续空格
mode 0:处理标题
mode 1:处理版本资讯类推文
mode 2:处理快讯类推文"""
if mode == 0:
ftext = re.sub(r"\n\s*", " ", rawtext)
elif mode == 1:
ftext = re.sub(r"[\n\s*]", "", rawtext)
elif mode == 2:
ftext = re.sub(r"\r\n", "", rawtext)
else:
raise NotImplementedError
return ftext
@staticmethod
def _stamp_date(rawdate: str) -> int:
"""将时间转化为时间戳yyyy-mm-dd->timestamp"""
time_stamp = int(time.mktime(time.strptime(rawdate, "%Y-%m-%d")))
return time_stamp
def _gen_post_list(self, raw_post_list) -> list[RawPost]:
def _gen_post_list(self, raw_post_list: list[Tag]) -> list[RawPost]:
"""解析生成推文列表"""
post_list = []
for raw_post in raw_post_list:
post = {}
post["url"] = raw_post.find("a", class_="s xst")["href"]
post["title"] = self._format_text(
raw_post.find("a", class_="s xst").string, 0
)
url_tag = raw_post.find("a", class_="s xst")
if isinstance(url_tag, Tag):
post["url"] = url_tag.get("href")
title_tag = raw_post.find("a", class_="s xst")
if isinstance(title_tag, Tag):
title_string = title_tag.string
if isinstance(title_string, str):
post["title"] = self._format_text(title_string, "title")
post["category"] = raw_post.select("th em a")[0].string
post["author"] = raw_post.select("td:nth-of-type(2) cite a")[0].string
post["id"] = raw_post["id"]
rawdate = (
raw_date = (
raw_post.select("td:nth-of-type(2) em span span")[0]["title"]
if raw_post.select("td:nth-of-type(2) em span span")
else raw_post.select("td:nth-of-type(2) em span")[0].string
)
post["date"] = self._stamp_date(rawdate)
if isinstance(raw_date, str):
post["date"] = self._stamp_date(raw_date)
post_list.append(post)
return post_list
@staticmethod
def _format_text(raw_text: str, mode: str) -> str:
"""
处理BeautifulSoup生成的string中奇怪的回车+连续空格
参数:
title: 处理标题
"""
match mode:
case "title":
ftext = re.sub(r"\n\s*", " ", raw_text)
case _:
raise NotImplementedError("不支持的处理模式: {mode}")
return ftext
@staticmethod
def _stamp_date(raw_date: str) -> int:
"""
将时间转化为时间戳:
yyyy-mm-dd -> timestamp
"""
time_stamp = int(time.mktime(time.strptime(raw_date, "%Y-%m-%d")))
return time_stamp
def get_id(self, post: RawPost) -> str:
return post["id"]
def get_date(self, post: RawPost) -> int:
def get_date(self, _: RawPost) -> int | None:
# 获取datetime精度只到日期故暂时舍弃
# return post["date"]
return None
def get_category(self, post: RawPost) -> Category:
if post["category"] == "Java版本资讯":
return Category(1)
elif post["category"] == "基岩版本资讯":
return Category(2)
categoty_name = post["category"]
category_keys = list(self.categories.keys())
category_values = list(self.categories.values())
known_category_values = list(self._known_cats.values())
if categoty_name in category_values:
category_id = category_keys[category_values.index(categoty_name)]
elif categoty_name in known_category_values:
raise CategoryNotSupport("McbbsNews订阅暂不支持 {}".format(categoty_name))
else:
raise CategoryNotSupport("McbbsNews订阅暂不支持 `{}".format(post["category"]))
raise CategoryNotRecognize("Mcbbsnews订阅尚未识别 {}".format(categoty_name))
return category_id
@staticmethod
def _check_str_chinese(check_str: str) -> bool:
"""检测字符串是否含有中文(有一个就算)"""
for ch in check_str:
if "\u4e00" <= ch <= "\u9fff":
return True
return False
async def parse(self, post: RawPost) -> Post:
"""获取并分配正式推文交由相应的函数渲染"""
post_url = "https://www.mcbbs.net/{}".format(post["url"])
async with http_client() as client:
html = await client.get(post_url)
html.raise_for_status()
def _news_parser(self, raw_text: str, news_type: Literal["Java版本资讯", "基岩版本资讯"]):
"""提取Java/Bedrock版本资讯的推送消息"""
raw_soup = BeautifulSoup(raw_text.replace("<br />", ""), "html.parser")
# 获取头图
if news_type == "Java版本资讯":
# 获取头图
pic_tag = raw_soup.find(
"img", file=re.compile(r"https://www.minecraft.net/\S*header.jpg")
)
pic_url: list[str] = (
[pic_tag.get("src", pic_tag.get("file"))] if pic_tag else []
)
# 获取blockquote标签下的内容
soup = raw_soup.find(
"td", id=re.compile(r"postmessage_[0-9]*")
).blockquote.blockquote
elif news_type == "基岩版本资讯":
# 获取头图
pic_tag_0 = raw_soup.find(
"img", file=re.compile(r"https://www.minecraft.net/\S*header.jpg")
)
pic_tag_1 = raw_soup.find(
"img",
file=re.compile(r"https://feedback.minecraft.net/\S*beta\S*.jpg"),
)
pic_url: list[str] = [
pic_tag_0.get("src", pic_tag_0.get("file")) if pic_tag_0 else None,
pic_tag_1.get("src", pic_tag_1.get("file")) if pic_tag_1 else None,
]
# 获取blockquote标签下的内容
soup = (
raw_soup.find("td", id=re.compile(r"postmessage_[0-9]*"))
.select("blockquote:nth-of-type(2)")[0]
.blockquote
)
soup = BeautifulSoup(html.text, "html.parser")
post_body = soup.find("td", id=re.compile(r"postmessage_[0-9]*"))
if isinstance(post_body, Tag):
post_id = post_body.attrs.get("id")
else:
raise CategoryNotSupport(f"该函数不支持处理{news_type}")
# 通用步骤
# 删除无用的div和span段内容
for del_tag in soup.find_all(["div", "span"]):
del_tag.extract()
# 进一步删除无用尾部
# orig_info=soup.select("blockquote > strong")
# orig_info[0].extract()
# 展开所有的a,u和strong标签,展开ul,font标签里的font标签
for unwrap_tag in soup.find_all(["a", "strong", "u", "ul", "font"]):
if unwrap_tag.name in ["a", "strong", "u"]: # 展开所有的a,u和strong标签
unwrap_tag.unwrap()
elif unwrap_tag.name in ["ul", "font"]: # 展开ul,font里的font标签
for font_tag in unwrap_tag.find_all("font"):
font_tag.unwrap()
# 获取所有的中文句子
post_text = ""
last_is_empty_line = True
for element in soup.contents:
if isinstance(element, Tag):
if element.name == "font":
text = ""
for sub in element.contents:
if isinstance(sub, NavigableString):
text += sub
if self._check_str_chinese(text):
post_text += "{}\n".format(self._format_text(text, 1))
last_is_empty_line = False
elif element.name == "ul":
for li_tag in element.find_all("li"):
text = ""
for sub in li_tag.contents:
if isinstance(sub, NavigableString):
text += sub
if self._check_str_chinese(text):
post_text += "{}\n".format(self._format_text(text, 1))
last_is_empty_line = False
else:
continue
elif isinstance(element, NavigableString):
if str(element) == "\n":
if not last_is_empty_line:
post_text += "\n"
last_is_empty_line = True
else:
post_text += "{}\n".format(self._format_text(element, 1))
last_is_empty_line = False
else:
continue
return post_text, pic_url
def _express_parser(self, raw_text: str, news_type: Literal["快讯", "基岩快讯", "周边消息"]):
"""提取快讯/基岩快讯/周边消息的推送消息"""
raw_soup = BeautifulSoup(raw_text.replace("<br />", ""), "html.parser")
# 获取原始推文内容
soup = raw_soup.find("td", id=re.compile(r"postmessage_[0-9]*"))
if tag := soup.find("ignore_js_op"):
tag.extract()
# 获取所有图片
pic_urls = []
for img_tag in soup.find_all("img"):
pic_url = img_tag.get("file") or img_tag.get("src")
pic_urls.append(pic_url)
# 验证是否有blockquote标签
has_bolockquote = soup.find("blockquote")
# 删除无用的span,div段内容
for del_tag in soup.find_all("i"):
del_tag.extract()
if extag := soup.find(class_="attach_nopermission attach_tips"):
extag.extract()
# 展开所有的a,strong标签
for unwrap_tag in soup.find_all(["a", "strong"]):
unwrap_tag.unwrap()
# 展开blockquote标签里的blockquote标签
for b_tag in soup.find_all("blockquote"):
for unwrap_tag in b_tag.find_all("blockquote"):
unwrap_tag.unwrap()
# 获取推文
text = ""
if has_bolockquote:
for post in soup.find_all("blockquote"):
# post.font.unwrap()
for string in post.stripped_strings:
text += "{}\n".format(string)
else:
for string in soup.stripped_strings:
text += "{}\n".format(string)
ftext = self._format_text(text, 2)
return ftext, pic_urls
async def parse(self, raw_post: RawPost) -> Post:
"""获取并分配正式推文交由相应的函数解析"""
post_url = "https://www.mcbbs.net/{}".format(raw_post["url"])
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) "
"Chrome/51.0.2704.63 Safari/537.36"
}
async with httpx.AsyncClient() as client:
html = await client.get(post_url, headers=headers)
if raw_post["category"] in ["Java版本资讯", "基岩版本资讯"]:
# 事先删除不需要的尾部
raw_text = re.sub(r"【本文排版借助了:[\s\S]*】", "", html.text)
text, pic_urls = self._news_parser(raw_text, raw_post["category"])
elif raw_post["category"] in ["快讯", "基岩快讯", "周边消息"]:
text, pic_urls = self._express_parser(html.text, raw_post["category"])
else:
raise CategoryNotSupport("McbbsNews订阅暂不支持 `{}".format(raw_post["category"]))
post_id = None
pics = await self._news_render(post_url, f"#{post_id}")
return Post(
self.name,
text="{}\n\n{}".format(raw_post["title"], text),
text="{}\n\n└由 {} 发表".format(post["title"], post["author"]),
url=post_url,
pics=pic_urls,
target_name=raw_post["category"],
pics=list(pics),
target_name=post["category"],
)
async def _news_render(self, url: str, selector: str) -> list[bytes]:
"""
将给定的url网页的指定CSS选择器部分渲染成图片
注意
一般而言每条新闻的长度都很可观图片生成时间比较喜人
"""
require("nonebot_plugin_htmlrender")
from nonebot_plugin_htmlrender import capture_element, text_to_pic
try:
assert url
pic_data = await capture_element(
url,
selector,
viewport={"width": 1000, "height": 6400},
device_scale_factor=3,
)
assert pic_data
except:
err_pic0 = await text_to_pic("错误发生!")
err_pic1 = await text_to_pic(traceback.format_exc())
return [err_pic0, err_pic1]
else:
return [pic_data]

View File

@ -18,7 +18,11 @@ from ..utils import ProcessContext, SchedulerConfig
class CategoryNotSupport(Exception):
"raise in get_category, when post category is not supported"
"raise in get_category, when you know the category of the post but don't want to support it or don't support its parsing yet"
class CategoryNotRecognize(Exception):
"raise in get_category, when you don't know the category of post"
class RegistryMeta(type):
@ -181,8 +185,9 @@ class Platform(metaclass=PlatformABCMeta, base=True):
if cats and cat not in cats:
continue
if self.enable_tag and tags:
if self.is_banned_post(
self.get_tags(raw_post), *self.tag_separator(tags)
raw_post_tags = self.get_tags(raw_post)
if isinstance(raw_post_tags, Collection) and self.is_banned_post(
raw_post_tags, *self.tag_separator(tags)
):
continue
res.append(raw_post)
@ -255,7 +260,11 @@ class MessageProcess(Platform, abstract=True):
continue
try:
self.get_category(raw_post)
except CategoryNotSupport:
except CategoryNotSupport as e:
logger.info("未支持解析的推文类别:" + repr(e) + ",忽略")
continue
except CategoryNotRecognize as e:
logger.warning("未知推文类别:" + repr(e))
msgs = self.ctx.gen_req_records()
for m in msgs:
logger.warning(m)

View File

@ -2,7 +2,7 @@
{
"url": "thread-1340080-1-1.html",
"title": "Mojang Status服务器出现一些小问题",
"category": "讯",
"category": "讯",
"author": "DreamVoid",
"id": "normalthread_1340080",
"date": 1652630400
@ -10,7 +10,7 @@
{
"url": "thread-1339940-1-1.html",
"title": "kinbdogz 就近期荒野更新的风波发表看法",
"category": "讯",
"category": "讯",
"author": "卡狗",
"id": "normalthread_1339940",
"date": 1652630400
@ -18,7 +18,7 @@
{
"url": "thread-1339097-1-1.html",
"title": "Minecraft 基岩版 1.18.33 发布(仅 Switch",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "电量量",
"id": "normalthread_1339097",
"date": 1652457600
@ -26,7 +26,7 @@
{
"url": "thread-1338607-1-1.html",
"title": "Minecraft Java版 22w19a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "寂华",
"id": "normalthread_1338607",
"date": 1652371200
@ -34,7 +34,7 @@
{
"url": "thread-1338592-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.32/33 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "苦力怕553",
"id": "normalthread_1338592",
"date": 1652371200
@ -50,7 +50,7 @@
{
"url": "thread-1338496-1-1.html",
"title": "slicedlime周三无快照推迟至周四",
"category": "讯",
"category": "讯",
"author": "橄榄Chan",
"id": "normalthread_1338496",
"date": 1652198400
@ -58,7 +58,7 @@
{
"url": "thread-1336371-1-1.html",
"title": "Minecraft 基岩版 1.18.32 发布(仅 Android、NS【新增 NS 平台】",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "电量量",
"id": "normalthread_1336371",
"date": 1651766400
@ -66,7 +66,7 @@
{
"url": "thread-1335897-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.30/31 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "AzureZeng",
"id": "normalthread_1335897",
"date": 1651680000
@ -74,7 +74,7 @@
{
"url": "thread-1335891-1-1.html",
"title": "Minecraft Java版 22w18a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "Aurora_Feather",
"id": "normalthread_1335891",
"date": 1651680000
@ -82,7 +82,7 @@
{
"url": "thread-1333196-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.28/29 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "希铁石z",
"id": "normalthread_1333196",
"date": 1651161600
@ -90,7 +90,7 @@
{
"url": "thread-1332834-1-1.html",
"title": "Minecraft 基岩版 1.18.31 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "希铁石z",
"id": "normalthread_1332834",
"date": 1651075200
@ -98,7 +98,7 @@
{
"url": "thread-1332811-1-1.html",
"title": "Minecraft Java版 22w17a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "卡狗",
"id": "normalthread_1332811",
"date": 1651075200
@ -106,7 +106,7 @@
{
"url": "thread-1332424-1-1.html",
"title": "Mojang Status正在寻找1.18.30更新问题的解决方案",
"category": "基岩讯",
"category": "基岩讯",
"author": "ArmorRush",
"id": "normalthread_1332424",
"date": 1650988800
@ -114,7 +114,7 @@
{
"url": "thread-1329712-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.26/27 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "ArmorRush",
"id": "normalthread_1329712",
"date": 1650470400
@ -122,7 +122,7 @@
{
"url": "thread-1329651-1-1.html",
"title": "Minecraft Java版 22w16b 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "卡狗",
"id": "normalthread_1329651",
"date": 1650470400
@ -130,7 +130,7 @@
{
"url": "thread-1329644-1-1.html",
"title": "Minecraft Java版 22w16a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "希铁石z",
"id": "normalthread_1329644",
"date": 1650470400
@ -138,7 +138,7 @@
{
"url": "thread-1329335-1-1.html",
"title": "Minecraft 基岩版 1.18.30 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "ArmorRush",
"id": "normalthread_1329335",
"date": 1650384000
@ -146,7 +146,7 @@
{
"url": "thread-1328892-1-1.html",
"title": "“海王” 杰森·莫玛 有望主演《我的世界》大电影",
"category": "讯",
"category": "讯",
"author": "广药",
"id": "normalthread_1328892",
"date": 1650297600
@ -154,7 +154,7 @@
{
"url": "thread-1327089-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.24/25 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "ArmorRush",
"id": "normalthread_1327089",
"date": 1649952000
@ -162,7 +162,7 @@
{
"url": "thread-1326640-1-1.html",
"title": "Minecraft Java版 22w15a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "ArmorRush",
"id": "normalthread_1326640",
"date": 1649865600
@ -170,7 +170,7 @@
{
"url": "thread-1323762-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.20 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "ArmorRush",
"id": "normalthread_1323762",
"date": 1649260800
@ -178,7 +178,7 @@
{
"url": "thread-1323662-1-1.html",
"title": "Minecraft Java版 22w14a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "卡狗",
"id": "normalthread_1323662",
"date": 1649260800
@ -186,7 +186,7 @@
{
"url": "thread-1321419-1-1.html",
"title": "[愚人节] Minecraft Java版 22w13oneBlockAtATime 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "希铁石z",
"id": "normalthread_1321419",
"date": 1648742400
@ -194,7 +194,7 @@
{
"url": "thread-1320986-1-1.html",
"title": "Minecraft近期没有为主机平台添加光线追踪的计划",
"category": "基岩讯",
"category": "基岩讯",
"author": "ArmorRush",
"id": "normalthread_1320986",
"date": 1648742400
@ -202,7 +202,7 @@
{
"url": "thread-1320931-1-1.html",
"title": "Minecraft Java版 22w13a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "卡狗",
"id": "normalthread_1320931",
"date": 1648742400
@ -210,7 +210,7 @@
{
"url": "thread-1342236-1-1.html",
"title": "Minecraft: 加入Microsoft Rewards赢取限量Xbox Series S",
"category": "周边消息",
"category": "周边",
"author": "ETW_Derp",
"id": "normalthread_1342236",
"date": 1648742400

View File

@ -2,7 +2,7 @@
{
"url": "thread-1340927-1-1.html",
"title": "Minecraft Java版 1.19-pre1 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "希铁石z",
"id": "normalthread_1340927",
"date": 1652889600
@ -10,7 +10,7 @@
{
"url": "thread-1340080-1-1.html",
"title": "Mojang Status服务器出现一些小问题",
"category": "讯",
"category": "讯",
"author": "DreamVoid",
"id": "normalthread_1340080",
"date": 1652630400
@ -18,7 +18,7 @@
{
"url": "thread-1339940-1-1.html",
"title": "kinbdogz 就近期荒野更新的风波发表看法",
"category": "讯",
"category": "讯",
"author": "卡狗",
"id": "normalthread_1339940",
"date": 1652630400
@ -26,7 +26,7 @@
{
"url": "thread-1339097-1-1.html",
"title": "Minecraft 基岩版 1.18.33 发布(仅 Switch",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "电量量",
"id": "normalthread_1339097",
"date": 1652457600
@ -34,7 +34,7 @@
{
"url": "thread-1338607-1-1.html",
"title": "Minecraft Java版 22w19a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "寂华",
"id": "normalthread_1338607",
"date": 1652371200
@ -42,7 +42,7 @@
{
"url": "thread-1338592-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.32/33 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "苦力怕553",
"id": "normalthread_1338592",
"date": 1652371200
@ -58,7 +58,7 @@
{
"url": "thread-1338496-1-1.html",
"title": "slicedlime周三无快照推迟至周四",
"category": "讯",
"category": "讯",
"author": "橄榄Chan",
"id": "normalthread_1338496",
"date": 1652198400
@ -66,7 +66,7 @@
{
"url": "thread-1336371-1-1.html",
"title": "Minecraft 基岩版 1.18.32 发布(仅 Android、NS【新增 NS 平台】",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "电量量",
"id": "normalthread_1336371",
"date": 1651766400
@ -74,7 +74,7 @@
{
"url": "thread-1335897-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.30/31 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "AzureZeng",
"id": "normalthread_1335897",
"date": 1651680000
@ -82,7 +82,7 @@
{
"url": "thread-1335891-1-1.html",
"title": "Minecraft Java版 22w18a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "Aurora_Feather",
"id": "normalthread_1335891",
"date": 1651680000
@ -90,7 +90,7 @@
{
"url": "thread-1333196-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.28/29 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "希铁石z",
"id": "normalthread_1333196",
"date": 1651161600
@ -98,7 +98,7 @@
{
"url": "thread-1332834-1-1.html",
"title": "Minecraft 基岩版 1.18.31 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "希铁石z",
"id": "normalthread_1332834",
"date": 1651075200
@ -106,7 +106,7 @@
{
"url": "thread-1332811-1-1.html",
"title": "Minecraft Java版 22w17a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "卡狗",
"id": "normalthread_1332811",
"date": 1651075200
@ -114,7 +114,7 @@
{
"url": "thread-1332424-1-1.html",
"title": "Mojang Status正在寻找1.18.30更新问题的解决方案",
"category": "基岩讯",
"category": "基岩讯",
"author": "ArmorRush",
"id": "normalthread_1332424",
"date": 1650988800
@ -122,7 +122,7 @@
{
"url": "thread-1329712-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.26/27 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "ArmorRush",
"id": "normalthread_1329712",
"date": 1650470400
@ -130,7 +130,7 @@
{
"url": "thread-1329651-1-1.html",
"title": "Minecraft Java版 22w16b 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "卡狗",
"id": "normalthread_1329651",
"date": 1650470400
@ -138,7 +138,7 @@
{
"url": "thread-1329644-1-1.html",
"title": "Minecraft Java版 22w16a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "希铁石z",
"id": "normalthread_1329644",
"date": 1650470400
@ -146,7 +146,7 @@
{
"url": "thread-1329335-1-1.html",
"title": "Minecraft 基岩版 1.18.30 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "ArmorRush",
"id": "normalthread_1329335",
"date": 1650384000
@ -154,7 +154,7 @@
{
"url": "thread-1328892-1-1.html",
"title": "“海王” 杰森·莫玛 有望主演《我的世界》大电影",
"category": "讯",
"category": "讯",
"author": "广药",
"id": "normalthread_1328892",
"date": 1650297600
@ -162,7 +162,7 @@
{
"url": "thread-1327089-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.24/25 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "ArmorRush",
"id": "normalthread_1327089",
"date": 1649952000
@ -170,7 +170,7 @@
{
"url": "thread-1326640-1-1.html",
"title": "Minecraft Java版 22w15a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "ArmorRush",
"id": "normalthread_1326640",
"date": 1649865600
@ -178,7 +178,7 @@
{
"url": "thread-1323762-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.20 发布",
"category": "基岩版资讯",
"category": "基岩版资讯",
"author": "ArmorRush",
"id": "normalthread_1323762",
"date": 1649260800
@ -186,7 +186,7 @@
{
"url": "thread-1323662-1-1.html",
"title": "Minecraft Java版 22w14a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "卡狗",
"id": "normalthread_1323662",
"date": 1649260800
@ -194,7 +194,7 @@
{
"url": "thread-1321419-1-1.html",
"title": "[愚人节] Minecraft Java版 22w13oneBlockAtATime 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "希铁石z",
"id": "normalthread_1321419",
"date": 1648742400
@ -202,7 +202,7 @@
{
"url": "thread-1320986-1-1.html",
"title": "Minecraft近期没有为主机平台添加光线追踪的计划",
"category": "基岩讯",
"category": "基岩讯",
"author": "ArmorRush",
"id": "normalthread_1320986",
"date": 1648742400
@ -210,7 +210,7 @@
{
"url": "thread-1320931-1-1.html",
"title": "Minecraft Java版 22w13a 发布",
"category": "Java版资讯",
"category": "Java版资讯",
"author": "卡狗",
"id": "normalthread_1320931",
"date": 1648742400

View File

@ -815,7 +815,7 @@ top.window.location.href = 'member.php?mod=logging&amp;action=logout&amp;formhas
</div>
<h1 class="ts">
<a href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=2401">
[基岩讯]
[基岩讯]
</a>
<span id="thread_subject">
Mojang Status正在寻找1.18.30更新问题的解决方案

View File

@ -577,7 +577,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3cdc69
</div>
<h1 class="ts">
<a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=2400">[基岩版资讯]</a>
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=2400">[基岩版资讯]</a>
<span id="thread_subject">Minecraft 基岩版 Beta &amp; Preview 1.19.0.32/33
发布</span>
</h1>

View File

@ -585,7 +585,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3cdc69
</div>
<h1 class="ts">
<a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=204">[Java版资讯]</a>
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=204">[Java版资讯]</a>
<span id="thread_subject">Minecraft Java版 22w19a 发布</span>
</h1>
<span class="xg1">

View File

@ -396,7 +396,7 @@ function attach_download_ctrl(obj) {
<a href="forum.php?mod=redirect&amp;goto=nextnewset&amp;tid=1342236" title="下一主题"><img src="template/mcbbs/image/thread-next.png" alt="下一主题" class="vm" /></a>
</div>
<h1 class="ts">
<a href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=286">[周边消息]</a>
<a href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=286">[周边]</a>
<span id="thread_subject">Minecraft: 加入Microsoft Rewards赢取限量Xbox Series S</span>
</h1>
<span class="xg1">

View File

@ -479,7 +479,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<div align="center">
<font size="2">
<font color="Black">本版用于 Mojang
及其作品的<strong>官方</strong>相关资讯,官网非讯类博文请发到<a
及其作品的<strong>官方</strong>相关资讯,官网非讯类博文请发到<a
href="https://www.mcbbs.net/forum.php?mod=forumdisplay&amp;fid=1015&amp;page=1"
target="_blank">
<font color="DarkRed">识海漫谈</font>
@ -641,13 +641,13 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=285">公告<span
class="xg1 num">27</span></a></li>
<li><a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯<span
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯<span
class="xg1 num">617</span></a></li>
<li><a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=207"><span
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=207"><span
class="xg1 num">1416</span></a></li>
<li><a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=286">周边消息<span
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=286">周边<span
class="xg1 num">763</span></a></li>
<li><a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=1899">主机资讯<span
@ -656,10 +656,10 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=2382">时评<span
class="xg1 num">13</span></a></li>
<li><a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯<span
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯<span
class="xg1 num">495</span></a></li>
<li><a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=2401">基岩<span
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=2401">基岩<span
class="xg1 num">832</span></a></li>
</ul>
<script type="text/javascript">showTypes('thread_types');</script>
@ -844,7 +844,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1279926', 'stickthread_1279926');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1279926-1-1.html"
style="font-weight: bold;color: #EE1B2E;"
onclick="atarget(this)" class="s xst">Minecraft 1.18
@ -938,7 +938,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1340080', 'normalthread_1340080');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
<a href="thread-1340080-1-1.html" style="color: #EC1282;"
onclick="atarget(this)" class="s xst">已恢复Mojang
Status服务器出现一些小问题</a>
@ -984,7 +984,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1339940', 'normalthread_1339940');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
<a href="thread-1339940-1-1.html" style="color: #EC1282;"
onclick="atarget(this)" class="s xst">kinbdogz
就近期荒野更新的风波发表看法</a>
@ -1026,7 +1026,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1339097', 'normalthread_1339097');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1339097-1-1.html"
style="font-weight: bold;color: #EE1B2E;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版
@ -1073,7 +1073,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1338607', 'normalthread_1338607');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1338607-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w19a 发布</a>
@ -1121,7 +1121,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1338592', 'normalthread_1338592');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1338592-1-1.html"
style="font-weight: bold;color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta
@ -1218,7 +1218,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1338496', 'normalthread_1338496');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
<a href="thread-1338496-1-1.html" style="color: #EC1282;"
onclick="atarget(this)"
class="s xst">slicedlime周三无快照推迟至周四</a>
@ -1259,7 +1259,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1336371', 'normalthread_1336371');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1336371-1-1.html"
style="font-weight: bold;color: #EE1B2E;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版
@ -1307,7 +1307,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1335897', 'normalthread_1335897');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1335897-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta
&amp; Preview 1.19.0.30/31 发布</a>
@ -1350,7 +1350,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1335891', 'normalthread_1335891');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1335891-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w18a 发布</a>
@ -1394,7 +1394,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1333196', 'normalthread_1333196');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1333196-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta
&amp; Preview 1.19.0.28/29 发布</a>
@ -1435,7 +1435,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1332834', 'normalthread_1332834');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1332834-1-1.html"
style="font-weight: bold;color: #EE1B2E;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版
@ -1482,7 +1482,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1332811', 'normalthread_1332811');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1332811-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w17a 发布</a>
@ -1528,7 +1528,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1332424', 'normalthread_1332424');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2401">基岩</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2401">基岩</a>]</em>
<a href="thread-1332424-1-1.html" style="color: #EC1282;"
onclick="atarget(this)" class="s xst">Mojang
Status正在寻找1.18.30更新问题的解决方案</a>
@ -1567,7 +1567,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1329712', 'normalthread_1329712');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1329712-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta
&amp; Preview 1.19.0.26/27 发布</a>
@ -1610,7 +1610,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1329651', 'normalthread_1329651');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1329651-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w16b 发布</a>
@ -1653,7 +1653,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1329644', 'normalthread_1329644');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1329644-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w16a 发布</a>
@ -1698,7 +1698,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1329335', 'normalthread_1329335');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1329335-1-1.html" style="color: #EE1B2E;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版
1.18.30 发布</a>
@ -1741,7 +1741,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1328892', 'normalthread_1328892');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
<a href="thread-1328892-1-1.html" style="color: #2B65B7;"
onclick="atarget(this)" class="s xst">“海王” 杰森·莫玛
有望主演《我的世界》大电影</a>
@ -1786,7 +1786,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1327089', 'normalthread_1327089');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1327089-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta
&amp; Preview 1.19.0.24/25 发布</a>
@ -1830,7 +1830,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1326640', 'normalthread_1326640');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1326640-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w15a 发布</a>
@ -1877,7 +1877,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1323762', 'normalthread_1323762');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1323762-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta
&amp; Preview 1.19.0.20 发布</a>
@ -1921,7 +1921,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1323662', 'normalthread_1323662');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1323662-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w14a 发布</a>
@ -1964,7 +1964,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1321419', 'normalthread_1321419');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1321419-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">[愚人节] Minecraft
Java版 22w13oneBlockAtATime 发布</a>
@ -2011,7 +2011,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1320986', 'normalthread_1320986');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2401">基岩</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2401">基岩</a>]</em>
<a href="thread-1320986-1-1.html" style="color: #EC1282;"
onclick="atarget(this)"
class="s xst">Minecraft近期没有为主机平台添加光线追踪的计划</a>
@ -2163,13 +2163,13 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<div class="ftid">
<select name="typeid" id="typeid_fast" width="80">
<option value="0" selected="selected">选择主题分类</option>
<option value="204">Java版资讯</option>
<option value="207"></option>
<option value="286">周边消息</option>
<option value="204">Java版资讯</option>
<option value="207"></option>
<option value="286">周边</option>
<option value="1899">主机资讯</option>
<option value="2382">时评</option>
<option value="2400">基岩版资讯</option>
<option value="2401">基岩</option>
<option value="2400">基岩版资讯</option>
<option value="2401">基岩</option>
</select>
</div>
<script type="text/javascript"

View File

@ -479,7 +479,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<div align="center">
<font size="2">
<font color="Black">本版用于 Mojang
及其作品的<strong>官方</strong>相关资讯,官网非讯类博文请发到<a
及其作品的<strong>官方</strong>相关资讯,官网非讯类博文请发到<a
href="https://www.mcbbs.net/forum.php?mod=forumdisplay&amp;fid=1015&amp;page=1"
target="_blank">
<font color="DarkRed">识海漫谈</font>
@ -641,13 +641,13 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=285">公告<span
class="xg1 num">27</span></a></li>
<li><a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯<span
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯<span
class="xg1 num">617</span></a></li>
<li><a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=207"><span
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=207"><span
class="xg1 num">1416</span></a></li>
<li><a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=286">周边消息<span
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=286">周边<span
class="xg1 num">763</span></a></li>
<li><a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=1899">主机资讯<span
@ -656,10 +656,10 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=2382">时评<span
class="xg1 num">13</span></a></li>
<li><a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯<span
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯<span
class="xg1 num">495</span></a></li>
<li><a
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=2401">基岩<span
href="forum.php?mod=forumdisplay&amp;fid=139&amp;filter=typeid&amp;typeid=2401">基岩<span
class="xg1 num">832</span></a></li>
</ul>
<script type="text/javascript">showTypes('thread_types');</script>
@ -844,7 +844,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1279926', 'stickthread_1279926');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1279926-1-1.html"
style="font-weight: bold;color: #EE1B2E;"
onclick="atarget(this)" class="s xst">Minecraft 1.18
@ -938,7 +938,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1340927', 'normalthread_1340927');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1340927-1-1.html"
style="font-weight: bold;color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
@ -987,7 +987,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1340080', 'normalthread_1340080');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
<a href="thread-1340080-1-1.html" style="color: #EC1282;"
onclick="atarget(this)" class="s xst">已恢复Mojang
Status服务器出现一些小问题</a>
@ -1033,7 +1033,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1339940', 'normalthread_1339940');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
<a href="thread-1339940-1-1.html" style="color: #EC1282;"
onclick="atarget(this)" class="s xst">kinbdogz
就近期荒野更新的风波发表看法</a>
@ -1075,7 +1075,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1339097', 'normalthread_1339097');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1339097-1-1.html"
style="font-weight: bold;color: #EE1B2E;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版
@ -1122,7 +1122,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1338607', 'normalthread_1338607');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1338607-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w19a 发布</a>
@ -1170,7 +1170,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1338592', 'normalthread_1338592');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1338592-1-1.html"
style="font-weight: bold;color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta
@ -1267,7 +1267,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1338496', 'normalthread_1338496');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
<a href="thread-1338496-1-1.html" style="color: #EC1282;"
onclick="atarget(this)"
class="s xst">slicedlime周三无快照推迟至周四</a>
@ -1308,7 +1308,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1336371', 'normalthread_1336371');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1336371-1-1.html"
style="font-weight: bold;color: #EE1B2E;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版
@ -1356,7 +1356,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1335897', 'normalthread_1335897');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1335897-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta
&amp; Preview 1.19.0.30/31 发布</a>
@ -1399,7 +1399,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1335891', 'normalthread_1335891');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1335891-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w18a 发布</a>
@ -1443,7 +1443,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1333196', 'normalthread_1333196');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1333196-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta
&amp; Preview 1.19.0.28/29 发布</a>
@ -1484,7 +1484,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1332834', 'normalthread_1332834');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1332834-1-1.html"
style="font-weight: bold;color: #EE1B2E;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版
@ -1531,7 +1531,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1332811', 'normalthread_1332811');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1332811-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w17a 发布</a>
@ -1577,7 +1577,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1332424', 'normalthread_1332424');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2401">基岩</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2401">基岩</a>]</em>
<a href="thread-1332424-1-1.html" style="color: #EC1282;"
onclick="atarget(this)" class="s xst">Mojang
Status正在寻找1.18.30更新问题的解决方案</a>
@ -1616,7 +1616,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1329712', 'normalthread_1329712');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1329712-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta
&amp; Preview 1.19.0.26/27 发布</a>
@ -1659,7 +1659,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1329651', 'normalthread_1329651');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1329651-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w16b 发布</a>
@ -1702,7 +1702,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1329644', 'normalthread_1329644');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1329644-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w16a 发布</a>
@ -1747,7 +1747,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1329335', 'normalthread_1329335');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1329335-1-1.html" style="color: #EE1B2E;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版
1.18.30 发布</a>
@ -1790,7 +1790,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1328892', 'normalthread_1328892');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=207"></a>]</em>
<a href="thread-1328892-1-1.html" style="color: #2B65B7;"
onclick="atarget(this)" class="s xst">“海王” 杰森·莫玛
有望主演《我的世界》大电影</a>
@ -1835,7 +1835,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1327089', 'normalthread_1327089');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1327089-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta
&amp; Preview 1.19.0.24/25 发布</a>
@ -1879,7 +1879,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1326640', 'normalthread_1326640');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1326640-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w15a 发布</a>
@ -1926,7 +1926,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1323762', 'normalthread_1323762');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2400">基岩版资讯</a>]</em>
<a href="thread-1323762-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta
&amp; Preview 1.19.0.20 发布</a>
@ -1970,7 +1970,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1323662', 'normalthread_1323662');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1323662-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">Minecraft Java版
22w14a 发布</a>
@ -2013,7 +2013,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1321419', 'normalthread_1321419');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=204">Java版资讯</a>]</em>
<a href="thread-1321419-1-1.html" style="color: #3C9D40;"
onclick="atarget(this)" class="s xst">[愚人节] Minecraft
Java版 22w13oneBlockAtATime 发布</a>
@ -2060,7 +2060,7 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<a class="tdpre y" href="javascript:void(0);"
onclick="previewThread('1320986', 'normalthread_1320986');">预览</a>
<em>[<a
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2401">基岩</a>]</em>
href="forum.php?mod=forumdisplay&fid=139&amp;filter=typeid&amp;typeid=2401">基岩</a>]</em>
<a href="thread-1320986-1-1.html" style="color: #EC1282;"
onclick="atarget(this)"
class="s xst">Minecraft近期没有为主机平台添加光线追踪的计划</a>
@ -2212,13 +2212,13 @@ top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a5
<div class="ftid">
<select name="typeid" id="typeid_fast" width="80">
<option value="0" selected="selected">选择主题分类</option>
<option value="204">Java版资讯</option>
<option value="207"></option>
<option value="286">周边消息</option>
<option value="204">Java版资讯</option>
<option value="207"></option>
<option value="286">周边</option>
<option value="1899">主机资讯</option>
<option value="2382">时评</option>
<option value="2400">基岩版资讯</option>
<option value="2401">基岩</option>
<option value="2400">基岩版资讯</option>
<option value="2401">基岩</option>
</select>
</div>
<script type="text/javascript"

View File

@ -1,12 +0,0 @@
Mojang Status正在寻找1.18.30更新问题的解决方案
Mojangstatus
@Mojangstatus
We are aware that the 1.18.30 update caused issues for some Bedrock players. We are actively looking into solutions and hope to have solutions out soon. Thank you for your patience! jhp
由 ArmorRush 翻译自 英文
我们注意到1.18.30版本的更新导致了一些基岩版玩家出现了(游戏中的)问题。我们正在积极寻找解决方案,并希望能尽快解决问题。感谢您的耐心等待! jhp
Twitter
· SPXX
2022年
4月27日
上午 7:41 · HipChat Villager

View File

@ -1,68 +0,0 @@
Minecraft 基岩版 Beta & Preview 1.19.0.32/33 发布
这里便是本周测试版的新内容啦一如往常的请搜索你能发现的bug
报告给我们,并在
这里
留下你的反馈。
MinecraftBeta
Windows平台上的MinecraftBeta将要退出历史舞台了如果想要继续体验我们先行版本上的新特性的话你将需要安装MinecraftPreview版本。你可以在这里
取得更多详细信息。
特性和漏洞修复
悦灵
现在悦灵不会随其主人一同被传送到下界了。这个更改将暂时保留至我们修复悦灵在传送至其他维度后卡进方块憋死的bug。(MCPE-155678)
方块
与自然生成的相对应,非自然生成的幽匿尖啸体现在将在多次激活间间隔一定的冷却时间(MCPE-153944)
使用精准采集破坏时,幽匿尖啸体和幽匿感测体将不再掉落经验值(MCPE-153359,MCPE-153965)
增加了破坏强化深板岩所需要的时间并使其与所使用的工具相独立以更好地与Java版相匹配(MCPE-154097)
幽匿块现在无法通过火和灵魂火传播了
红树沼泽
红树现在将在负Y维度的位置正确生长(MCPE-154983)
图像
修复了Android平台上图像崩坏的问题(MCPE-155509)
修复了多次使用表情符号引起的视觉故障问题(MCPE-155049)
移动
使用移动预测的Actor现在将再次被平滑传送
稳定性和性能
优化了某些Android设备上的游戏性能(MCPE-142934)
修复了一个尝试渲染依靠生物群系数据着色的方块时可能引起的崩溃
用户界面
现在按下Shift键并点击物品将再次能够将相同物品合并进同一槽位了(MCPE-153992)
添加了修改通知持续时间的设置项
技术性更新
方块
修复了复制一个命令方块到另一个后,需要再次切换红石信号才能使其生效的问题
Gametest框架(实验性游戏内容)
专用服务器已经更新,现在允许服务器在运行脚本时显式列出他们想要加载的脚本模块。默认配置文件位于/config/default/permissions.json。如果没有这个新文件默认情况下将禁用所有脚本模块
【苦力怕553译自
feedback.minecraft.net2022年5月12日发布的MinecraftBeta&Preview-1.19.0.32/33

View File

@ -1,14 +0,0 @@
Mojang Status服务器出现一些小问题
Mojang Status
@MojangStatus
Our services have returned to normal operations. Thank you for your patience. - Martin
由 DreamVoid 翻译自英语
我们的服务已恢复正常感谢你的耐心等待。——Martin
下午7:43 · 2022年5月16日 · HipChat Villager · SPX
Mojang Status
@MojangStatus
Some of our services are having issues with increased response times. We are looking into the issue. - Martin
由 DreamVoid 翻译自英语
我们的一些服务存在响应时间过长的问题。我们正在调查这个问题。——Martin
下午7:01 · 2022年5月16日 · Twitter Web App · SPX

View File

@ -1,68 +0,0 @@
Minecraft Java版 22w19a 发布
稀有的周四快照!除修复了一些错误以及对一些花里胡哨的标签和命令进行了更改以外,我们还引入了“聊天预览”作为对服务器动态样式的聊天消息进行加密的一种方式。针对这个快照,我们在
中保留了测试选项
,该选项可以用于测试的
选项一起设置为
。如果你对此感兴趣,尤其是如果你在开服务器的话,我们希望您对此提供反馈
玩的愉快!
22W19A的修改内容
监守者和铁傀儡现在只能在固体方块上生成
22W19A的技术性修改
服务器现在可以启用聊天预览,这会在聊天框上显示一个受服务器控制的预览
对locate和place命令的更改
PointofInteresttagsCHATPREVIEW聊天预览COMMANDS命令PLACETEMPLATEPLACE模板Theplacecommandcannowalsoplacetemplatesatagivenlocation.Syntax:placetemplate<template>[pos][rotation][mirror][integrity][-seed]seed前面没有-,加-只是因为不加会变成论坛表情place命令现在还可以将模板放置在指定位置。用法placetemplate<template>[pos][rotation][mirror][integrity][-seed]Parameters:参数:POINTOFINTERESTTYPES兴趣点类型FIXEDBUGSIN22W19A22W19A修复的漏洞【寂华、满床迷离译自官网2022年05月12日发布的MinecraftSnapshot22w19a原作者AdrianÖstergård】
服务器现在可以在server.properties中设置previews-chat=true来启用聊天预览
当它启动后,聊天框上将出现一个受服务器控制的预览界面,显示消息发送时的样子
服务器里可以使用这个功能来预览消息,例如表情和彩色聊天
聊天预览会在你输入聊天消息时,甚至是发送之前将其发送给服务器
然后服务器将实时返回带样式的预览
这允许服务器使用动态消息样式,同时仍允许对聊天进行安全签名
当你使用聊天预览进入服务器的时候,客户端上将显示一个警告窗口,但你可以在“聊天设置”中完全禁用这个窗口
动态聊天的的样式可以有服务器决定,这只在启用聊天预览启动后才会生效
玩家可以在“聊天设置”中启用“仅显示已签名的聊天”来始终显示原始签名的消息
添加了用于place命令的模板子命令
locate命令移动到了locatestructure,locatebiome移动到了locatebiome
添加了locatepoi<type:point_of_interest_type>
服务器现在还将在玩家连接后发送一个额外的图标和MOTD数据包
这允许设置enable-status=false的服务器给已上线的玩家设置图标和MOTD
placetemplate现在的使用方式类似于在UI中使用结构方块的加载按钮
template:需要加载和放置的模板“结构方块文件”命名空间ID
rotation:需要应用的旋转参数(如果省略,则不会选择)
mirror:需要应用的镜像参数(如果省略,则不会镜像)
integrity:结构完整性介于0和1之间
seed:当结构完整性小于1时用于随机补全的种子
移除了unemployed和nitwitpoint_of_interest_type标签
为所有没有职业的村民添加了point_of_interest_type/acquirable_job_site标签
为村庄中的兴趣点添加了point_of_interest_type/village标签
为蜜蜂的兴趣点添加了point_of_interest_type/bee_home标签
MC-197647-如果有一个方块在头顶在按住shift键时玩家无法从方块边缘跳下
MC-231600-在被红石充能的大型垂滴叶旁边时,幽匿感测体持续收到震动
MC-249130-蝌蚪会在邻近的方块内部孵化,导致他们窒息死亡
MC-249161-在睡莲下方时,青蛙会频繁地被卡住
MC-249634-监守者被分散注意力后仍会进行闻嗅动作
MC-249664-监守者在远离之后会被刷新掉
MC-249801-废弃矿井可以分割古代城市
MC-249888-监守者在被火球击中时不会被激怒
MC-249910-监守者的“迫近”音效未被使用
MC-249966-监守者可能停止追逐一个刚刚咆哮过的目标
MC-250172-监守者在发射音波时不会转向
MC-250233-通过刷怪蛋召唤的监守者会突然丢失AI
MC-250255-监守者的音波不会伤害末影龙,只会推开他
MC-250272-在方块中生成的监守者没有碰撞箱
MC-250353-监守者无法像其他怪物一样在一层雪上生成
MC-250357-幽匿感测体和监守者会探测到玩家举起盾牌的动作
MC-250948-监守者的攻击范围不会被游戏难度影响
MC-250966-监守者的声波造成的死亡不算监守者的击杀
MC-251029-监守者会停下并且取消与玩家的敌对状态
MC-251263-在打开一个单人游戏时会显示“Invalidsignatureforprofilepublickey”
MC-251316-游戏会在加载含有拼图方块的的区块时会崩溃
MC-251321-在生成时,监守者可以被爆炸推开
MC-251350-执行/give@sgoat_horn会给予玩家一个没有属性的山羊角
MC-251396java.lang.IllegalArgumentException:名字和身份识别号不可以同时是空的
MC-251464-中立生物在被监守者的声波打中时,他们不会因为恐慌而逃逸

View File

@ -1,78 +0,0 @@
Minecraft Java版 1.19-pre1 发布
1.19:荒野更新的第一个预发布版已发布!
这个版本之后的改动,应该都会是漏洞修复。因此,预发布版不会遵循普通快照周三发布的规律,所以请关注后续预发布版的消息;)
如同往常,我们对社区给予的反馈、漏洞报告和对快照提出的好主意表示衷心的感谢。迎接预发布版的到来吧!
1.19-pre1的修改内容
稍微下调了红树木沼泽中红树的生成数量
末影人骷髅凋灵骷髅和猪灵现在会在下界中更广的光照强度范围中生成从光照强度等级0到11
在开始或结束“使用”一个物品时,与物品交互会产生振动(例如弓、十字弩、山羊角、盾和食物)
现在潜行时与物品交互不会产生振动
在装备栏中装备非盔甲的物品(如南瓜和头颅)现在有单独的装备音效
1.19-pre1的技术性修改
自动补全现在可用于placetemplate的模板参数
自定义服务器现在可以通过发送新的网络数据包的方式以对特定客户端启用或禁用聊天预览
现在,聊天预览在聊天相关指令中也会展示。例如/say和/msg
test-rainbow-chat从server.properties中移除了
添加的游戏事件
note_block_play带有振动频率6
instrument_play带有振动频率15
1.19-pre1修复的漏洞
MC-94060-通过物品栏或发射器装备盔甲/鞘翅时不会播放声音
MC-134892-PacketBuffer.writeString以byte类型检查最大长度而readString按字符串长度检查
MC-209222-尝试打开MinecraftRealms菜单时会声称客户端已过时即使快照的版本比正式版更新
MC-210279-刷怪笼生成实体时,幽匿感测体不会激活
MC-213915-通过物品栏装备盔甲不被算作振动
MC-218222-幽匿感测体的距离值被限制为整数,从而导致某些值永远不会被输出
MC-225195-山羊在被它们喜爱的食物引诱时不会惊慌
MC-230735-“视场角效果”在设置中的描述不准确
MC-249141-青蛙行走时没有相应的字幕
MC-249164-声音名称entity.frog.tounge拼写错误
MC-249209-青蛙在被它们喜爱的食物引诱时不会惊慌
MC-249260-蝌蚪不会被黏液球引诱
MC-249328-青蛙被黏液球引诱时会跳来跳去
MC-249456-与其它幼年生物不同,蝌蚪死亡后会掉落经验
MC-249619-幽匿感测体在有实体压在正上方时发出的红石信号强度是它最后感受到声音的强度
MC-249711-物品被悦灵从地上捡起时会飞到比悦灵碰撞箱更高的位置
MC-249757-“它蔓延了”成就不是“怪物猎人”的子项
MC-249834-与玩家的副手交换物品时会产生振动
MC-249980-进度“生日快乐歌”的描述中有不正确的大小写
MC-250006-英国短毛猫的纹理名称与ID不匹配
MC-250019-当村民被僵尸转换为僵尸村民时,幽匿催化体会被触发
MC-250317-用桶装一只蝌蚪的字幕为通用的“桶:装满”字幕
MC-250351-/tp“参数”在Tab键选项中重复
MC-250919-当尝试加载包括由前一个输出字段中的大量字符组成的含有命令方块的区块时,服务器会崩溃
MC-250932-山羊角Goathorn的字幕未正确大小写
MC-250940-使用山羊角时不会检测为振动
MC-251132-服务器日志的“游戏测试服务器”消息
MC-251312-/say命令里的实体选择器不再被计算
MC-251355-红树胎生苗盆栽的模型不正确
MC-251405-结构方块的消息被当作聊天消息来格式化
MC-251479-语言文件里出现重复的键值对
MC-251550-无法在32位操作系统中启动游戏
MC-251640-在聊天消息中使用特殊字符时报错io.netty.handler.codec.EncoderException
MC-251641-与监守者发怒有关的游戏崩溃
MC-251647-如果打开聊天栏的按键绑定为Enter键则聊天栏会自动关闭
MC-251649-点击“命令不完整”提示后会移除输入框中的斜杠
MC-251650-铁傀儡可以在树叶、玻璃、海晶灯等非生成方块上生成
MC-251652-除非玩家先看见监守者,否则监守者的出现/咆哮/蓄力/掘地动画不会启动
MC-251656-不像/msg命令/say命令被命令方块、服务器控制台或RCON执行时应用服务器消息格式会失败
MC-251690-监守者可以在任何非完整的固体方块上生成
MC-251736-恶魂的火球在反弹后不能击中恶魂
MC-251762-使用两条斜杠作前缀时也可执行命令
MC-251773-数据生成器的--dev参数不再正确地将NBT转换为SNBT
【希铁石z译自
官网2022年05月18日发布的Minecraft1.19Pre-Release1
原作者AdrianÖstergård】

View File

@ -1,16 +0,0 @@
Minecraft: 加入Microsoft Rewards赢取限量Xbox Series S
Minecraft
@Minecraft
Here's one warden you'll want to awaken...
Join Microsoft Rewards and get a chance to win this exclusive Deep Dark Minecraft Xbox Series S!
https://www.microsoft.com/en-us/rewards/minecraft-xbox-series-s-sweeps?rtc=1&ocid=Wild_Update_soc_omc_min_tw_Link_no_
由 ETW_Derp 翻译自 英语
这里有一只等待你唤醒的监守者……
加入Microsoft Rewards你将有机会赢得这台
**
独一无二的“深暗之域”Minecraft主题Xbox Series S
https://www.microsoft.com/en-us/rewards/minecraft-xbox-series-s-sweeps?rtc=1&ocid=Wild_Update_soc_omc_min_tw_Link_no_
上午2:42 · 2022年5月21日

View File

@ -1,12 +0,0 @@
Mojang Status正在寻找1.18.30更新问题的解决方案
Mojangstatus
@Mojangstatus
We are aware that the 1.18.30 update caused issues for some Bedrock players. We are actively looking into solutions and hope to have solutions out soon. Thank you for your patience! jhp
由 ArmorRush 翻译自 英文
我们注意到1.18.30版本的更新导致了一些基岩版玩家出现了(游戏中的)问题。我们正在积极寻找解决方案,并希望能尽快解决问题。感谢您的耐心等待! jhp
Twitter
· SPXX
2022年
4月27日
上午 7:41 · HipChat Villager

View File

@ -1,62 +0,0 @@
Minecraft 基岩版 Beta & Preview 1.19.0.32/33 发布
这里便是本周测试版的新内容啦一如往常的请搜索你能发现的bug
报告给我们,并在
这里
留下你的反馈。
MinecraftBeta
Windows平台上的MinecraftBeta将要退出历史舞台了如果想要继续体验我们先行版本上的新特性的话你将需要安装MinecraftPreview版本。你可以在这里
取得更多详细信息。
特性和漏洞修复
悦灵
现在悦灵不会随其主人一同被传送到下界了。这个更改将暂时保留至我们修复悦灵在传送至其他维度后卡进方块憋死的bug。(MCPE-155678)
方块
与自然生成的相对应,非自然生成的幽匿尖啸体现在将在多次激活间间隔一定的冷却时间(MCPE-153944)
使用精准采集破坏时,幽匿尖啸体和幽匿感测体将不再掉落经验值(MCPE-153359,MCPE-153965)
增加了破坏强化深板岩所需要的时间并使其与所使用的工具相独立以更好地与Java版相匹配(MCPE-154097)
幽匿块现在无法通过火和灵魂火传播了
红树沼泽
红树现在将在负Y维度的位置正确生长(MCPE-154983)
图像
修复了Android平台上图像崩坏的问题(MCPE-155509)
修复了多次使用表情符号引起的视觉故障问题(MCPE-155049)
移动
使用移动预测的Actor现在将再次被平滑传送
稳定性和性能
优化了某些Android设备上的游戏性能(MCPE-142934)
修复了一个尝试渲染依靠生物群系数据着色的方块时可能引起的崩溃
用户界面
现在按下Shift键并点击物品将再次能够将相同物品合并进同一槽位了(MCPE-153992)
添加了修改通知持续时间的设置项
技术性更新
方块
修复了复制一个命令方块到另一个后,需要再次切换红石信号才能使其生效的问题
Gametest框架(实验性游戏内容)
专用服务器已经更新,现在允许服务器在运行脚本时显式列出他们想要加载的脚本模块。默认配置文件位于/config/default/permissions.json。如果没有这个新文件默认情况下将禁用所有脚本模块
【苦力怕553译自
feedback.minecraft.net2022年5月12日发布的MinecraftBeta&Preview-1.19.0.32/33

View File

@ -1,14 +0,0 @@
Mojang Status服务器出现一些小问题
Mojang Status
@MojangStatus
Our services have returned to normal operations. Thank you for your patience. - Martin
由 DreamVoid 翻译自英语
我们的服务已恢复正常感谢你的耐心等待。——Martin
下午7:43 · 2022年5月16日 · HipChat Villager · SPX
Mojang Status
@MojangStatus
Some of our services are having issues with increased response times. We are looking into the issue. - Martin
由 DreamVoid 翻译自英语
我们的一些服务存在响应时间过长的问题。我们正在调查这个问题。——Martin
下午7:01 · 2022年5月16日 · Twitter Web App · SPX

View File

@ -1,67 +0,0 @@
Minecraft Java版 22w19a 发布
稀有的周四快照!除修复了一些错误以及对一些花里胡哨的标签和命令进行了更改以外,我们还引入了“聊天预览”作为对服务器动态样式的聊天消息进行加密的一种方式。针对这个快照,我们在
中保留了测试选项
,该选项可以用于测试的
选项一起设置为
。如果你对此感兴趣,尤其是如果你在开服务器的话,我们希望您对此提供反馈
玩的愉快!
22W19A的修改内容
监守者和铁傀儡现在只能在固体方块上生成
22W19A的技术性修改
服务器现在可以启用聊天预览,这会在聊天框上显示一个受服务器控制的预览
对locate和place命令的更改
PointofInteresttagsCHATPREVIEW聊天预览COMMANDS命令PLACETEMPLATEPLACE模板Theplacecommandcannowalsoplacetemplatesatagivenlocation.Syntax:placetemplate<template>[pos][rotation][mirror][integrity][-seed]seed前面没有-,加-只是因为不加会变成论坛表情place命令现在还可以将模板放置在指定位置。用法placetemplate<template>[pos][rotation][mirror][integrity][-seed]Parameters:参数:POINTOFINTERESTTYPES兴趣点类型FIXEDBUGSIN22W19A22W19A修复的漏洞【寂华、满床迷离译自官网2022年05月12日发布的MinecraftSnapshot22w19a原作者AdrianÖstergård】
服务器现在可以在server.properties中设置previews-chat=true来启用聊天预览
当它启动后,聊天框上将出现一个受服务器控制的预览界面,显示消息发送时的样子
服务器里可以使用这个功能来预览消息,例如表情和彩色聊天
聊天预览会在你输入聊天消息时,甚至是发送之前将其发送给服务器
然后服务器将实时返回带样式的预览
这允许服务器使用动态消息样式,同时仍允许对聊天进行安全签名
当你使用聊天预览进入服务器的时候,客户端上将显示一个警告窗口,但你可以在“聊天设置”中完全禁用这个窗口
动态聊天的的样式可以有服务器决定,这只在启用聊天预览启动后才会生效
玩家可以在“聊天设置”中启用“仅显示已签名的聊天”来始终显示原始签名的消息
添加了用于place命令的模板子命令
locate命令移动到了locatestructure,locatebiome移动到了locatebiome
添加了locatepoi<type:point_of_interest_type>
服务器现在还将在玩家连接后发送一个额外的图标和MOTD数据包
这允许设置enable-status=false的服务器给已上线的玩家设置图标和MOTD
placetemplate现在的使用方式类似于在UI中使用结构方块的加载按钮
template:需要加载和放置的模板“结构方块文件”命名空间ID
rotation:需要应用的旋转参数(如果省略,则不会选择)
mirror:需要应用的镜像参数(如果省略,则不会镜像)
integrity:结构完整性介于0和1之间
seed:当结构完整性小于1时用于随机补全的种子
移除了unemployed和nitwitpoint_of_interest_type标签
为所有没有职业的村民添加了point_of_interest_type/acquirable_job_site标签
为村庄中的兴趣点添加了point_of_interest_type/village标签
为蜜蜂的兴趣点添加了point_of_interest_type/bee_home标签
MC-197647-如果有一个方块在头顶在按住shift键时玩家无法从方块边缘跳下
MC-231600-在被红石充能的大型垂滴叶旁边时,幽匿感测体持续收到震动
MC-249130-蝌蚪会在邻近的方块内部孵化,导致他们窒息死亡
MC-249161-在睡莲下方时,青蛙会频繁地被卡住
MC-249634-监守者被分散注意力后仍会进行闻嗅动作
MC-249664-监守者在远离之后会被刷新掉
MC-249801-废弃矿井可以分割古代城市
MC-249888-监守者在被火球击中时不会被激怒
MC-249910-监守者的“迫近”音效未被使用
MC-249966-监守者可能停止追逐一个刚刚咆哮过的目标
MC-250172-监守者在发射音波时不会转向
MC-250233-通过刷怪蛋召唤的监守者会突然丢失AI
MC-250255-监守者的音波不会伤害末影龙,只会推开他
MC-250272-在方块中生成的监守者没有碰撞箱
MC-250353-监守者无法像其他怪物一样在一层雪上生成
MC-250357-幽匿感测体和监守者会探测到玩家举起盾牌的动作
MC-250948-监守者的攻击范围不会被游戏难度影响
MC-250966-监守者的声波造成的死亡不算监守者的击杀
MC-251029-监守者会停下并且取消与玩家的敌对状态
MC-251263-在打开一个单人游戏时会显示“Invalidsignatureforprofilepublickey”
MC-251316-游戏会在加载含有拼图方块的的区块时会崩溃
MC-251321-在生成时,监守者可以被爆炸推开
MC-251350-执行/give@sgoat_horn会给予玩家一个没有属性的山羊角
MC-251396java.lang.IllegalArgumentException:名字和身份识别号不可以同时是空的
MC-251464-中立生物在被监守者的声波打中时,他们不会因为恐慌而逃逸

View File

@ -1,78 +0,0 @@
Minecraft Java版 1.19-pre1 发布
1.19:荒野更新的第一个预发布版已发布!
这个版本之后的改动,应该都会是漏洞修复。因此,预发布版不会遵循普通快照周三发布的规律,所以请关注后续预发布版的消息;)
如同往常,我们对社区给予的反馈、漏洞报告和对快照提出的好主意表示衷心的感谢。迎接预发布版的到来吧!
1.19-pre1的修改内容
稍微下调了红树木沼泽中红树的生成数量
末影人骷髅凋灵骷髅和猪灵现在会在下界中更广的光照强度范围中生成从光照强度等级0到11
在开始或结束“使用”一个物品时,与物品交互会产生振动(例如弓、十字弩、山羊角、盾和食物)
现在潜行时与物品交互不会产生振动
在装备栏中装备非盔甲的物品(如南瓜和头颅)现在有单独的装备音效
1.19-pre1的技术性修改
自动补全现在可用于placetemplate的模板参数
自定义服务器现在可以通过发送新的网络数据包的方式以对特定客户端启用或禁用聊天预览
现在,聊天预览在聊天相关指令中也会展示。例如/say和/msg
test-rainbow-chat从server.properties中移除了
添加的游戏事件
note_block_play带有振动频率6
instrument_play带有振动频率15
1.19-pre1修复的漏洞
MC-94060-通过物品栏或发射器装备盔甲/鞘翅时不会播放声音
MC-134892-PacketBuffer.writeString以byte类型检查最大长度而readString按字符串长度检查
MC-209222-尝试打开MinecraftRealms菜单时会声称客户端已过时即使快照的版本比正式版更新
MC-210279-刷怪笼生成实体时,幽匿感测体不会激活
MC-213915-通过物品栏装备盔甲不被算作振动
MC-218222-幽匿感测体的距离值被限制为整数,从而导致某些值永远不会被输出
MC-225195-山羊在被它们喜爱的食物引诱时不会惊慌
MC-230735-“视场角效果”在设置中的描述不准确
MC-249141-青蛙行走时没有相应的字幕
MC-249164-声音名称entity.frog.tounge拼写错误
MC-249209-青蛙在被它们喜爱的食物引诱时不会惊慌
MC-249260-蝌蚪不会被黏液球引诱
MC-249328-青蛙被黏液球引诱时会跳来跳去
MC-249456-与其它幼年生物不同,蝌蚪死亡后会掉落经验
MC-249619-幽匿感测体在有实体压在正上方时发出的红石信号强度是它最后感受到声音的强度
MC-249711-物品被悦灵从地上捡起时会飞到比悦灵碰撞箱更高的位置
MC-249757-“它蔓延了”成就不是“怪物猎人”的子项
MC-249834-与玩家的副手交换物品时会产生振动
MC-249980-进度“生日快乐歌”的描述中有不正确的大小写
MC-250006-英国短毛猫的纹理名称与ID不匹配
MC-250019-当村民被僵尸转换为僵尸村民时,幽匿催化体会被触发
MC-250317-用桶装一只蝌蚪的字幕为通用的“桶:装满”字幕
MC-250351-/tp“参数”在Tab键选项中重复
MC-250919-当尝试加载包括由前一个输出字段中的大量字符组成的含有命令方块的区块时,服务器会崩溃
MC-250932-山羊角Goathorn的字幕未正确大小写
MC-250940-使用山羊角时不会检测为振动
MC-251132-服务器日志的“游戏测试服务器”消息
MC-251312-/say命令里的实体选择器不再被计算
MC-251355-红树胎生苗盆栽的模型不正确
MC-251405-结构方块的消息被当作聊天消息来格式化
MC-251479-语言文件里出现重复的键值对
MC-251550-无法在32位操作系统中启动游戏
MC-251640-在聊天消息中使用特殊字符时报错io.netty.handler.codec.EncoderException
MC-251641-与监守者发怒有关的游戏崩溃
MC-251647-如果打开聊天栏的按键绑定为Enter键则聊天栏会自动关闭
MC-251649-点击“命令不完整”提示后会移除输入框中的斜杠
MC-251650-铁傀儡可以在树叶、玻璃、海晶灯等非生成方块上生成
MC-251652-除非玩家先看见监守者,否则监守者的出现/咆哮/蓄力/掘地动画不会启动
MC-251656-不像/msg命令/say命令被命令方块、服务器控制台或RCON执行时应用服务器消息格式会失败
MC-251690-监守者可以在任何非完整的固体方块上生成
MC-251736-恶魂的火球在反弹后不能击中恶魂
MC-251762-使用两条斜杠作前缀时也可执行命令
MC-251773-数据生成器的--dev参数不再正确地将NBT转换为SNBT
【希铁石z译自
官网2022年05月18日发布的Minecraft1.19Pre-Release1
原作者AdrianÖstergård】

View File

@ -1,12 +0,0 @@
Minecraft: 加入Microsoft Rewards赢取限量Xbox Series S
Minecraft
@Minecraft
Here's one warden you'll want to awaken...Join Microsoft Rewards and get a chance to win this exclusive Deep Dark Minecraft Xbox Series S!
https://www.microsoft.com/en-us/rewards/minecraft-xbox-series-s-sweeps?rtc=1&ocid=Wild_Update_soc_omc_min_tw_Link_no_
由 ETW_Derp 翻译自 英语
这里有一只等待你唤醒的监守者……加入Microsoft Rewards你将有机会赢得这台
**
独一无二的“深暗之域”Minecraft主题Xbox Series S
https://www.microsoft.com/en-us/rewards/minecraft-xbox-series-s-sweeps?rtc=1&ocid=Wild_Update_soc_omc_min_tw_Link_no_
上午2:42 · 2022年5月21日

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,218 +0,0 @@
[
{
"url": "thread-1340080-1-1.html",
"title": "Mojang Status服务器出现一些小问题",
"category": "快讯",
"author": "DreamVoid",
"id": "normalthread_1340080",
"date": 1652630400
},
{
"url": "thread-1339940-1-1.html",
"title": "kinbdogz 就近期荒野更新的风波发表看法",
"category": "快讯",
"author": "卡狗",
"id": "normalthread_1339940",
"date": 1652630400
},
{
"url": "thread-1339097-1-1.html",
"title": "Minecraft 基岩版 1.18.33 发布(仅 Switch",
"category": "基岩版本资讯",
"author": "电量量",
"id": "normalthread_1339097",
"date": 1652457600
},
{
"url": "thread-1338607-1-1.html",
"title": "Minecraft Java版 22w19a 发布",
"category": "Java版本资讯",
"author": "寂华",
"id": "normalthread_1338607",
"date": 1652371200
},
{
"url": "thread-1338592-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.32/33 发布",
"category": "基岩版本资讯",
"author": "苦力怕553",
"id": "normalthread_1338592",
"date": 1652371200
},
{
"url": "thread-1338588-1-1.html",
"title": "请给我们一个真正的“荒野更新”",
"category": "时评",
"author": "斯乌",
"id": "normalthread_1338588",
"date": 1652371200
},
{
"url": "thread-1338496-1-1.html",
"title": "slicedlime周三无快照推迟至周四",
"category": "快讯",
"author": "橄榄Chan",
"id": "normalthread_1338496",
"date": 1652198400
},
{
"url": "thread-1336371-1-1.html",
"title": "Minecraft 基岩版 1.18.32 发布(仅 Android、NS【新增 NS 平台】",
"category": "基岩版本资讯",
"author": "电量量",
"id": "normalthread_1336371",
"date": 1651766400
},
{
"url": "thread-1335897-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.30/31 发布",
"category": "基岩版本资讯",
"author": "AzureZeng",
"id": "normalthread_1335897",
"date": 1651680000
},
{
"url": "thread-1335891-1-1.html",
"title": "Minecraft Java版 22w18a 发布",
"category": "Java版本资讯",
"author": "Aurora_Feather",
"id": "normalthread_1335891",
"date": 1651680000
},
{
"url": "thread-1333196-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.28/29 发布",
"category": "基岩版本资讯",
"author": "希铁石z",
"id": "normalthread_1333196",
"date": 1651161600
},
{
"url": "thread-1332834-1-1.html",
"title": "Minecraft 基岩版 1.18.31 发布",
"category": "基岩版本资讯",
"author": "希铁石z",
"id": "normalthread_1332834",
"date": 1651075200
},
{
"url": "thread-1332811-1-1.html",
"title": "Minecraft Java版 22w17a 发布",
"category": "Java版本资讯",
"author": "卡狗",
"id": "normalthread_1332811",
"date": 1651075200
},
{
"url": "thread-1332424-1-1.html",
"title": "Mojang Status正在寻找1.18.30更新问题的解决方案",
"category": "基岩快讯",
"author": "ArmorRush",
"id": "normalthread_1332424",
"date": 1650988800
},
{
"url": "thread-1329712-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.26/27 发布",
"category": "基岩版本资讯",
"author": "ArmorRush",
"id": "normalthread_1329712",
"date": 1650470400
},
{
"url": "thread-1329651-1-1.html",
"title": "Minecraft Java版 22w16b 发布",
"category": "Java版本资讯",
"author": "卡狗",
"id": "normalthread_1329651",
"date": 1650470400
},
{
"url": "thread-1329644-1-1.html",
"title": "Minecraft Java版 22w16a 发布",
"category": "Java版本资讯",
"author": "希铁石z",
"id": "normalthread_1329644",
"date": 1650470400
},
{
"url": "thread-1329335-1-1.html",
"title": "Minecraft 基岩版 1.18.30 发布",
"category": "基岩版本资讯",
"author": "ArmorRush",
"id": "normalthread_1329335",
"date": 1650384000
},
{
"url": "thread-1328892-1-1.html",
"title": "“海王” 杰森·莫玛 有望主演《我的世界》大电影",
"category": "快讯",
"author": "广药",
"id": "normalthread_1328892",
"date": 1650297600
},
{
"url": "thread-1327089-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.24/25 发布",
"category": "基岩版本资讯",
"author": "ArmorRush",
"id": "normalthread_1327089",
"date": 1649952000
},
{
"url": "thread-1326640-1-1.html",
"title": "Minecraft Java版 22w15a 发布",
"category": "Java版本资讯",
"author": "ArmorRush",
"id": "normalthread_1326640",
"date": 1649865600
},
{
"url": "thread-1323762-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.20 发布",
"category": "基岩版本资讯",
"author": "ArmorRush",
"id": "normalthread_1323762",
"date": 1649260800
},
{
"url": "thread-1323662-1-1.html",
"title": "Minecraft Java版 22w14a 发布",
"category": "Java版本资讯",
"author": "卡狗",
"id": "normalthread_1323662",
"date": 1649260800
},
{
"url": "thread-1321419-1-1.html",
"title": "[愚人节] Minecraft Java版 22w13oneBlockAtATime 发布",
"category": "Java版本资讯",
"author": "希铁石z",
"id": "normalthread_1321419",
"date": 1648742400
},
{
"url": "thread-1320986-1-1.html",
"title": "Minecraft近期没有为主机平台添加光线追踪的计划",
"category": "基岩快讯",
"author": "ArmorRush",
"id": "normalthread_1320986",
"date": 1648742400
},
{
"url": "thread-1320931-1-1.html",
"title": "Minecraft Java版 22w13a 发布",
"category": "Java版本资讯",
"author": "卡狗",
"id": "normalthread_1320931",
"date": 1648742400
},
{
"url": "thread-1342236-1-1.html",
"title": "Minecraft: 加入Microsoft Rewards赢取限量Xbox Series S",
"category": "周边消息",
"author": "ETW_Derp",
"id": "normalthread_1342236",
"date": 1648742400
}
]

View File

@ -1,218 +0,0 @@
[
{
"url": "thread-1340927-1-1.html",
"title": "Minecraft Java版 1.19-pre1 发布",
"category": "Java版本资讯",
"author": "希铁石z",
"id": "normalthread_1340927",
"date": 1652889600
},
{
"url": "thread-1340080-1-1.html",
"title": "Mojang Status服务器出现一些小问题",
"category": "快讯",
"author": "DreamVoid",
"id": "normalthread_1340080",
"date": 1652630400
},
{
"url": "thread-1339940-1-1.html",
"title": "kinbdogz 就近期荒野更新的风波发表看法",
"category": "快讯",
"author": "卡狗",
"id": "normalthread_1339940",
"date": 1652630400
},
{
"url": "thread-1339097-1-1.html",
"title": "Minecraft 基岩版 1.18.33 发布(仅 Switch",
"category": "基岩版本资讯",
"author": "电量量",
"id": "normalthread_1339097",
"date": 1652457600
},
{
"url": "thread-1338607-1-1.html",
"title": "Minecraft Java版 22w19a 发布",
"category": "Java版本资讯",
"author": "寂华",
"id": "normalthread_1338607",
"date": 1652371200
},
{
"url": "thread-1338592-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.32/33 发布",
"category": "基岩版本资讯",
"author": "苦力怕553",
"id": "normalthread_1338592",
"date": 1652371200
},
{
"url": "thread-1338588-1-1.html",
"title": "请给我们一个真正的“荒野更新”",
"category": "时评",
"author": "斯乌",
"id": "normalthread_1338588",
"date": 1652371200
},
{
"url": "thread-1338496-1-1.html",
"title": "slicedlime周三无快照推迟至周四",
"category": "快讯",
"author": "橄榄Chan",
"id": "normalthread_1338496",
"date": 1652198400
},
{
"url": "thread-1336371-1-1.html",
"title": "Minecraft 基岩版 1.18.32 发布(仅 Android、NS【新增 NS 平台】",
"category": "基岩版本资讯",
"author": "电量量",
"id": "normalthread_1336371",
"date": 1651766400
},
{
"url": "thread-1335897-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.30/31 发布",
"category": "基岩版本资讯",
"author": "AzureZeng",
"id": "normalthread_1335897",
"date": 1651680000
},
{
"url": "thread-1335891-1-1.html",
"title": "Minecraft Java版 22w18a 发布",
"category": "Java版本资讯",
"author": "Aurora_Feather",
"id": "normalthread_1335891",
"date": 1651680000
},
{
"url": "thread-1333196-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.28/29 发布",
"category": "基岩版本资讯",
"author": "希铁石z",
"id": "normalthread_1333196",
"date": 1651161600
},
{
"url": "thread-1332834-1-1.html",
"title": "Minecraft 基岩版 1.18.31 发布",
"category": "基岩版本资讯",
"author": "希铁石z",
"id": "normalthread_1332834",
"date": 1651075200
},
{
"url": "thread-1332811-1-1.html",
"title": "Minecraft Java版 22w17a 发布",
"category": "Java版本资讯",
"author": "卡狗",
"id": "normalthread_1332811",
"date": 1651075200
},
{
"url": "thread-1332424-1-1.html",
"title": "Mojang Status正在寻找1.18.30更新问题的解决方案",
"category": "基岩快讯",
"author": "ArmorRush",
"id": "normalthread_1332424",
"date": 1650988800
},
{
"url": "thread-1329712-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.26/27 发布",
"category": "基岩版本资讯",
"author": "ArmorRush",
"id": "normalthread_1329712",
"date": 1650470400
},
{
"url": "thread-1329651-1-1.html",
"title": "Minecraft Java版 22w16b 发布",
"category": "Java版本资讯",
"author": "卡狗",
"id": "normalthread_1329651",
"date": 1650470400
},
{
"url": "thread-1329644-1-1.html",
"title": "Minecraft Java版 22w16a 发布",
"category": "Java版本资讯",
"author": "希铁石z",
"id": "normalthread_1329644",
"date": 1650470400
},
{
"url": "thread-1329335-1-1.html",
"title": "Minecraft 基岩版 1.18.30 发布",
"category": "基岩版本资讯",
"author": "ArmorRush",
"id": "normalthread_1329335",
"date": 1650384000
},
{
"url": "thread-1328892-1-1.html",
"title": "“海王” 杰森·莫玛 有望主演《我的世界》大电影",
"category": "快讯",
"author": "广药",
"id": "normalthread_1328892",
"date": 1650297600
},
{
"url": "thread-1327089-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.24/25 发布",
"category": "基岩版本资讯",
"author": "ArmorRush",
"id": "normalthread_1327089",
"date": 1649952000
},
{
"url": "thread-1326640-1-1.html",
"title": "Minecraft Java版 22w15a 发布",
"category": "Java版本资讯",
"author": "ArmorRush",
"id": "normalthread_1326640",
"date": 1649865600
},
{
"url": "thread-1323762-1-1.html",
"title": "Minecraft 基岩版 Beta & Preview 1.19.0.20 发布",
"category": "基岩版本资讯",
"author": "ArmorRush",
"id": "normalthread_1323762",
"date": 1649260800
},
{
"url": "thread-1323662-1-1.html",
"title": "Minecraft Java版 22w14a 发布",
"category": "Java版本资讯",
"author": "卡狗",
"id": "normalthread_1323662",
"date": 1649260800
},
{
"url": "thread-1321419-1-1.html",
"title": "[愚人节] Minecraft Java版 22w13oneBlockAtATime 发布",
"category": "Java版本资讯",
"author": "希铁石z",
"id": "normalthread_1321419",
"date": 1648742400
},
{
"url": "thread-1320986-1-1.html",
"title": "Minecraft近期没有为主机平台添加光线追踪的计划",
"category": "基岩快讯",
"author": "ArmorRush",
"id": "normalthread_1320986",
"date": 1648742400
},
{
"url": "thread-1320931-1-1.html",
"title": "Minecraft Java版 22w13a 发布",
"category": "Java版本资讯",
"author": "卡狗",
"id": "normalthread_1320931",
"date": 1648742400
}
]

View File

@ -19,50 +19,42 @@ def raw_post_list():
return get_json("mcbbsnews/mcbbsnews_raw_post_list.json")
@pytest.fixture(scope="module")
def javanews_post_0():
return get_file("mcbbsnews/post/mcbbsnews_java_post-0.txt")
@pytest.fixture(scope="module")
def javanews_post_1():
return get_file("mcbbsnews/post/mcbbsnews_java_post-1.txt")
@pytest.fixture(scope="module")
def bedrocknews_post():
return get_file("mcbbsnews/post/mcbbsnews_bedrock_post.txt")
@pytest.mark.asyncio
@pytest.mark.render
@respx.mock
async def test_javanews_parser(mcbbsnews, raw_post_list, javanews_post_0):
async def test_javanews_parser(mcbbsnews, raw_post_list):
javanews_mock = respx.get("https://www.mcbbs.net/thread-1338607-1-1.html")
javanews_mock.mock(
return_value=Response(
200, text=get_file("mcbbsnews/mock/mcbbsnews_javanews.html")
)
)
post = await mcbbsnews.parse(raw_post_list[3])
assert post.text == javanews_post_0
raw_post = raw_post_list[3]
post = await mcbbsnews.parse(raw_post)
assert post.text == "{}\n\n└由 {} 发表".format(raw_post["title"], raw_post["author"])
assert post.target_name == raw_post["category"]
assert len(post.pics) == 1
@pytest.mark.asyncio
@pytest.mark.render
@respx.mock
async def test_bedrocknews_parser(mcbbsnews, raw_post_list, bedrocknews_post):
async def test_bedrocknews_parser(mcbbsnews, raw_post_list):
bedrocknews_mock = respx.get("https://www.mcbbs.net/thread-1338592-1-1.html")
bedrocknews_mock.mock(
return_value=Response(
200, text=get_file("mcbbsnews/mock/mcbbsnews_bedrocknews.html")
)
)
post = await mcbbsnews.parse(raw_post_list[4])
assert post.text == bedrocknews_post
raw_post = raw_post_list[4]
post = await mcbbsnews.parse(raw_post)
assert post.text == "{}\n\n└由 {} 发表".format(raw_post["title"], raw_post["author"])
assert post.target_name == raw_post["category"]
assert len(post.pics) == 1
@pytest.mark.asyncio
@pytest.mark.render
@respx.mock
async def test_bedrock_express_parser(mcbbsnews, raw_post_list):
bedrock_express_mock = respx.get("https://www.mcbbs.net/thread-1332424-1-1.html")
@ -71,14 +63,14 @@ async def test_bedrock_express_parser(mcbbsnews, raw_post_list):
200, text=get_file("mcbbsnews/mock/mcbbsnews_bedrock_express.html")
)
)
bedrock_express_post = await mcbbsnews.parse(raw_post_list[13])
assert bedrock_express_post.text == get_file(
"mcbbsnews/post/mcbbsnews_bedrock_express_post.txt"
)
raw_post = raw_post_list[13]
post = await mcbbsnews.parse(raw_post)
assert post.target_name == raw_post["category"]
assert post.text == "{}\n\n└由 {} 发表".format(raw_post["title"], raw_post["author"])
@pytest.mark.asyncio
@pytest.mark.render
@respx.mock
async def test_java_express_parser(mcbbsnews, raw_post_list):
java_express_mock = respx.get("https://www.mcbbs.net/thread-1340080-1-1.html")
@ -87,28 +79,30 @@ async def test_java_express_parser(mcbbsnews, raw_post_list):
200, text=get_file("mcbbsnews/mock/mcbbsnews_java_express.html")
)
)
java_express_post = await mcbbsnews.parse(raw_post_list[0])
assert java_express_post.text == get_file(
"mcbbsnews/post/mcbbsnews_java_express_post.txt"
)
raw_post = raw_post_list[0]
post = await mcbbsnews.parse(raw_post)
assert post.target_name == raw_post["category"]
assert post.text == "{}\n\n└由 {} 发表".format(raw_post["title"], raw_post["author"])
@pytest.mark.asyncio
@pytest.mark.render
@respx.mock
async def test_merch_parser(mcbbsnews, raw_post_list):
mc_merch_mock = respx.get("https://www.mcbbs.net/thread-1342236-1-1.html")
mc_merch_mock.mock(
return_value=Response(200, text=get_file("mcbbsnews/mock/mcbbsnews_merch.html"))
)
mc_merch_post = await mcbbsnews.parse(raw_post_list[26])
assert mc_merch_post.text == get_file("mcbbsnews/post/mcbbsnews_merch_post.txt")
raw_post = raw_post_list[26]
post = await mcbbsnews.parse(raw_post_list[26])
assert post.target_name == raw_post["category"]
assert post.text == "{}\n\n└由 {} 发表".format(raw_post["title"], raw_post["author"])
@pytest.mark.asyncio
@pytest.mark.render
@respx.mock
async def test_fetch_new(mcbbsnews, dummy_user_subinfo, javanews_post_1):
async def test_fetch_new(mcbbsnews, dummy_user_subinfo):
news_router = respx.get("https://www.mcbbs.net/forum-news-1.html")
news_router.mock(
return_value=Response(
@ -134,6 +128,30 @@ async def test_fetch_new(mcbbsnews, dummy_user_subinfo, javanews_post_1):
assert news_router.called
post = res[0][1][0]
assert post.target_type == "MCBBS幻翼块讯"
assert post.text == javanews_post_1
assert post.text == "Minecraft Java版 1.19-pre1 发布\n\n└由 希铁石z 发表"
assert post.url == "https://www.mcbbs.net/thread-1340927-1-1.html"
assert post.target_name == "Java版本资讯"
assert post.target_name == "Java版资讯"
@pytest.mark.asyncio
@pytest.mark.render
@respx.mock
async def test_news_render(mcbbsnews, dummy_user_subinfo):
new_post = respx.get("https://www.mcbbs.net/thread-1340927-1-1.html")
new_post.mock(
return_value=Response(
200, text=get_file("mcbbsnews/mock/mcbbsnews_new_post_html.html")
)
)
pics = await mcbbsnews._news_render(
"https://www.mcbbs.net/thread-1340927-1-1.html", "#post_25849603"
)
assert len(pics) == 1
pics_err_on_assert = await mcbbsnews._news_render("", "##post_25849603")
assert len(pics_err_on_assert) == 2
pics_err_on_other = await mcbbsnews._news_render(
"https://www.mcbbs.net/thread-1340927-1-1.html", "#post_err"
)
assert len(pics_err_on_other) == 2

View File

@ -199,7 +199,7 @@ def mock_platform_no_target(app: App, mock_scheduler_conf):
def get_category(self, raw_post: "RawPost") -> "Category":
if raw_post["category"] == 3:
raise CategoryNotSupport()
raise CategoryNotSupport(raw_post["category"])
return raw_post["category"]
async def parse(self, raw_post: "RawPost") -> "Post":