Skip to content

Commit

Permalink
chore: rename visible names to Open Video Downloader (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
jely2002 committed Jul 14, 2021
1 parent f3bae3d commit 42b33b4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "youtube-dl-gui",
"version": "2.2.2",
"description": "youtube-dl-gui",
"description": "Open Video Downloader",
"main": "main.js",
"scripts": {
"start": "electron . --dev",
Expand Down Expand Up @@ -61,7 +61,7 @@
"include": "./build/vcredist.nsh",
"packElevateHelper": false
},
"productName": "YouTube Downloader GUI",
"productName": "Open Video Downloader",
"copyright": "Copyright © 2020-2021 Jelle Glebbeek",
"win": {
"target": "nsis",
Expand Down Expand Up @@ -106,12 +106,12 @@
},
"linux": {
"target": "AppImage",
"executableName": "youtube-dl-gui",
"executableName": "open-video-downloader",
"icon": "renderer/img/icon.png",
"synopsis": "A cross-platform GUI for youtube-dl",
"category": "X-utility",
"desktop": {
"Name": "YouTube-dl-GUI",
"Name": "Open-Video-Downloader",
"Icon": "youtube-dl-gui",
"Comment": "A cross-platform GUI for youtube-dl"
},
Expand Down
2 changes: 1 addition & 1 deletion renderer/renderer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline'">
<title>YouTube Downloader GUI</title>
<title>Open Video Downloader</title>
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="../node_modules/bootstrap-icons/font/bootstrap-icons.css">
<link rel="stylesheet" href="lib/select2.min.css">
Expand Down
2 changes: 1 addition & 1 deletion renderer/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async function init() {
} else {
new window.windowbar({'style':'win', 'dblClickable':false, 'fixed':true, 'title':document.title,'dark':true})
.appendTo(document.body)
$('.windowbar').prepend("<img src='img/icon-titlebar-dark.png' alt='youtube-dl-gui icon' class='windowbar-icon'>")
$('.windowbar').prepend("<img src='img/icon-titlebar-dark.png' alt='icon' class='windowbar-icon'>")
$('.windowbar-title').css("left", "45px")
}
$('.windowbar-minimize').on('click', () => {
Expand Down

0 comments on commit 42b33b4

Please sign in to comment.