- + {isRecording && ( )} diff --git a/ts/session/constants.ts b/ts/session/constants.ts index 7cb80abae..36c14e356 100644 --- a/ts/session/constants.ts +++ b/ts/session/constants.ts @@ -50,28 +50,8 @@ export const VALIDATION = { }; export const UI = { - // Pixels (scroll) from the top of the top of message container - // at which more messages should be loaded - MESSAGE_CONTAINER_BUFFER_OFFSET_PX: 1, - COLORS: { // COMMON - WHITE: '#FFFFFF', - WHITE_PALE: '#AFAFAF', GREEN: '#00F782', - - // CAUTION - WARNING: '#FFC02E', - - // SEMANTIC COLORS - DANGER: '#FF453A', - DANGER_ALT: '#FF4538', - }, - - SPACING: { - marginXs: '5px', - marginSm: '10px', - marginMd: '15px', - marginLg: '20px', }, }; diff --git a/ts/session/sending/MessageSender.ts b/ts/session/sending/MessageSender.ts index fa0819186..d65ceb7f4 100644 --- a/ts/session/sending/MessageSender.ts +++ b/ts/session/sending/MessageSender.ts @@ -130,7 +130,14 @@ export async function TEST_sendMessageToSnode( const data64 = window.dcodeIO.ByteBuffer.wrap(data).toString('base64'); const swarm = await getSwarmFor(pubKey); - window?.log?.debug('Sending envelope with timestamp: ', timestamp, ' to ', ed25519Str(pubKey)); + window?.log?.debug( + 'Sending envelope with timestamp: ', + timestamp, + ' to ', + ed25519Str(pubKey), + ' size base64:', + data64.length + ); // send parameters const params = { pubKey, From 36eb6c8d8e78367debd927bcb196a8ce498de59d Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 22 Mar 2022 11:00:15 +1100 Subject: [PATCH 4/5] bump to 1.8.3 with calls enabled --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 517182495..75d367f9f 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "session-desktop", "productName": "Session", "description": "Private messaging from your desktop", - "version": "1.8.2", + "version": "1.8.3", "license": "GPL-3.0", "author": { "name": "Oxen Labs", From b366db1bb79862484c5c88f7dde20aa2e97143d9 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 22 Mar 2022 11:18:01 +1100 Subject: [PATCH 5/5] turn call ON --- preload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preload.js b/preload.js index e3f05df0f..e0c56b2d6 100644 --- a/preload.js +++ b/preload.js @@ -31,7 +31,7 @@ window.getNodeVersion = () => config.node_version; window.sessionFeatureFlags = { useOnionRequests: true, - useCallMessage: false, + useCallMessage: true, }; window.versionInfo = {