• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

TuxGuitar/H03-May-2022-81,20463,179

TuxGuitar-AudioUnit/H03-May-2022-835526

TuxGuitar-CoreAudio/H03-May-2022-743448

TuxGuitar-alsa/H03-May-2022-816583

TuxGuitar-ascii/H03-May-2022-462321

TuxGuitar-browser-ftp/H03-May-2022-1,202955

TuxGuitar-carbon-integration/H03-May-2022-636467

TuxGuitar-cocoa-integration/H03-May-2022-795622

TuxGuitar-community/H03-May-2022-2,4751,984

TuxGuitar-compat/H03-May-2022-5,2143,287

TuxGuitar-converter/H03-May-2022-1,043853

TuxGuitar-fluidsynth/H03-May-2022-2,0941,570

TuxGuitar-gervill/H03-May-2022-729581

TuxGuitar-gtp/H03-May-2022-5,7905,094

TuxGuitar-jack/H03-May-2022-2,9092,270

TuxGuitar-jsa/H03-May-2022-1,8861,542

TuxGuitar-jws/H03-May-2022-300259

TuxGuitar-lilypond/H03-May-2022-1,5951,300

TuxGuitar-midi/H03-May-2022-1,8951,546

TuxGuitar-musicxml/H03-May-2022-668538

TuxGuitar-oss/H03-May-2022-990721

TuxGuitar-pdf/H03-May-2022-361281

TuxGuitar-ptb/H03-May-2022-2,7292,114

TuxGuitar-tef/H03-May-2022-1,4791,156

TuxGuitar-tray/H03-May-2022-386290

TuxGuitar-tuner/H03-May-2022-1,7021,095

TuxGuitar-winmm/H03-May-2022-676477

misc/H03-May-2022-521400

AUTHORSH A D31-Oct-20093.2 KiB170109

COPYINGH A D31-Oct-200924.2 KiB16387

ChangeLogH A D31-Oct-2009469 1816

LICENSEH A D31-Oct-200924.2 KiB16387

READMEH A D31-Oct-20091.8 KiB4330

build_gcj.shH A D31-Oct-20091.7 KiB7756

README

1DESCRIPTION:
2TuxGuitar is a multitrack tablature editor and player written in Java-SWT.
3
4LICENSE:
5TuxGuitar is released under the GNU Lesser General Public License.
6
7REQUIREMENTS:
8Java Runtime Environment 1.4.X or later installed in your system.
9
10PROBLEMS:
11
12    * SWT:
13
14If you see an error like "java.lang.UnsatisfiedLinkError", you will need to replace your swt shared library files and jar
15packages compiled for your system. TuxGuitar comes with SWT for linux-x86, linux-x86_64, mac and win32-x86. make sure download
16the correct file. if you need another version, download your SWT and replace in lib folder.
17If you don't have SWT installed in one of this locations: /lib, /usr/lib, /usr/local/lib or TuxGuitar/lib.  You will need to
18add its path to the LD_LIBRARY_PATH and CLASSPATH environment vars.
19
20Export LD_LIBRARY_PATH and CLASSPATH:
21$export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/your_swt_library_folder/
22$export CLASSPATH=$CLASSPATH:/your_swt_library_folder/swt.jar
23$/home/user/TuxGuitar-*/TuxGuitar
24
25    * UNSUPPORTED CLASS VERSION:
26
27java.lang.UnsupportedClassVersionError. This means that your JVM is not compatible with the JVM used to create the binaries.
28If you see a message like this, you will need to rebuild TuxGuitar from sources.
29
30    * FAILDED TO LOAD PLUGINS:
31
32TuxGuitar 1.0 has better JVM compatibility than older releases. But some plugins (e.g: Java Sound Api plugin) still depends
33on Sun Java(TM) Development Kit (JDK) 5.0. if you have installed more than one JVM in your system, you can use one of these
34environment vars:  JAVA or JAVA_HOME to run TuxGuitar with a specified JVM.
35
36Export JAVA:
37$export JAVA=/usr/lib/jvm/java-1.5.0-sun/bin/java
38$/home/user/TuxGuitar-*/tuxguitar
39
40Export JAVA_HOME:
41$export JAVA_HOME=/usr/lib/jvm/java-1.5.0-sun
42$/home/user/TuxGuitar-*/tuxguitar
43