mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-04-20 23:46:39 -04:00
Compare commits
3 Commits
f5b7e25ff9
...
db215bf9f8
Author | SHA1 | Date | |
---|---|---|---|
![]() |
db215bf9f8 | ||
![]() |
10a518e72e | ||
![]() |
7ce61677cb |
13
db/knex_migrations/2025-03-25-0127-fix-5721.js
Normal file
13
db/knex_migrations/2025-03-25-0127-fix-5721.js
Normal file
@ -0,0 +1,13 @@
|
||||
// Fix #5721: Change proxy port column type to integer to support larger port numbers
|
||||
exports.up = function (knex) {
|
||||
return knex.schema
|
||||
.alterTable("proxy", function (table) {
|
||||
table.integer("port").alter();
|
||||
});
|
||||
};
|
||||
|
||||
exports.down = function (knex) {
|
||||
return knex.schema.alterTable("proxy", function (table) {
|
||||
table.smallint("port").alter();
|
||||
});
|
||||
};
|
@ -1067,5 +1067,6 @@
|
||||
"YZJ Robot Token": "YZJ Robot token",
|
||||
"Plain Text": "Plain Text",
|
||||
"Message Template": "Message Template",
|
||||
"Template Format": "Template Format"
|
||||
"Template Format": "Template Format",
|
||||
"PushPlus Token": "PushPlus Token"
|
||||
}
|
||||
|
@ -1100,6 +1100,5 @@
|
||||
"RabbitMQ Nodes": "RabbitMQ 管理节点",
|
||||
"Separate multiple email addresses with commas": "用逗号分隔多个电子邮件地址",
|
||||
"rabbitmqHelpText": "要使用此监控项,您需要在 RabbitMQ 设置中启用管理插件。有关更多信息,请参阅 {rabitmq_documentation}。",
|
||||
"aboutSlackUsername": "更改消息发件人的显示名称。如果您想提及某人,请另行将其包含在友好名称中。",
|
||||
"PushPlus Token": "PushPlus Token"
|
||||
"aboutSlackUsername": "更改消息发件人的显示名称。如果您想提及某人,请另行将其包含在友好名称中。"
|
||||
}
|
||||
|
@ -1085,6 +1085,5 @@
|
||||
"cellsyntOriginator": "在收件人處作為消息發送者顯示。允許的內容取決於發件人類型。",
|
||||
"cellsyntDestination": "收件人的手機號碼需要使用以 00+國家代碼開頭的國際通用格式,例如若要發給英國的號碼 07920 110 000 需使用 00447920110000 作為收件人手機號碼(至多17位數)。需發送給多個收件人手機號碼時可使用英文逗號分隔,每次請求最 多250 00個收件人手機號碼。",
|
||||
"threemaRecipient": "收件人",
|
||||
"threemaRecipientTypeIdentityFormat": "8 位字符",
|
||||
"PushPlus Token": "PushPlus Token"
|
||||
"threemaRecipientTypeIdentityFormat": "8 位字符"
|
||||
}
|
||||
|
@ -1085,6 +1085,5 @@
|
||||
"conditionValuePlaceholder": "值",
|
||||
"Separate multiple email addresses with commas": "用逗號分隔多個電子郵件地址",
|
||||
"record": "記錄",
|
||||
"New Group": "新分組",
|
||||
"PushPlus Token": "PushPlus Token"
|
||||
"New Group": "新分組"
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user