Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@
- Due to Android's restrictions, sensitive notifications are no longer visible from Android 15 onwards.
- To work around this limitation, you can grant the necessary permission using ADB. Run the following command:

```sh
adb shell appops set com.castle.sefirah RECEIVE_SENSITIVE_NOTIFICATIONS allow
```sh
adb shell appops set com.castle.sefirah RECEIVE_SENSITIVE_NOTIFICATIONS allow
```

## Installation

Expand Down Expand Up @@ -78,7 +79,7 @@
7. **Screen Mirroring using [Scrcpy](https://github.com/Genymobile/scrcpy)**:
- You would need to [download](https://github.com/Genymobile/scrcpy/releases), extract and set the scrcpy location in App settings.
- You can specify your preferences for the scrcpy to launch with in the screen mirroring section.
- For initiating screen mirroring, the easiest way would be to plug your device through usb and start using the button next to the ringer mode (In the arugments text box add "--tcpip" if you want to make the connection wireless and you don't need to specify anymore arugments if you don't know what you're doing).
- For initiating screen mirroring, the easiest way would be to plug your device through usb and start using the button next to the ringer mode (In the arguments text box add "--tcpip" if you want to make the connection wireless and you don't need to specify anymore arguments if you don't know what you're doing).
- Sefirah will try to connect to your device if the default tcpip port is open for subsequent connections.
- If you have any doubts or problems in connecting scrcpy, refer [scrcpy docs](https://github.com/Genymobile/scrcpy/blob/master/doc/connection.md) and [Scrcpy FAQ](https://github.com/Genymobile/scrcpy/blob/master/FAQ.md).
- If you like their project, please consider supporting the author [rom1v](https://blog.rom1v.com/about/#support-my-open-source-work)
Expand Down
4 changes: 2 additions & 2 deletions src/Sefirah/Services/FileTransfer/ReceiveFileHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ private void ShowProgressNotification()
var progressTitle = $"{fileName} ({currentFileIndex + 1}/{files.Count})";

// Subtitle: Receiving/Sending message
var notifcationTitle = IsBulkTransfer
var notificationTitle = IsBulkTransfer
? string.Format("FileTransferNotification.ReceivingBulk".GetLocalizedResource(), files.Count, device.Name)
: string.Format("FileTransferNotification.Receiving".GetLocalizedResource(), device.Name);

Expand All @@ -164,7 +164,7 @@ private void ShowProgressNotification()
var status = $"{transferredFormatted} / {totalFormatted}";

notificationHandler.ShowFileTransferNotification(
notifcationTitle,
notificationTitle,
progressTitle,
status,
TransferId.ToString(),
Expand Down
2 changes: 1 addition & 1 deletion src/Sefirah/Services/NetworkService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private async Task SendDeviceInfo(PairedDevice device)
}
catch (Exception ex)
{
logger.Error("Excetpion occured while sending device info", ex);
logger.Error("Exception occurred while sending device info", ex);
}
}

Expand Down