Skip to content

Commit 6f072fb

Browse files
committed
0.1.43
1 parent 5d95ea0 commit 6f072fb

File tree

8 files changed

+26
-36
lines changed

8 files changed

+26
-36
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hubtools-desktop",
3-
"version": "0.1.42",
3+
"version": "0.1.43",
44
"title": "HubTools Desktop",
55
"private": false,
66
"description": "A desktop app to help with HubSpot development",

release/app/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hubtools",
3-
"version": "0.1.42",
3+
"version": "0.1.43",
44
"description": "A desktop app to help with HubSpot development",
55
"license": "MIT",
66
"author": {

src/main/main.ts

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -32,26 +32,26 @@ class AppUpdater {
3232
log.transports.file.level = 'info';
3333
autoUpdater.logger = log;
3434

35-
// autoUpdater.on('checking-for-update', () => {
36-
// mainWindow?.webContents.send('receive-msg', {
37-
// autoDismiss: true,
38-
// text: 'Checking for app updates...',
39-
// });
40-
// });
41-
42-
// autoUpdater.on('update-available', () => {
43-
// mainWindow?.webContents.send('receive-msg', {
44-
// autoDismiss: true,
45-
// text: 'New app update found.',
46-
// });
47-
// });
48-
49-
// autoUpdater.on('update-downloaded', () => {
50-
// mainWindow?.webContents.send('receive-msg', {
51-
// autoDismiss: true,
52-
// text: 'New app update has been downloaded.',
53-
// });
54-
// });
35+
autoUpdater.on('checking-for-update', () => {
36+
mainWindow?.webContents.send('receive-msg', {
37+
autoDismiss: true,
38+
text: 'Checking for app updates...',
39+
});
40+
});
41+
42+
autoUpdater.on('update-available', () => {
43+
mainWindow?.webContents.send('receive-msg', {
44+
autoDismiss: true,
45+
text: 'New app update found.',
46+
});
47+
});
48+
49+
autoUpdater.on('update-downloaded', () => {
50+
mainWindow?.webContents.send('receive-msg', {
51+
autoDismiss: true,
52+
text: 'New app update will be installed on exit.',
53+
});
54+
});
5555

5656
autoUpdater.checkForUpdatesAndNotify();
5757

src/renderer/components/FieldList/FieldEditPanel.tsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,6 @@ export const FieldEditPanel: FC<FieldEditPanelProps> = ({
2121
values,
2222
...props
2323
}) => {
24-
// useEffect(() => {
25-
// const section = document.querySelector(`#edit-form-scroll`);
26-
27-
// if (!(section instanceof HTMLElement)) {
28-
// return;
29-
// }
30-
31-
// section.scrollTo({ top: 0, behavior: 'smooth' });
32-
// }, [editingField]);
33-
3424
return (
3525
<div
3626
{...props}

src/renderer/components/FieldList/FieldList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,6 @@ export const FieldList: FC<FieldListProps> = ({
426426

427427
<div
428428
style={{
429-
display: 'flex',
430429
justifyContent: 'flex-end',
431430
alignItems: 'center',
432431
maxWidth: '750px',
@@ -436,6 +435,7 @@ export const FieldList: FC<FieldListProps> = ({
436435
fontSize: 14,
437436
marginTop: 20,
438437
color: 'rgba(255, 255, 255, 0.75)',
438+
display: 'none',
439439
}}
440440
>
441441
<div
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const appVersion = '0.1.42';
1+
export const appVersion = '0.1.43';

0 commit comments

Comments
 (0)