outlined icons + fix invisible icon in tablet mode
|
@ -20,13 +20,13 @@
|
|||
"filters": [
|
||||
{
|
||||
"filterType": "ABI",
|
||||
"value": "x86"
|
||||
"value": "x86_64"
|
||||
}
|
||||
],
|
||||
"attributes": [],
|
||||
"versionCode": 16002,
|
||||
"versionCode": 16003,
|
||||
"versionName": "1.7.8.9",
|
||||
"outputFile": "monocles chat-1.7.8.9-git-x86-release.apk"
|
||||
"outputFile": "monocles chat-1.7.8.9-git-x86_64-release.apk"
|
||||
},
|
||||
{
|
||||
"type": "ONE_OF_MANY",
|
||||
|
@ -59,13 +59,13 @@
|
|||
"filters": [
|
||||
{
|
||||
"filterType": "ABI",
|
||||
"value": "x86_64"
|
||||
"value": "x86"
|
||||
}
|
||||
],
|
||||
"attributes": [],
|
||||
"versionCode": 16003,
|
||||
"versionCode": 16002,
|
||||
"versionName": "1.7.8.9",
|
||||
"outputFile": "monocles chat-1.7.8.9-git-x86_64-release.apk"
|
||||
"outputFile": "monocles chat-1.7.8.9-git-x86-release.apk"
|
||||
}
|
||||
],
|
||||
"elementType": "File"
|
||||
|
|
|
@ -861,7 +861,7 @@ public class NotificationService {
|
|||
);
|
||||
if (media.contains(Media.VIDEO)) {
|
||||
style.setIsVideo(true);
|
||||
builder.setSmallIcon(R.drawable.ic_videocam_white_24dp);
|
||||
builder.setSmallIcon(R.drawable.outline_videocam_white_24);
|
||||
builder.setContentTitle(mXmppConnectionService.getString(R.string.rtp_state_incoming_video_call));
|
||||
} else {
|
||||
style.setIsVideo(false);
|
||||
|
@ -910,7 +910,7 @@ public class NotificationService {
|
|||
);
|
||||
if (ongoingCall.media.contains(Media.VIDEO)) {
|
||||
style.setIsVideo(true);
|
||||
builder.setSmallIcon(R.drawable.ic_videocam_white_24dp);
|
||||
builder.setSmallIcon(R.drawable.outline_videocam_white_24);
|
||||
if (ongoingCall.reconnecting) {
|
||||
builder.setContentTitle(mXmppConnectionService.getString(R.string.reconnecting_video_call));
|
||||
} else {
|
||||
|
|
|
@ -186,7 +186,7 @@ public class ConversationAdapter
|
|||
final int imageResource;
|
||||
if (message.isGeoUri()) {
|
||||
imageResource =
|
||||
activity.getThemeResource(R.attr.share_location, R.drawable.ic_attach_location);
|
||||
activity.getThemeResource(R.attr.share_location, R.drawable.rounded_location_black_24);
|
||||
showPreviewText = false;
|
||||
} else {
|
||||
// TODO move this into static MediaPreview method and use same icons as in
|
||||
|
@ -196,17 +196,17 @@ public class ConversationAdapter
|
|||
final Message.FileParams fileParams = message.getFileParams();
|
||||
if (fileParams.width > 0 && fileParams.height > 0) {
|
||||
imageResource =
|
||||
activity.getThemeResource(R.attr.take_video, R.drawable.ic_attach_videocam);
|
||||
activity.getThemeResource(R.attr.take_video, R.drawable.outline_videocam_black_24);
|
||||
showPreviewText = false;
|
||||
} else if (fileParams.runtime > 0) {
|
||||
imageResource =
|
||||
activity.getThemeResource(
|
||||
R.attr.ic_send_voice_offline, R.drawable.ic_attach_record);
|
||||
R.attr.ic_send_voice_offline, R.drawable.ic_send_voice_offline);
|
||||
showPreviewText = false;
|
||||
} else {
|
||||
imageResource =
|
||||
activity.getThemeResource(
|
||||
R.attr.document_file, R.drawable.ic_attach_document);
|
||||
R.attr.document_file, R.drawable.document_black_24);
|
||||
showPreviewText = true;
|
||||
}
|
||||
} else {
|
||||
|
@ -220,18 +220,18 @@ public class ConversationAdapter
|
|||
case "video":
|
||||
imageResource =
|
||||
activity.getThemeResource(
|
||||
R.attr.attach_video_file, R.drawable.ic_attach_video);
|
||||
R.attr.attach_video_file, R.drawable.outline_video_file_black_24);
|
||||
showPreviewText = false;
|
||||
break;
|
||||
case "audio":
|
||||
imageResource =
|
||||
activity.getThemeResource(
|
||||
R.attr.ic_send_voice_offline, R.drawable.ic_attach_record);
|
||||
R.attr.ic_send_voice_offline, R.drawable.ic_send_voice_offline);
|
||||
showPreviewText = false;
|
||||
break;
|
||||
default:
|
||||
imageResource =
|
||||
activity.getThemeResource(R.attr.choose_file, R.drawable.ic_attach_document);
|
||||
activity.getThemeResource(R.attr.choose_file, R.drawable.choose_file_black_24dp);
|
||||
showPreviewText = true;
|
||||
break;
|
||||
}
|
||||
|
|
Before Width: | Height: | Size: 369 B |
Before Width: | Height: | Size: 372 B |
Before Width: | Height: | Size: 558 B |
Before Width: | Height: | Size: 1,023 B |
Before Width: | Height: | Size: 916 B |
Before Width: | Height: | Size: 204 B |
Before Width: | Height: | Size: 462 B |
Before Width: | Height: | Size: 120 B |
Before Width: | Height: | Size: 560 B |
Before Width: | Height: | Size: 310 B |
Before Width: | Height: | Size: 557 B |
Before Width: | Height: | Size: 395 B |
Before Width: | Height: | Size: 394 B |
Before Width: | Height: | Size: 236 B |
Before Width: | Height: | Size: 249 B |
Before Width: | Height: | Size: 358 B |
Before Width: | Height: | Size: 463 B |
Before Width: | Height: | Size: 505 B |
Before Width: | Height: | Size: 340 B |
Before Width: | Height: | Size: 362 B |
Before Width: | Height: | Size: 436 B |
Before Width: | Height: | Size: 467 B |
Before Width: | Height: | Size: 213 B |
Before Width: | Height: | Size: 222 B |
Before Width: | Height: | Size: 234 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 943 B |
Before Width: | Height: | Size: 932 B |
Before Width: | Height: | Size: 455 B |
Before Width: | Height: | Size: 458 B |
Before Width: | Height: | Size: 531 B |
Before Width: | Height: | Size: 431 B |
Before Width: | Height: | Size: 223 B |
Before Width: | Height: | Size: 463 B |
Before Width: | Height: | Size: 297 B |
Before Width: | Height: | Size: 324 B |
Before Width: | Height: | Size: 430 B |
Before Width: | Height: | Size: 424 B |
Before Width: | Height: | Size: 492 B |
Before Width: | Height: | Size: 169 B |
Before Width: | Height: | Size: 433 B |
Before Width: | Height: | Size: 167 B |
Before Width: | Height: | Size: 405 B |
Before Width: | Height: | Size: 421 B |
Before Width: | Height: | Size: 241 B |
Before Width: | Height: | Size: 326 B |
Before Width: | Height: | Size: 260 B |
Before Width: | Height: | Size: 324 B |
Before Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 342 B |
Before Width: | Height: | Size: 176 B |
Before Width: | Height: | Size: 349 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 717 B |
Before Width: | Height: | Size: 193 B |
Before Width: | Height: | Size: 317 B |
Before Width: | Height: | Size: 312 B |
Before Width: | Height: | Size: 304 B |
Before Width: | Height: | Size: 622 B |
Before Width: | Height: | Size: 623 B |
Before Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 393 B |
Before Width: | Height: | Size: 483 B |
Before Width: | Height: | Size: 260 B |
Before Width: | Height: | Size: 273 B |
Before Width: | Height: | Size: 277 B |
Before Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 1,002 B |
Before Width: | Height: | Size: 795 B |
Before Width: | Height: | Size: 174 B |
Before Width: | Height: | Size: 343 B |
Before Width: | Height: | Size: 141 B |
Before Width: | Height: | Size: 309 B |
Before Width: | Height: | Size: 278 B |
Before Width: | Height: | Size: 306 B |
Before Width: | Height: | Size: 236 B |
Before Width: | Height: | Size: 242 B |
Before Width: | Height: | Size: 152 B |
Before Width: | Height: | Size: 161 B |
Before Width: | Height: | Size: 253 B |
Before Width: | Height: | Size: 261 B |
Before Width: | Height: | Size: 269 B |
Before Width: | Height: | Size: 190 B |
Before Width: | Height: | Size: 198 B |
Before Width: | Height: | Size: 235 B |
Before Width: | Height: | Size: 256 B |
Before Width: | Height: | Size: 133 B |
Before Width: | Height: | Size: 137 B |
Before Width: | Height: | Size: 141 B |
Before Width: | Height: | Size: 626 B |
Before Width: | Height: | Size: 813 B |
Before Width: | Height: | Size: 813 B |
Before Width: | Height: | Size: 382 B |
Before Width: | Height: | Size: 390 B |
Before Width: | Height: | Size: 303 B |
Before Width: | Height: | Size: 314 B |
Before Width: | Height: | Size: 154 B |