chore: rebranded to trackpull
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
votify:
|
trackpull:
|
||||||
build: .
|
build: .
|
||||||
container_name: votify-web
|
container_name: trackpull
|
||||||
ports:
|
ports:
|
||||||
- "${PORT:-5000}:5000"
|
- "${PORT:-5000}:5000"
|
||||||
env_file:
|
env_file:
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 6.7 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 19 KiB |
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Votify Web",
|
"name": "Trackpull",
|
||||||
"short_name": "Votify",
|
"short_name": "Trackpull",
|
||||||
"description": "Music download manager",
|
"description": "Music download manager",
|
||||||
"start_url": "/",
|
"start_url": "/",
|
||||||
"display": "standalone",
|
"display": "standalone",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Votify Web - Offline</title>
|
<title>Trackpull - Offline</title>
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div>
|
<div>
|
||||||
<h1><span>Votify</span> Web</h1>
|
<h1><span>Track</span>pull</h1>
|
||||||
<p>You are currently offline.<br>Please check your connection and try again.</p>
|
<p>You are currently offline.<br>Please check your connection and try again.</p>
|
||||||
<button onclick="window.location.reload()">Retry</button>
|
<button onclick="window.location.reload()">Retry</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const CACHE_NAME = 'votify-v1';
|
const CACHE_NAME = 'trackpull-v1';
|
||||||
const APP_SHELL = [
|
const APP_SHELL = [
|
||||||
'/',
|
'/',
|
||||||
'/static/favicon.ico',
|
'/static/favicon.ico',
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Votify Web</title>
|
<title>Trackpull</title>
|
||||||
<link rel="icon" href="/static/favicon.ico" type="image/x-icon">
|
<link rel="icon" href="/static/favicon.ico" type="image/x-icon">
|
||||||
<link rel="manifest" href="/static/manifest.json">
|
<link rel="manifest" href="/static/manifest.json">
|
||||||
<meta name="theme-color" content="#1db954">
|
<meta name="theme-color" content="#1db954">
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||||
<meta name="apple-mobile-web-app-title" content="Votify Web">
|
<meta name="apple-mobile-web-app-title" content="Trackpull">
|
||||||
<link rel="apple-touch-icon" href="/static/icons/icon-192x192.png">
|
<link rel="apple-touch-icon" href="/static/icons/icon-192x192.png">
|
||||||
<style>
|
<style>
|
||||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
@@ -154,7 +154,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h1 style="cursor:pointer" onclick="showPage('unified')"><span>Votify</span> Web</h1>
|
<h1 style="cursor:pointer" onclick="showPage('unified')"><span>Track</span>pull</h1>
|
||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<button class="tab active" onclick="showPage('unified')">Download</button>
|
<button class="tab active" onclick="showPage('unified')">Download</button>
|
||||||
<button class="tab" onclick="showPage('jobs')">Jobs</button>
|
<button class="tab" onclick="showPage('jobs')">Jobs</button>
|
||||||
@@ -184,7 +184,7 @@
|
|||||||
<div id="page-download" class="page">
|
<div id="page-download" class="page">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<button class="btn btn-sm btn-secondary" onclick="showPage('unified')" style="margin-bottom:12px">← Back</button>
|
<button class="btn btn-sm btn-secondary" onclick="showPage('unified')" style="margin-bottom:12px">← Back</button>
|
||||||
<h2>Votify Download</h2>
|
<h2>Votify Direct</h2>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="urls">Spotify URLs (one per line)</label>
|
<label for="urls">Spotify URLs (one per line)</label>
|
||||||
<textarea id="urls" placeholder="https://open.spotify.com/track/... https://open.spotify.com/album/..."></textarea>
|
<textarea id="urls" placeholder="https://open.spotify.com/track/... https://open.spotify.com/album/..."></textarea>
|
||||||
@@ -304,7 +304,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<h2>Fallback Quality</h2>
|
<h2>Fallback Quality</h2>
|
||||||
<p style="font-size:0.85rem; color:var(--text2); margin-bottom:12px">Quality for Votify fallback when Monochrome can't find a track</p>
|
<p style="font-size:0.85rem; color:var(--text2); margin-bottom:12px">Quality for fallback when Monochrome can't find a track</p>
|
||||||
<select id="fallback-quality">
|
<select id="fallback-quality">
|
||||||
<option value="aac-medium">AAC 128kbps</option>
|
<option value="aac-medium">AAC 128kbps</option>
|
||||||
<option value="aac-high">AAC 256kbps (Premium)</option>
|
<option value="aac-high">AAC 256kbps (Premium)</option>
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Votify Web - Login</title>
|
<title>Trackpull - Login</title>
|
||||||
<link rel="icon" href="/static/favicon.ico" type="image/x-icon">
|
<link rel="icon" href="/static/favicon.ico" type="image/x-icon">
|
||||||
<link rel="manifest" href="/static/manifest.json">
|
<link rel="manifest" href="/static/manifest.json">
|
||||||
<meta name="theme-color" content="#1db954">
|
<meta name="theme-color" content="#1db954">
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||||
<meta name="apple-mobile-web-app-title" content="Votify Web">
|
<meta name="apple-mobile-web-app-title" content="Trackpull">
|
||||||
<link rel="apple-touch-icon" href="/static/icons/icon-192x192.png">
|
<link rel="apple-touch-icon" href="/static/icons/icon-192x192.png">
|
||||||
<style>
|
<style>
|
||||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<form class="login-card" method="POST" action="/login">
|
<form class="login-card" method="POST" action="/login">
|
||||||
<h1><span>Votify</span> Web</h1>
|
<h1><span>Track</span>pull</h1>
|
||||||
<p>Enter password to continue</p>
|
<p>Enter password to continue</p>
|
||||||
{% if error %}<div class="error">{{ error }}</div>{% endif %}
|
{% if error %}<div class="error">{{ error }}</div>{% endif %}
|
||||||
<input type="password" name="password" placeholder="Password" autofocus required>
|
<input type="password" name="password" placeholder="Password" autofocus required>
|
||||||
|
|||||||
Reference in New Issue
Block a user