From 5d19e17a0bb6176837f3a807340ced30f8dead2aee6eef26627606285826f95b Mon Sep 17 00:00:00 2001 From: AidarKC Date: Tue, 1 Sep 2026 18:50:18 +0400 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D0=BE=D1=82=D0=BA=D1=80=D1=8B=D1=82=D0=B8=D0=B5?= =?UTF-8?q?=20=D0=BB=D0=B8=D1=87=D0=BD=D1=8B=D1=85=20=D1=81=D0=BE=D0=BE?= =?UTF-8?q?=D0=B1=D1=89=D0=B5=D0=BD=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VERSION.properties | 2 +- shine-UI/js/pages/messages-list.js | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/VERSION.properties b/VERSION.properties index 170f393a..7a5c2398 100644 --- a/VERSION.properties +++ b/VERSION.properties @@ -1,2 +1,2 @@ -client.version=1.11.1 +client.version=1.11.2 server.version=1.9.0 diff --git a/shine-UI/js/pages/messages-list.js b/shine-UI/js/pages/messages-list.js index 6c4f8b90..d92fb8d1 100644 --- a/shine-UI/js/pages/messages-list.js +++ b/shine-UI/js/pages/messages-list.js @@ -22,6 +22,12 @@ const SVG_CHEVRON = ` `; +const RELATION_ORDER = new Map([ + ['close_friend', 0], + ['friend', 1], + ['contact', 2], + ['none', 99], +]); const DM_BLOB_PREVIEW_CACHE = new Map(); const DM_BLOB_PREVIEW_PENDING = new Map(); function normalizeRelationFlag(value) {