Skip to content

Commit 3087c96

Browse files
authored
Merge pull request #33 from ewenme/feedback
links
2 parents 9fbb9e9 + bd5c206 commit 3087c96

File tree

5 files changed

+15
-27
lines changed

5 files changed

+15
-27
lines changed

src/about.js

Lines changed: 12 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import React from "react";
2-
31
function About() {
42
return (
53
<div className="prose">
@@ -11,31 +9,24 @@ function About() {
119
<a href="https://en.wikipedia.org/wiki/Traktor">Traktor</a> into
1210
tracklists.
1311
</p>
14-
<p>
15-
<a href="https://ewen6.typeform.com/to/meXt691B">Feedback welcome :]</a>
16-
</p>
17-
<p>
18-
<a href="https://github.com/ewenme/tracklister">Pull Requests also welcome !</a>
19-
</p>
2012
<h4>Rekordbox support</h4>
2113
<p>
22-
Any playlist can be exported from Rekordbox by right-clicking,
23-
selecting "Export a playlist to a file", then "Export a playlist
24-
to a file for KUVO (*.txt)".
25-
N.B. history files can be
26-
exported in the same way — find them under the "Histories" tab
27-
inside the explorer pane.
14+
To export a playlist or history file from Rekordbox, right-click it and
15+
select "Export a playlist to a file" → "Export a playlist to a
16+
file for KUVO (*.txt)".
2817
</p>
2918
<h4>Traktor support</h4>
3019
<p>
31-
Any playlist can be exported from Traktor by right-clicking, then
32-
selecting "Export Playlist", and ensuring "NML" filetype is
33-
active. Traktor also exports all sessions as .nml history files —
34-
see{" "}
20+
To export a playlist from Traktor, right-click it, select
21+
"Export Playlist", and ensure the filetype is set to "NML".
22+
Traktor saves all sessions as .nml history files —{" "}
3523
<a href="https://support.native-instruments.com/hc/en-us/articles/210274225-What-Files-and-Folders-does-TRAKTOR-Install-on-my-System-">
36-
this article
37-
</a>{" "}
38-
for more info.
24+
learn more here
25+
</a>
26+
.
27+
</p>
28+
<p>
29+
Made by <a href="https://ewen.io">ewen</a>. <a href="https://github.com/ewenme/tracklister">View source</a>.
3930
</p>
4031
</div>
4132
)

src/app.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { Component } from "react";
1+
import { Component } from "react";
22
import Dropzone from "react-dropzone";
33
import Tracklist from "./tracklist";
44
import TrackNoToggle from "./track-no-toggle";
@@ -58,8 +58,8 @@ class App extends Component {
5858
const { track_data, track_numbers } = this.state;
5959

6060
return (
61-
<div className="container mx-auto flex flex-col md:flex-row p-4 gap-4 md:gap-6">
62-
<div className="w-full md:w-64 shrink-0 p-4 border-4 min-h-[120px] md:min-h-0">
61+
<div className="container mx-auto flex flex-col p-4 gap-4 md:gap-6">
62+
<div className="w-full p-4 border-4">
6363
<Dropzone onDrop={this.onDrop} accept=".nml, .txt" multiple={false}>
6464
{({ getRootProps, getInputProps, isDragActive }) => (
6565
<div className="flex h-full items-center justify-center text-center" {...getRootProps({})}>

src/clipboard.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from "react";
21
import useClipboard from "react-use-clipboard";
32

43
function tracksAsString(tracks, track_no_status) {

src/track-no-toggle.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from "react";
21
import Toggle from "react-toggle";
32

43
function TrackNoToggle(props) {

src/tracklist.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from "react";
21
import About from "./about.js";
32

43
const TrackLayout = props => {

0 commit comments

Comments
 (0)