Skip to content

Commit

Permalink
ready for v1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlobu committed Feb 21, 2021
1 parent 1249d4a commit bee73d9
Show file tree
Hide file tree
Showing 10 changed files with 116 additions and 8 deletions.
90 changes: 88 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

<br/>
<br/>

# 1.0.6 (20 Feb 2021)

Changes:

- added locales for Russian and Ukrainian languages
- minor UI improvements

<br/>
<br/>

# 1.0.5 (7 Feb 2021)

Changes:

- Fix quality is not set to 100% when sharing started: https://github.com/pavlobu/deskreen/issues/100

<br/>
<br/>

# 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

<br/>
<br/>

# 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

<br/>
<br/>

# 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

<br/>
<br/>

# 1.0.1 (25 Jan 2021)

Changes:

- Fix typos in Deskreen. Special thanks to @EdwardBetts

<br/>
<br/>

# 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
4 changes: 4 additions & 0 deletions app/app.global.css
Original file line number Diff line number Diff line change
Expand Up @@ -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%;
}
Expand Down
6 changes: 6 additions & 0 deletions app/components/ConnectedDevicesListDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,9 @@ export default function ConnectedDevicesListDrawer(
setIsAlertDisconectAllOpen(true);
}}
icon="disable"
style={{
borderRadius: '100px',
}}
>
{t('Disconnect all devices')}
</Button>
Expand Down Expand Up @@ -225,6 +228,9 @@ export default function ConnectedDevicesListDrawer(
handleDisconnectAndHideOneDevice(device.id);
}}
icon="disable"
style={{
borderRadius: '100px',
}}
>
{t('Disconnect')}
</Button>
Expand Down
2 changes: 1 addition & 1 deletion app/components/StepperPanel/DeviceConnectedInfoButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const getDeviceConnectedPopoverContent = (
onClick={() => {
handleDisconnect();
}}
style={{ width: '100%', borderRadius: '5px' }}
style={{ width: '100%', borderRadius: '100px' }}
>
{disconnectButtonText}
</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ exports[`should match exact snapshot 1`] = `
onClick={[Function]}
style={
Object {
"borderRadius": "5px",
"borderRadius": "100px",
"width": "100%",
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/components/TopPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}}
>
<Icon
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ exports[`should match exact snapshot 1`] = `
<button
class="bp3-button bp3-disabled bp3-intent-danger"
disabled=""
style="border-radius: 100px;"
tabindex="-1"
type="button"
>
Expand Down Expand Up @@ -210,6 +211,7 @@ exports[`should match exact snapshot 1`] = `
<button
class="bp3-button bp3-disabled bp3-intent-danger"
disabled=""
style="border-radius: 100px;"
tabindex="-1"
type="button"
>
Expand Down Expand Up @@ -400,13 +402,23 @@ exports[`should match exact snapshot 1`] = `
icon="disable"
intent="danger"
onClick={[Function]}
style={
Object {
"borderRadius": "100px",
}
}
>
<button
className="bp3-button bp3-disabled bp3-intent-danger"
disabled={true}
onBlur={[Function]}
onKeyDown={[Function]}
onKeyUp={[Function]}
style={
Object {
"borderRadius": "100px",
}
}
tabIndex={-1}
type="button"
>
Expand Down
2 changes: 1 addition & 1 deletion app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "deskreen",
"productName": "Deskreen",
"version": "1.0.6",
"version": "1.0.7",
"description": "Deskreen turns any device into a secondary screen for your computer",
"main": "./main.prod.js",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "deskreen",
"productName": "Deskreen",
"version": "1.0.6",
"version": "1.0.7",
"description": "Deskreen turns any device into a secondary screen for your computer",
"scripts": {
"build": "yarn build-client && yarn build-main && yarn build-renderer",
Expand Down

0 comments on commit bee73d9

Please sign in to comment.