Merge remote-tracking branch 'upstream/io' into oscar

This commit is contained in:
ASTRO:? 2024-12-31 18:17:43 +09:00
commit 836df3bf0c
No known key found for this signature in database
GPG key ID: 8947F3AF5B0B4BFE
10 changed files with 12 additions and 12 deletions

View file

@ -24,7 +24,7 @@ services:
DFLY_snapshot_cron: '* * * * *' DFLY_snapshot_cron: '* * * * *'
DFLY_version_check: false DFLY_version_check: false
DFLY_tcp_backlog: 2048 DFLY_tcp_backlog: 2048
DFLY_lock_on_hashtags: true DFLY_default_lua_flags: allow-undeclared-keys
DFLY_pipeline_squash: 0 DFLY_pipeline_squash: 0
DFLY_multi_exec_squash: false DFLY_multi_exec_squash: false
DFLY_conn_io_threads: 4 DFLY_conn_io_threads: 4

View file

@ -36,7 +36,7 @@ jobs:
env: env:
DFLY_version_check: false DFLY_version_check: false
DFLY_tcp_backlog: 2048 DFLY_tcp_backlog: 2048
DFLY_lock_on_hashtags: true DFLY_default_lua_flags: allow-undeclared-keys
DFLY_pipeline_squash: 0 DFLY_pipeline_squash: 0
DFLY_multi_exec_squash: false DFLY_multi_exec_squash: false
DFLY_conn_io_threads: 4 DFLY_conn_io_threads: 4
@ -97,7 +97,7 @@ jobs:
env: env:
DFLY_version_check: false DFLY_version_check: false
DFLY_tcp_backlog: 2048 DFLY_tcp_backlog: 2048
DFLY_lock_on_hashtags: true DFLY_default_lua_flags: allow-undeclared-keys
DFLY_pipeline_squash: 0 DFLY_pipeline_squash: 0
DFLY_multi_exec_squash: false DFLY_multi_exec_squash: false
DFLY_conn_io_threads: 4 DFLY_conn_io_threads: 4

View file

@ -44,8 +44,8 @@ spec:
value: false value: false
- name: DFLY_tcp_backlog - name: DFLY_tcp_backlog
value: 2048 value: 2048
- name: DFLY_lock_on_hashtags - name: DFLY_default_lua_flags
value: true value: allow-undeclared-keys
- name: DFLY_pipeline_squash - name: DFLY_pipeline_squash
value: 0 value: 0
- name: DFLY_multi_exec_squash - name: DFLY_multi_exec_squash

View file

@ -12,7 +12,7 @@ services:
DFLY_snapshot_cron: '* * * * *' DFLY_snapshot_cron: '* * * * *'
DFLY_version_check: false DFLY_version_check: false
DFLY_tcp_backlog: 2048 DFLY_tcp_backlog: 2048
DFLY_lock_on_hashtags: true DFLY_default_lua_flags: allow-undeclared-keys
DFLY_pipeline_squash: 0 DFLY_pipeline_squash: 0
DFLY_multi_exec_squash: false DFLY_multi_exec_squash: false
DFLY_conn_io_threads: 4 DFLY_conn_io_threads: 4

View file

@ -32,7 +32,7 @@ services:
DFLY_snapshot_cron: '* * * * *' DFLY_snapshot_cron: '* * * * *'
DFLY_version_check: false DFLY_version_check: false
DFLY_tcp_backlog: 2048 DFLY_tcp_backlog: 2048
DFLY_lock_on_hashtags: true DFLY_default_lua_flags: allow-undeclared-keys
DFLY_pipeline_squash: 0 DFLY_pipeline_squash: 0
DFLY_multi_exec_squash: false DFLY_multi_exec_squash: false
DFLY_conn_io_threads: 4 DFLY_conn_io_threads: 4

View file

@ -35,7 +35,7 @@ export class UtilityService {
@bindThis @bindThis
public isUriLocal(uri: string): boolean { public isUriLocal(uri: string): boolean {
return this.normalizeHost(this.config.hostname) === this.extractHost(uri); return this.normalizeHost(this.config.host) === this.extractHost(uri);
} }
@bindThis @bindThis

View file

@ -8,7 +8,7 @@ services:
environment: environment:
DFLY_version_check: false DFLY_version_check: false
DFLY_tcp_backlog: 2048 DFLY_tcp_backlog: 2048
DFLY_lock_on_hashtags: true DFLY_default_lua_flags: allow-undeclared-keys
DFLY_pipeline_squash: 0 DFLY_pipeline_squash: 0
DFLY_multi_exec_squash: false DFLY_multi_exec_squash: false
DFLY_conn_io_threads: 4 DFLY_conn_io_threads: 4

View file

@ -506,7 +506,7 @@ async function assignRole() {
const { canceled: canceled3, result: memo } = await os.inputText({ const { canceled: canceled3, result: memo } = await os.inputText({
title: i18n.ts.addMemo, title: i18n.ts.addMemo,
type: 'textarea', type: 'textarea',
placeholder: i18n.ts.memo, default: '',
}); });
if (canceled3) return; if (canceled3) return;

View file

@ -146,7 +146,7 @@ async function assign() {
const { canceled: canceled3, result: memo } = await os.inputText({ const { canceled: canceled3, result: memo } = await os.inputText({
title: i18n.ts.addMemo, title: i18n.ts.addMemo,
type: 'textarea', type: 'textarea',
placeholder: i18n.ts.memo, default: '',
}); });
if (canceled3) return; if (canceled3) return;

View file

@ -454,7 +454,7 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
defaultWithReplies: { defaultWithReplies: {
where: 'account', where: 'account',
default: false, default: true,
}, },
disableStreamingTimeline: { disableStreamingTimeline: {
where: 'device', where: 'device',