mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-12-25 10:05:49 +01:00
Add Wire messenger to the chat applications
This is a chat app that uses end-to-end encryption algorithm similar to Signal.
This commit is contained in:
parent
7dd50fc31a
commit
e2a75d75d4
@ -72,6 +72,9 @@ public class AppNotificationType extends HashMap<String, NotificationType> {
|
|||||||
// Signal
|
// Signal
|
||||||
put("org.thoughtcrime.securesms", NotificationType.SIGNAL);
|
put("org.thoughtcrime.securesms", NotificationType.SIGNAL);
|
||||||
|
|
||||||
|
// Wire
|
||||||
|
put("com.wire", NotificationType.WIRE);
|
||||||
|
|
||||||
// Telegram
|
// Telegram
|
||||||
put("org.telegram.messenger", NotificationType.TELEGRAM);
|
put("org.telegram.messenger", NotificationType.TELEGRAM);
|
||||||
put("org.telegram.messenger.beta", NotificationType.TELEGRAM);
|
put("org.telegram.messenger.beta", NotificationType.TELEGRAM);
|
||||||
|
@ -55,6 +55,7 @@ public enum NotificationType {
|
|||||||
BUSINESS_CALENDAR(PebbleIconID.TIMELINE_CALENDAR, PebbleColor.BlueMoon),
|
BUSINESS_CALENDAR(PebbleIconID.TIMELINE_CALENDAR, PebbleColor.BlueMoon),
|
||||||
RIOT(PebbleIconID.NOTIFICATION_HIPCHAT, PebbleColor.LavenderIndigo),
|
RIOT(PebbleIconID.NOTIFICATION_HIPCHAT, PebbleColor.LavenderIndigo),
|
||||||
SIGNAL(PebbleIconID.NOTIFICATION_HIPCHAT, PebbleColor.BlueMoon),
|
SIGNAL(PebbleIconID.NOTIFICATION_HIPCHAT, PebbleColor.BlueMoon),
|
||||||
|
WIRE(PebbleIconID.NOTIFICATION_HIPCHAT, PebbleColor.BlueMoon),
|
||||||
SKYPE(PebbleIconID.NOTIFICATION_SKYPE, PebbleColor.VividCerulean),
|
SKYPE(PebbleIconID.NOTIFICATION_SKYPE, PebbleColor.VividCerulean),
|
||||||
SLACK(PebbleIconID.NOTIFICATION_SLACK, PebbleColor.Folly),
|
SLACK(PebbleIconID.NOTIFICATION_SLACK, PebbleColor.Folly),
|
||||||
SNAPCHAT(PebbleIconID.NOTIFICATION_SNAPCHAT, PebbleColor.Icterine),
|
SNAPCHAT(PebbleIconID.NOTIFICATION_SNAPCHAT, PebbleColor.Icterine),
|
||||||
@ -105,6 +106,7 @@ public enum NotificationType {
|
|||||||
case FACEBOOK_MESSENGER:
|
case FACEBOOK_MESSENGER:
|
||||||
case RIOT:
|
case RIOT:
|
||||||
case SIGNAL:
|
case SIGNAL:
|
||||||
|
case WIRE:
|
||||||
case TELEGRAM:
|
case TELEGRAM:
|
||||||
case THREEMA:
|
case THREEMA:
|
||||||
case KONTALK:
|
case KONTALK:
|
||||||
|
@ -286,6 +286,7 @@ public class BLETypeConversions {
|
|||||||
case LINE:
|
case LINE:
|
||||||
case RIOT:
|
case RIOT:
|
||||||
case SIGNAL:
|
case SIGNAL:
|
||||||
|
case WIRE:
|
||||||
case SKYPE:
|
case SKYPE:
|
||||||
case SNAPCHAT:
|
case SNAPCHAT:
|
||||||
case TELEGRAM:
|
case TELEGRAM:
|
||||||
|
@ -98,6 +98,7 @@ public class HuamiIcon {
|
|||||||
case LINE:
|
case LINE:
|
||||||
return LINE;
|
return LINE;
|
||||||
case SIGNAL:
|
case SIGNAL:
|
||||||
|
case WIRE:
|
||||||
return CHAT_BLUE_13;
|
return CHAT_BLUE_13;
|
||||||
case TWITTER:
|
case TWITTER:
|
||||||
return TWITTER;
|
return TWITTER;
|
||||||
|
@ -834,6 +834,7 @@ public class ZeTimeDeviceSupport extends AbstractBTLEDeviceSupport {
|
|||||||
case CONVERSATIONS:
|
case CONVERSATIONS:
|
||||||
case RIOT:
|
case RIOT:
|
||||||
case SIGNAL:
|
case SIGNAL:
|
||||||
|
case WIRE:
|
||||||
case TELEGRAM:
|
case TELEGRAM:
|
||||||
case THREEMA:
|
case THREEMA:
|
||||||
case KONTALK:
|
case KONTALK:
|
||||||
|
@ -44,6 +44,7 @@ public class NotificationUtils {
|
|||||||
case LINE:
|
case LINE:
|
||||||
case RIOT:
|
case RIOT:
|
||||||
case SIGNAL:
|
case SIGNAL:
|
||||||
|
case WIRE:
|
||||||
case SKYPE:
|
case SKYPE:
|
||||||
case SNAPCHAT:
|
case SNAPCHAT:
|
||||||
case TELEGRAM:
|
case TELEGRAM:
|
||||||
|
Loading…
Reference in New Issue
Block a user