Giter Site home page Giter Site logo

replicatorg's Issues

OS X 10.15 not running

This no longer runs on OS X because Apple has ended support for 32-bit applications.
Is there a quick fix for this, or is the software essentially dead on OS X now?

Trunk doesn't compile

I've downloaded your head state and tried to compile it on fresh Ubuntu 14.10 (Fully updated as of 2015-01-27). I get the following build message:

j@j-virtual-machine:~/MakerBot/HostSoftware/ReplicatorG/jetty840/ReplicatorG-master$ ./run-from-git.sh 
fatal: Not a git repository (or any of the parent directories): .git
fatal: Not a git repository (or any of the parent directories): .git
fatal: Not a git repository (or any of the parent directories): .git
Buildfile: /home/j/MakerBot/HostSoftware/ReplicatorG/jetty840/ReplicatorG-master/build.xml
     [echo] Linux-amd64

compile:
    [javac] Compiling 1 source file to /home/j/MakerBot/HostSoftware/ReplicatorG/jetty840/ReplicatorG-master/build/classes
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 1.5
    [javac] 1 warning

jar:
      [jar] Building jar: /home/j/MakerBot/HostSoftware/ReplicatorG/jetty840/ReplicatorG-master/build/jar/ReplicatorG.jar

run:
     [java] Jan 27, 2015 11:00:22 PM replicatorg.machine.MachineFactory load
     [java] SEVERE: Could not load machine 'The Replicator Dual' no machineNode found
     [java] java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path thrown while loading gnu.io.RXTXCommDriver
     [java] Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path
     [java]     at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1886)
     [java]     at java.lang.Runtime.loadLibrary0(Runtime.java:849)
     [java]     at java.lang.System.loadLibrary(System.java:1088)
     [java]     at gnu.io.CommPortIdentifier.<clinit>(CommPortIdentifier.java:83)
     [java]     at replicatorg.app.util.serial.Serial.scanSerialNames(Serial.java:103)
     [java]     at replicatorg.app.ui.MainWindow.reloadSerialMenu(MainWindow.java:691)
     [java]     at replicatorg.app.ui.MainWindow.buildMachineMenu(MainWindow.java:1247)
     [java]     at replicatorg.app.ui.MainWindow.<init>(MainWindow.java:334)
     [java]     at replicatorg.app.Base$2.run(Base.java:656)
     [java]     at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:312)
     [java]     at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:738)
     [java]     at java.awt.EventQueue.access$300(EventQueue.java:103)
     [java]     at java.awt.EventQueue$3.run(EventQueue.java:699)
     [java]     at java.awt.EventQueue$3.run(EventQueue.java:697)
     [java]     at java.security.AccessController.doPrivileged(Native Method)
     [java]     at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
     [java]     at java.awt.EventQueue.dispatchEvent(EventQueue.java:708)
     [java]     at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
     [java]     at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
     [java]     at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
     [java]     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
     [java]     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
     [java]     at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

Running on OSX 10.10

This is an old project, but still in use. Using Java 1.8 and newer rxtx drivers it still runs.

http://blog.brianhemeryck.me/installing-rxtx-on-mac-os-mountain-lion/ describes where to get newer drivers.

Using this command I managed to run the UI:

java -ea \
-Xmx2g \
-XX:+HeapDumpOnOutOfMemoryError \
-Djava.library.path=./ReplicatorG/build/macosx/dist \
-Dreplicatorg.app-resources=./ReplicatorG/build/shared/lib \
-Dreplicatorg.toolpath=./ReplicatorG/build/macosx/dist/tools \
-classpath \
./ReplicatorG/build/macosx/jarbundler-2.2.0.jar:/Library/Java/Extensions/RXTXcomm.jar:./ReplicatorG/build/shared/lib/filedrop.jar:./ReplicatorG/build/shared/lib/j3dcore.jar:./ReplicatorG/build/shared/lib/j3dutils.jar:./ReplicatorG/build/shared/lib/jcommon-1.0.16.jar:./ReplicatorG/build/shared/lib/jfreechart-1.0.13.jar:./ReplicatorG/build/shared/lib/miglayout-3.7.4.jar:./ReplicatorG/build/shared/lib/mrj.jar:./ReplicatorG/build/shared/lib/quaqua.jar:./ReplicatorG/build/shared/lib/twitter4j-2.0.10.jar:./ReplicatorG/build/shared/lib/vecmath.jar:/System/Library/Java:./ReplicatorG/build/jar/ReplicatorG-Dreplicatorg.app-resources=./ReplicatorG/build/shared/lib \
-Dreplicatorg.toolpath=./ReplicatorG/build/macosx/dist/tools \
-classpath \./ReplicatorG/build/macosx/jarbundler-2.2.0.jar:./ReplicatorG/build/shared/lib/RXTXcomm.jar:./ReplicatorG/build/shared/lib/filedrop.jar:./ReplicatorG/build/shared/lib/j3dcore.jar:./ReplicatorG/build/shared/lib/j3dutils.jar:./ReplicatorG/build/shared/lib/jcommon-1.0.16.jar:./ReplicatorG/build/shared/lib/jfreechart-1.0.13.jar:./ReplicatorG/build/shared/lib/miglayout-3.7.4.jar:./ReplicatorG/build/shared/lib/mrj.jar:./ReplicatorG/build/shared/lib/quaqua.jar:./ReplicatorG/build/shared/lib/twitter4j-2.0.10.jar:./ReplicatorG/build/shared/lib/vecmath.jar:/System/Library/Java:./ReplicatorG/build/jar/ReplicatorG.jar replicatorg.app.Base

This removes the 32 bit restriction that is added in the ant.properties and the 1.5 Java version from the build.xml file.

For those of you who are interested in running this on modern OSX's. Feel free to use this knowledge to create a new release.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.