-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add function send video in real resolution fix bug to send video in HD on Status
- Loading branch information
Showing
3 changed files
with
107 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,52 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto"> | ||
|
||
<rikka.material.preference.MaterialSwitchPreference | ||
app:key="downloadstatus" | ||
app:summary="@string/statusdowload_sum" | ||
app:title="@string/statusdowload" /> | ||
|
||
<rikka.material.preference.MaterialSwitchPreference | ||
app:key="downloadviewonce" | ||
app:summary="@string/downloadviewonce_sum" | ||
app:title="@string/downloadviewonce" /> | ||
|
||
<rikka.material.preference.MaterialSwitchPreference | ||
app:key="videoquality" | ||
app:summary="@string/videoquality_sum" | ||
app:title="@string/videoquality" /> | ||
|
||
<rikka.material.preference.MaterialSwitchPreference | ||
app:key="imagequality" | ||
app:summary="@string/imagequality_sum" | ||
app:title="@string/imagequality" /> | ||
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto"> | ||
|
||
<PreferenceCategory android:title="Image"> | ||
|
||
<rikka.material.preference.MaterialSwitchPreference | ||
app:key="downloadstatus" | ||
app:summary="@string/statusdowload_sum" | ||
app:title="@string/statusdowload" /> | ||
|
||
<rikka.material.preference.MaterialSwitchPreference | ||
app:key="downloadviewonce" | ||
app:summary="@string/downloadviewonce_sum" | ||
app:title="@string/downloadviewonce" /> | ||
|
||
<rikka.material.preference.MaterialSwitchPreference | ||
app:key="imagequality" | ||
app:summary="@string/imagequality_sum" | ||
app:title="@string/imagequality" /> | ||
|
||
</PreferenceCategory> | ||
|
||
<PreferenceCategory android:title="Video"> | ||
|
||
<rikka.material.preference.MaterialSwitchPreference | ||
app:key="videoquality" | ||
app:summary="@string/videoquality_sum" | ||
app:title="@string/videoquality" /> | ||
|
||
<rikka.material.preference.MaterialSwitchPreference | ||
app:dependency="videoquality" | ||
app:key="video_size_limit" | ||
app:summary="Increase Video size limit to 90MB" | ||
app:title="Increase Video Size Limit" /> | ||
|
||
<rikka.material.preference.MaterialSwitchPreference | ||
app:dependency="videoquality" | ||
app:key="video_real_resolution" | ||
app:summary="Send Video in Real Resolution for for status, group and chats" | ||
app:title="Send Video in Real Resolution" /> | ||
|
||
<rikka.material.preference.MaterialSwitchPreference | ||
app:dependency="videoquality" | ||
app:key="video_maxfps" | ||
app:summary="Send Video in 60 fps for status, group and chats" | ||
app:title="Send Video in 60fps" /> | ||
|
||
</PreferenceCategory> | ||
|
||
|
||
</PreferenceScreen> |