diff --git a/CHANGELOG.md b/CHANGELOG.md index 91b65a2d..05ea3246 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,89 @@ -# 0.0.1 (8 Aug 2020) +# 1.0.7 (21 Feb 2021) -Started with [electron-react-boilerplate v1.3.0](https://github.com/electron-react-boilerplate/electron-react-boilerplate) +Changes: + +- added locales for Chinese language, special thanks to @taotieren +- minor UI improvements + +
+
+ +# 1.0.6 (20 Feb 2021) + +Changes: + +- added locales for Russian and Ukrainian languages +- minor UI improvements + +
+
+ +# 1.0.5 (7 Feb 2021) + +Changes: + +- Fix quality is not set to 100% when sharing started: https://github.com/pavlobu/deskreen/issues/100 + +
+
+ +# 1.0.4 (4 Feb 2021) + +Changes: + +- add Flip button in client web view (gear icon button, next to play button) for use a tablet as a teleprompter +- set 100% video quality by default when screen sharing starts +- add polyfills to remove issue of blank pages on old browsers. Thanks @klarkc +- display error message in client viewer if there is WebRTC error + +
+
+ +# 1.0.3 (29 Jan 2021) + +Changes: + +- remove pulsing animation on orange step bubbles +- portable version on windows +- release draft before publishing release +- remove non-working macOS zip from release + +
+
+ +# 1.0.2 (27 Jan 2021) + +Changes: + +- Security patches +- Updated electron version to 11.2.1 +- fix for https://github.com/pavlobu/deskreen/issues/45 +- ? fix for https://github.com/pavlobu/deskreen/issues/56 +- ? fix for https://github.com/pavlobu/deskreen/issues/17 + +
+
+ +# 1.0.1 (25 Jan 2021) + +Changes: + +- Fix typos in Deskreen. Special thanks to @EdwardBetts + +
+
+ +# 1.0.0 (18 Jan 2021) + +Features: + +- works with WiFi or LAN +- use any device with web browser as second screen for your computer (using Display Dummy Plug) +- use any device web browser to mirror your computer's screen +- use any device web browser to view a single application window from your computer's screen +- supports multiple screen sharing sessions to as many devices as you want +- supports changing picture quality while sharing a screen. +- Picture auto quality change supported. (for performance boost while watching youtube video for example) +- End-to-end security +- dark mode UI support +- available for Win / Mac / Linux diff --git a/app/app.global.css b/app/app.global.css index 999cb6f8..14a68157 100644 --- a/app/app.global.css +++ b/app/app.global.css @@ -29,6 +29,10 @@ body { background-color: var(--light-bg-color); } +.bp3-alert-footer > button { + border-radius: 100px; +} + #intermediate-step-container > .react-reveal { width: 100%; } diff --git a/app/components/ConnectedDevicesListDrawer.tsx b/app/components/ConnectedDevicesListDrawer.tsx index 7a5656c4..8a309ee7 100644 --- a/app/components/ConnectedDevicesListDrawer.tsx +++ b/app/components/ConnectedDevicesListDrawer.tsx @@ -170,6 +170,9 @@ export default function ConnectedDevicesListDrawer( setIsAlertDisconectAllOpen(true); }} icon="disable" + style={{ + borderRadius: '100px', + }} > {t('Disconnect all devices')} @@ -225,6 +228,9 @@ export default function ConnectedDevicesListDrawer( handleDisconnectAndHideOneDevice(device.id); }} icon="disable" + style={{ + borderRadius: '100px', + }} > {t('Disconnect')} diff --git a/app/components/StepperPanel/DeviceConnectedInfoButton.tsx b/app/components/StepperPanel/DeviceConnectedInfoButton.tsx index 5c0918fc..cfcd593f 100644 --- a/app/components/StepperPanel/DeviceConnectedInfoButton.tsx +++ b/app/components/StepperPanel/DeviceConnectedInfoButton.tsx @@ -38,7 +38,7 @@ const getDeviceConnectedPopoverContent = ( onClick={() => { handleDisconnect(); }} - style={{ width: '100%', borderRadius: '5px' }} + style={{ width: '100%', borderRadius: '100px' }} > {disconnectButtonText} diff --git a/app/components/StepperPanel/__snapshots__/DeviceConnectedInfoButton.spec.tsx.snap b/app/components/StepperPanel/__snapshots__/DeviceConnectedInfoButton.spec.tsx.snap index 6082c516..78bd31ba 100644 --- a/app/components/StepperPanel/__snapshots__/DeviceConnectedInfoButton.spec.tsx.snap +++ b/app/components/StepperPanel/__snapshots__/DeviceConnectedInfoButton.spec.tsx.snap @@ -60,7 +60,7 @@ exports[`should match exact snapshot 1`] = ` onClick={[Function]} style={ Object { - "borderRadius": "5px", + "borderRadius": "100px", "width": "100%", } } diff --git a/app/components/TopPanel.tsx b/app/components/TopPanel.tsx index b80bb5da..c0cd4ac8 100644 --- a/app/components/TopPanel.tsx +++ b/app/components/TopPanel.tsx @@ -143,7 +143,7 @@ export default function TopPanel(props: any) { intent="none" className={getClassesCallback().topPanelControlButton} onClick={() => { - shell.openExternal('https://www.deskreen.com/#howtos'); + shell.openExternal('https://www.deskreen.com/?#howtos'); }} > @@ -210,6 +211,7 @@ exports[`should match exact snapshot 1`] = `