Skip to content

Commit

Permalink
Typo fixation
Browse files Browse the repository at this point in the history
  • Loading branch information
Adib23704 committed Nov 4, 2024
1 parent 9bc4f4a commit bae679f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
8 changes: 4 additions & 4 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit bae679f

Please sign in to comment.