Skip to content

Commit 9df4eaf

Browse files
committed
Rebrand to Manx Mixer 1.0.0-M1
1 parent ff05304 commit 9df4eaf

File tree

6 files changed

+20
-17
lines changed

6 files changed

+20
-17
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 asturlynx
3+
Copyright (c) 2018 Aster Lynx
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>net.astur</groupId>
6-
<artifactId>HotLynx</artifactId>
7-
<version>1.0.0-SNAPSHOT</version>
5+
<groupId>net.astraloof</groupId>
6+
<artifactId>manx-mixer</artifactId>
7+
<version>1.0.0-M1</version>
88

9-
<name>HotLynx</name>
9+
<name>Manx Mixer</name>
1010
<description>Live audio mixer and recorder</description>
1111

1212
<dependencies>

src/main/java/net/astur/hotlynx/Logger.java renamed to src/main/java/net/astraloof/manx/Logger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.astur.hotlynx;
1+
package net.astraloof.manx;
22

33
import java.util.logging.Level;
44

src/main/java/net/astur/hotlynx/HotLynx.java renamed to src/main/java/net/astraloof/manx/Manx.java

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,31 @@
1-
package net.astur.hotlynx;
1+
package net.astraloof.manx;
22

33
import java.io.IOException;
44

55
import com.synthbot.jasiohost.AsioChannel;
66

7-
import net.astur.hotlynx.engine.AudioEngine;
7+
import net.astraloof.manx.engine.AudioEngine;
88

9-
public class HotLynx
9+
public class Manx
1010
{
11-
public static final HotLynx instance = new HotLynx();
12-
private Logger log = new Logger(HotLynx.class);
11+
public static final Manx instance = new Manx();
12+
public static final String APP_NAME = "Manx";
13+
public static final String APP_VERS = "1.0.0-M1";
14+
private Logger log = new Logger(Manx.class);
1315

1416
AsioChannel outL, outR;
1517
AudioEngine engine;
1618

1719
public static void main(String[] args)
1820
{
19-
System.setProperty("java.library.path", "./natives");
21+
// System.setProperty("java.library.path", "natives");
22+
System.setProperty("sun.java2d.opengl", "true");
2023
instance.start(args);
2124
}
2225

2326
public void start(String[] args)
2427
{
25-
log.info("HotLynx 1.0.0-SNAPSHOT");
28+
log.info(APP_NAME + " " + APP_VERS);
2629
log.info("Initializing audio engine");
2730

2831
engine = new AudioEngine();

src/main/java/net/astur/hotlynx/engine/AudioEngine.java renamed to src/main/java/net/astraloof/manx/engine/AudioEngine.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.astur.hotlynx.engine;
1+
package net.astraloof.manx.engine;
22

33
import java.util.List;
44
import java.util.Set;
@@ -8,7 +8,7 @@
88
import com.synthbot.jasiohost.AsioDriver;
99
import com.synthbot.jasiohost.AsioDriverListener;
1010

11-
import net.astur.hotlynx.Logger;
11+
import net.astraloof.manx.Logger;
1212

1313
public class AudioEngine implements AsioDriverListener
1414
{

src/main/java/net/astur/hotlynx/engine/AudioInterface.java renamed to src/main/java/net/astraloof/manx/engine/AudioInterface.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.astur.hotlynx.engine;
1+
package net.astraloof.manx.engine;
22

33
import java.util.HashSet;
44
import java.util.LinkedList;
@@ -8,7 +8,7 @@
88
import com.synthbot.jasiohost.AsioChannel;
99
import com.synthbot.jasiohost.AsioDriver;
1010

11-
import net.astur.hotlynx.Logger;
11+
import net.astraloof.manx.Logger;
1212

1313
public class AudioInterface
1414
{

0 commit comments

Comments
 (0)