diff --git a/lib/ui/views/installer/installer_viewmodel.dart b/lib/ui/views/installer/installer_viewmodel.dart index 05cbfda3..541f7c8c 100644 --- a/lib/ui/views/installer/installer_viewmodel.dart +++ b/lib/ui/views/installer/installer_viewmodel.dart @@ -185,26 +185,26 @@ class InstallerViewModel extends BaseViewModel { final formattedLogs = [ '```', - '~ Device Info', + '- Device Info', 'ReVanced Manager: ${info['version']}', 'Build: ${info['flavor']}', 'Model: ${info['model']}', 'Android version: ${info['androidVersion']}', 'Supported architectures: ${info['supportedArch'].join(", ")}', - '\n~ Patch Info', + '\n- Patch Info', 'App: ${_app.packageName} v${_app.version}', 'Patches version: ${_managerAPI.patchesVersion}', 'Patches: ${_patches.map((p) => p.name).toList().join(", ")}', - '\n~ Settings', + '\n- Settings', 'Allow changing patch selection: ${_managerAPI.isPatchesChangeEnabled()}', - 'Show universal patches: ${_managerAPI.areUniversalPatchesEnabled()}', 'Version compatibility check: ${_managerAPI.isVersionCompatibilityCheckEnabled()}', + 'Show universal patches: ${_managerAPI.areUniversalPatchesEnabled()}', 'Patches source: ${_managerAPI.getPatchesRepo()}', 'Integration source: ${_managerAPI.getIntegrationsRepo()}', - '\n~ Logs', + '\n- Logs', logs, '```', ];