Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
2e98efd
Mistify: Drop features for A16
ShukakuZa Aug 23, 2025
c5f30d5
Mistify: Enable Introduce Ongoing action chip changes
shutter-cat Aug 23, 2025
86b6729
Mistify: : add option to disable quicksettings on keyguard [2/2]
rmp22 Aug 23, 2025
d5f3d63
Mistify: Add customization to select QS tile shape
neobuddy89 Aug 23, 2025
846d408
Mistify: AOD wallpaper toggle
rmp22 Aug 23, 2025
f9ee7a9
Mistify: Add batterybar [2/2]
Aug 23, 2025
0c9a27c
Mistify: Allow single tap on keyguard affordances [2/2]
Aug 23, 2025
3e33373
Mistify: Fix and improve keybox data preference
neobuddy89 Aug 23, 2025
25830fe
Mistify: Add QuickSwitch
minaripenguin Aug 23, 2025
528524d
Mistify:Clock chip style
minaripenguin Aug 23, 2025
c3a83c5
Mistify: Custom statusbar logo color options [2/2]
Aston-Martinn Aug 23, 2025
208349e
Mistify: Implement json-based game spoofing [2/2]
minaripenguin Aug 23, 2025
640b17c
Mistify: Spoof netflix to komodo
neobuddy89 Aug 23, 2025
5130b74
Settings: Transistent task mode setting
nift4 Aug 23, 2025
6fff628
Mistify: Add switch for small notifications [2/2]
HELLBOY017 Aug 23, 2025
45a747f
SQUASH FIX
ShukakuZa Aug 23, 2025
2eab06c
Revert:Settings: Transistent task mode setting
ShukakuZa Aug 24, 2025
a4df1c5
revert: Mistify: Add QuickSwitch
ShukakuZa Aug 28, 2025
d1f466e
Mistify: Add fragment for Island Feature
minaripenguin Aug 28, 2025
e26596c
New translations mist_strings.xml (French)
yusufnoor786 Sep 15, 2025
b42b4f5
New translations mist_strings.xml (Spanish)
yusufnoor786 Sep 15, 2025
13cdbdf
New translations mist_strings.xml (German)
yusufnoor786 Sep 15, 2025
f3f206c
New translations mist_strings.xml (Russian)
yusufnoor786 Sep 15, 2025
a56c076
New translations mist_strings.xml (Chinese Simplified)
yusufnoor786 Sep 15, 2025
4687499
New translations mist_strings.xml (Chinese Traditional)
yusufnoor786 Sep 15, 2025
6cfee88
New translations mist_strings.xml (Indonesian)
yusufnoor786 Sep 15, 2025
1da0c1b
New translations mist_strings.xml (Bengali)
yusufnoor786 Sep 15, 2025
864a6c0
New translations mist_strings.xml (Bengali, India)
yusufnoor786 Sep 15, 2025
8ee5c62
New translations mist_strings.xml (Spanish (Modern))
yusufnoor786 Sep 15, 2025
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
12 changes: 0 additions & 12 deletions res/drawable/mist_card_single.xml

This file was deleted.

28 changes: 0 additions & 28 deletions res/drawable/top_mist_background.xml

This file was deleted.

48 changes: 39 additions & 9 deletions res/layout/keybox_data_pref.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,35 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:minHeight="?android:attr/listPreferredItemHeightSmall"
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd">
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
android:clipToPadding="false"
android:baselineAligned="false">

<LinearLayout
android:id="@+id/icon_frame"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="48dp"
android:gravity="start|center_vertical"
android:orientation="horizontal"
android:paddingStart="0dp"
android:paddingEnd="8dp"
android:paddingTop="4dp"
android:paddingBottom="4dp">

<androidx.preference.internal.PreferenceImageView
android:id="@android:id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@null"
app:maxWidth="48dp"
app:maxHeight="48dp" />
</LinearLayout>

<LinearLayout
android:layout_width="0dp"
Expand All @@ -16,28 +41,33 @@

<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceListItem"
android:maxLines="1"
android:ellipsize="end"
android:maxLines="1" />
android:textAppearance="?android:attr/textAppearanceListItem" />

<TextView
android:id="@+id/summary"
android:layout_width="match_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textAppearance="?android:attr/textAppearanceListItemSecondary"
android:textColor="?android:attr/textColorSecondary"
android:ellipsize="marquee" />
android:maxLines="5"
android:ellipsize="end" />
</LinearLayout>

<ImageButton
android:id="@+id/delete_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="48dp"
android:minHeight="48dp"
android:layout_gravity="center_vertical"
android:src="@drawable/ic_trash_can"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:scaleType="centerInside"
android:contentDescription="@string/keybox_delete_content_description"
android:duplicateParentState="true"
android:layout_marginStart="16dp"
android:layout_marginEnd="8dp" />
</LinearLayout>
87 changes: 0 additions & 87 deletions res/layout/mist_dashboard_single.xml

This file was deleted.

Loading