Skip to content

Commit 99d8a7d

Browse files
committed
feat: various help text
Also added version number to navbar.
1 parent 5bf227c commit 99d8a7d

File tree

5 files changed

+19
-2
lines changed

5 files changed

+19
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tracklist-formatter",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"private": true,
55
"scripts": {
66
"serve": "vue-cli-service serve",

src/assets/stormdrain.jpg

60.5 KB
Loading

src/assets/stormdrain.png

-20.6 KB
Binary file not shown.

src/components/AppHeader.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<template>
22
<nav class="navbar">
3-
<img src="~@/assets/stormdrain.png" width="44" />
3+
<img src="~@/assets/stormdrain.jpg" width="44" />
44
<span class="navbar-text">Tracklist Formatter</span>
5+
<span class="navbar-text gray">v0.2.1</span>
56
</nav>
67
</template>
78

@@ -18,6 +19,10 @@ export default {
1819
text-align: center;
1920
}
2021
22+
.gray {
23+
color: #aaa;
24+
}
25+
2126
.navbar {
2227
background-color: #222;
2328
color: #fff;

src/views/MainView.vue

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,18 @@
88
placeholder="Paste a CSV..."
99
class="textbox"
1010
/>
11+
<span>
12+
Open your exported tracklist in any text editor of your choice and
13+
copypaste the contents here. Supported export formats: Pioneer
14+
Rekordbox TXT, Denon Engine DJ CSV, and VirtualDJ CSV.
15+
</span>
1116
</div>
1217
<div class="flex-item">
1318
<h3>Output</h3>
1419
<p class="textbox output">{{ outputTracklist }}</p>
20+
<span>
21+
Formatted tracklist will show up here as a list of "Artist - Title".
22+
</span>
1523
</div>
1624
</div>
1725
</div>
@@ -69,4 +77,8 @@ export default {
6977
.output {
7078
background-color: #eee;
7179
}
80+
81+
span {
82+
color: #ccc;
83+
}
7284
</style>

0 commit comments

Comments
 (0)