1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Mobile: Show sync version and client id in More Info (#10254)

This commit is contained in:
Self Not Found 2024-04-04 02:04:16 +08:00 committed by GitHub
parent 8dc75efc4c
commit 9d3cccdf71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -562,6 +562,8 @@ class ConfigScreenComponent extends BaseScreenComponent<ConfigScreenProps, Confi
addSettingText('version_info_app', `Joplin ${VersionInfo.appVersion}`);
addSettingText('version_info_db', _('Database v%s', reg.db().version()));
addSettingText('version_info_sync', _('Sync Version: %s', Setting.value('syncVersion')));
addSettingText('version_info_client_id', _('Client ID: %s', Setting.value('clientId')));
addSettingText('version_info_fts', _('FTS enabled: %d', this.props.settings['db.ftsEnabled']));
addSettingText('version_info_hermes', _('Hermes enabled: %d', (global as any).HermesInternal ? 1 : 0));