Rename app to Notifications Master

This commit is contained in:
ajp_anton
2026-08-16 01:49:58 +00:00
parent 9832b80e64
commit 572660a967
6 changed files with 10 additions and 10 deletions
@@ -108,7 +108,7 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
private fun requestUnlock() {
BiometricPrompt.Builder(this)
.setTitle("Unlock Notification Log")
.setTitle("Unlock Notifications Master")
.setAllowedAuthenticators(Authenticators.BIOMETRIC_STRONG or Authenticators.DEVICE_CREDENTIAL)
.build()
.authenticate(CancellationSignal(), mainExecutor, object : BiometricPrompt.AuthenticationCallback() {
@@ -107,7 +107,7 @@ class SettingsFragment : Fragment(R.layout.fragment_settings) {
MaterialAlertDialogBuilder(requireContext())
.setItems(arrayOf("CSV (no images)", "Formatted text (no images)", "HTML ZIP")) { _, which ->
pendingExport = ExportFormat.entries[which]
createDocument.launch("notification-log.${pendingExport!!.extension}")
createDocument.launch("notifications-master.${pendingExport!!.extension}")
}
.show()
}
@@ -185,7 +185,7 @@ class SettingsFragment : Fragment(R.layout.fragment_settings) {
context: android.content.Context,
) = zip.use { zipOutput ->
val imageStore = EncryptedImageStore(context)
zipOutput.putNextEntry(java.util.zip.ZipEntry("notification-log.html"))
zipOutput.putNextEntry(java.util.zip.ZipEntry("notifications-master.html"))
zipOutput.write(LogExporter.htmlStart(settings).encodeToByteArray())
logStore.forEachNewest { entry ->
val imagePath = entry.imageId
+1 -1
View File
@@ -81,7 +81,7 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Notification Log is locked"
android:text="Notifications Master is locked"
android:textAppearance="?attr/textAppearanceHeadline6" />
</LinearLayout>
</FrameLayout>
+2 -2
View File
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Notification Log</string>
<string name="notification_listener_label">Notification Log listener</string>
<string name="app_name">Notifications Master</string>
<string name="notification_listener_label">Notifications Master listener</string>
<string name="navigation_open">Open navigation</string>
<string name="navigation_close">Close navigation</string>
<string name="navigation_settings_header">Settings</string>