Compare commits
11 Commits
3c7fa8fe82
...
2026.6.0
| Author | SHA1 | Date | |
|---|---|---|---|
| 2bc95caba0 | |||
| d3dd0e305a | |||
| bfec619940 | |||
| f03446fd48 | |||
| 86dfc97c7a | |||
| 599b623b8d | |||
| c2b324dc6d | |||
| 3fe876a239 | |||
| b461304d65 | |||
| bf8e998d14 | |||
| aff5d4e54d |
@@ -1,3 +1,9 @@
|
||||
# 2026.6.0
|
||||
- Fix: 地震情報で津波の心配についての情報が記載されない問題
|
||||
|
||||
# 2026.5.9
|
||||
- Fix: pnpmが動作しない問題
|
||||
|
||||
# 2026.5.8
|
||||
- Fix: 地震情報の情報源と各震度の間に改行がない問題
|
||||
- Fix: 最大震度が不明な場合にも行が追加される問題
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "notice-uwuzu",
|
||||
"version": "2026.5.8",
|
||||
"version": "2026.6.0",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
|
||||
+3
-1
@@ -1,3 +1,5 @@
|
||||
allowBuilds:
|
||||
canvas: true
|
||||
sharp: true
|
||||
sharp: true
|
||||
better-uwuzu-sdk: true
|
||||
miq: true
|
||||
@@ -182,10 +182,10 @@ const processMessage = async (message: any) => {
|
||||
: [`🪨深さ: ${message.earthquake.hypocenter.depth === 0
|
||||
? "ごく浅い"
|
||||
: `${message.earthquake.hypocenter.depth}km`}`]));
|
||||
earthquakeNoticeText.push(...(message.earthquake.domesticTsunami ?? "Unknown" === "Unknown"
|
||||
earthquakeNoticeText.push(...((message.earthquake.domesticTsunami ?? "Unknown") === "Unknown"
|
||||
? []
|
||||
: [domesticTsunamiMessages[(message.earthquake.domesticTsunami)]]));
|
||||
earthquakeNoticeText.push(...(message.earthquake.foreignTsunami ?? "Unknown" === "Unknown"
|
||||
earthquakeNoticeText.push(...((message.earthquake.foreignTsunami ?? "Unknown") === "Unknown"
|
||||
? []
|
||||
: [foreignTsunamiMessages[(message.earthquake.foreignTsunami)]]));
|
||||
earthquakeNoticeText.push(...(pointsMsg === ""
|
||||
|
||||
Reference in New Issue
Block a user