From bae679f19a0b09526a5e7193c1c5c2fc0562448d Mon Sep 17 00:00:00 2001 From: Adib23704 Date: Mon, 4 Nov 2024 19:21:07 +0600 Subject: [PATCH] Typo fixation --- README.md | 4 ++-- main.js | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9f25258..c3aab8c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Tuya Smart Taskbar This app provides enhanced smart device control with integration to various platforms, allowing users to manage their devices directly from the taskbar with ease and efficiency. -![GitHub Release](https://img.shields.io/github/v/release/Adib23704/Tuya-Taskbar-App?style=for-the-badge) ![GitHub watchers](https://img.shields.io/github/watchers/Adib23704/Tuya-Taskbar-App?style=for-the-badge) ![GitHub forks](https://img.shields.io/github/forks/Adib23704/Tuya-Taskbar-App?style=for-the-badge) ![GitHub Repo stars](https://img.shields.io/github/stars/Adib23704/Tuya-Taskbar-App?style=for-the-badge) +![GitHub Release](https://img.shields.io/github/v/release/Adib23704/Tuya-Smart-Taskbar?style=for-the-badge) ![GitHub watchers](https://img.shields.io/github/watchers/Adib23704/Tuya-Smart-Taskbar?style=for-the-badge) ![GitHub forks](https://img.shields.io/github/forks/Adib23704/Tuya-Smart-Taskbar?style=for-the-badge) ![GitHub Repo stars](https://img.shields.io/github/stars/Adib23704/Tuya-Smart-Taskbar?style=for-the-badge) -![GitHub last commit](https://img.shields.io/github/last-commit/Adib23704/Tuya-Taskbar-App?style=for-the-badge) ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/Adib23704/Tuya-Taskbar-App/build.yml?style=for-the-badge) ![GitHub Downloads (all assets, latest release)](https://img.shields.io/github/downloads/Adib23704/Tuya-Taskbar-App/latest/total?style=for-the-badge) +![GitHub last commit](https://img.shields.io/github/last-commit/Adib23704/Tuya-Smart-Taskbar?style=for-the-badge) ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/Adib23704/Tuya-Smart-Taskbar/build.yml?style=for-the-badge) ![GitHub Downloads (all assets, latest release)](https://img.shields.io/github/downloads/Adib23704/Tuya-Smart-Taskbar/latest/total?style=for-the-badge) diff --git a/main.js b/main.js index 484c52b..ac25c6f 100644 --- a/main.js +++ b/main.js @@ -8,7 +8,7 @@ import fetch from 'node-fetch'; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const appVersion = app.getVersion(); -const downloadUrl = 'https://github.com/Adib23704/Tuya-Taskbar-App/releases/latest'; +const downloadUrl = 'https://github.com/Adib23704/Tuya-Smart-Taskbar/releases/latest'; let tray = null; let currentContextMenu = null; @@ -255,7 +255,7 @@ function openConfigWindow() { nodeIntegration: true, contextIsolation: false, }, - title: 'Smart Taskbar Config', + title: 'Tuya Smart Taskbar Config', icon: defaultIconPath, autoHideMenuBar: true, center: true, @@ -288,7 +288,7 @@ function openAboutWindow() { nodeIntegration: true, contextIsolation: false, }, - title: 'About Tuya Taskbar App', + title: 'About Tuya Smart Taskbar', icon: defaultIconPath, autoHideMenuBar: true, center: true, @@ -328,7 +328,7 @@ app.whenReady().then(() => { ipcMain.on('check-for-update', async (event) => { try { const response = await fetch( - 'https://raw.githubusercontent.com/Adib23704/Tuya-Taskbar-App/refs/heads/master/package.json' + 'https://raw.githubusercontent.com/Adib23704/Tuya-Smart-Taskbar/refs/heads/master/package.json' ); const data = await response.json(); const latestVersion = data.version;