Merge pull request #1938 from oxen-io/clearnet

Session v1.7.3
pull/1998/head v1.7.3
Audric Ackermann 4 years ago committed by GitHub
commit 65930118fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -441,5 +441,7 @@
"deletionTypeTitle": "Deletion Type", "deletionTypeTitle": "Deletion Type",
"deleteJustForMe": "Delete just for me", "deleteJustForMe": "Delete just for me",
"messageDeletedPlaceholder": "This message has been deleted", "messageDeletedPlaceholder": "This message has been deleted",
"messageDeleted": "Message deleted" "messageDeleted": "Message deleted",
"surveyTitle": "Take our Session Survey",
"goToOurSurvey": "Go to our survey"
} }

@ -2,7 +2,7 @@
"name": "session-desktop", "name": "session-desktop",
"productName": "Session", "productName": "Session",
"description": "Private messaging from your desktop", "description": "Private messaging from your desktop",
"version": "1.7.2", "version": "1.7.3",
"license": "GPL-3.0", "license": "GPL-3.0",
"author": { "author": {
"name": "Loki Project", "name": "Loki Project",

@ -1094,7 +1094,8 @@ input {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin: $session-margin-sm; margin: $session-margin-sm;
align-items: flex-start; align-items: center;
min-width: 10vw;
position: relative; position: relative;
.onion__node { .onion__node {
@ -1121,6 +1122,7 @@ input {
} }
.onion__node__country { .onion__node__country {
margin: $session-margin-sm; margin: $session-margin-sm;
min-width: 150px;
} }
.onion__growing-icon { .onion__growing-icon {

@ -19,6 +19,8 @@ import { Flex } from '../basic/Flex';
import { SessionIcon, SessionIconButton } from '../session/icon'; import { SessionIcon, SessionIconButton } from '../session/icon';
import { SessionSpinner } from '../session/SessionSpinner'; import { SessionSpinner } from '../session/SessionSpinner';
import { SessionWrapperModal } from '../session/SessionWrapperModal'; import { SessionWrapperModal } from '../session/SessionWrapperModal';
// tslint:disable-next-line: no-submodule-imports
import useHover from 'react-use/lib/useHover';
export type StatusLightType = { export type StatusLightType = {
glowStartDelay: number; glowStartDelay: number;
@ -26,6 +28,25 @@ export type StatusLightType = {
color?: string; color?: string;
}; };
const OnionCountryDisplay = ({
index,
labelText,
snodeIp,
}: {
snodeIp?: string;
labelText: string;
index: number;
}) => {
const element = (hovered: boolean) => (
<div className="onion__node__country" key={`country-${index}`}>
{hovered && snodeIp ? snodeIp : labelText}
</div>
);
const [hoverable] = useHover(element);
return hoverable;
};
const OnionPathModalInner = () => { const OnionPathModalInner = () => {
const onionPath = useSelector(getFirstOnionPath); const onionPath = useSelector(getFirstOnionPath);
const isOnline = useSelector(getIsOnline); const isOnline = useSelector(getIsOnline);
@ -69,14 +90,12 @@ const OnionPathModalInner = () => {
{nodes.map((snode: Snode | any, index: number) => { {nodes.map((snode: Snode | any, index: number) => {
let labelText = snode.label let labelText = snode.label
? snode.label ? snode.label
: countryLookup.byIso(ip2country(snode.ip))?.country; : `${countryLookup.byIso(ip2country(snode.ip))?.country}`;
if (!labelText) { if (!labelText) {
labelText = window.i18n('unknownCountry'); labelText = window.i18n('unknownCountry');
} }
return labelText ? ( return labelText ? (
<div className="onion__node__country" key={`country-${index}`}> <OnionCountryDisplay index={index} labelText={labelText} snodeIp={snode.ip} />
{labelText}
</div>
) : null; ) : null;
})} })}
</Flex> </Flex>

@ -463,6 +463,23 @@ class SettingsViewInner extends React.Component<SettingsViewProps, State> {
info: (value: number) => `${value}%`, info: (value: number) => `${value}%`,
}, },
}, },
{
id: 'session-survey',
title: window.i18n('surveyTitle'),
description: undefined,
hidden: false,
type: SessionSettingType.Button,
category: SessionSettingCategory.Appearance,
setFn: undefined,
comparisonValue: undefined,
onClick: () => {
void shell.openExternal('https://getsession.org/survey');
},
content: {
buttonText: window.i18n('goToOurSurvey'),
buttonColor: SessionButtonColor.Primary,
},
},
{ {
id: 'help-translation', id: 'help-translation',
title: window.i18n('translation'), title: window.i18n('translation'),

Loading…
Cancel
Save