0
I Use This!
Moderate Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Jun 27, 2024 — Jun 27, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Added a couple pictures to the readme. More... almost 13 years ago
Updated readme with changelog. More... almost 13 years ago
Created a README file. More... almost 13 years ago
Added scrolling to the command table tab. Fixed the console scrolling. More... almost 13 years ago
Fixed an off-by-one error and deleted some test code. More... almost 13 years ago
Split the file command buffer into its own class. It doesn't do a whole lot but might make future features easier to implement. More... almost 13 years ago
Fixed up the linux packages so there are 32bit and 64bit packages. More... almost 13 years ago
One-Jar seems to be working, the "Universal" build and platform specific zip's seem to work on linux and OSX. My OSX has RXTX installed though so it isn't a perfect test. More... almost 13 years ago
Renamed the package from universal.g.code.sender to com.willwinder.universalgcodesender. More... almost 13 years ago
Removed 'stop' button, added a pause/resume button and added a cancel button. More... almost 13 years ago
Forgot to add these files for the One-Jar changes. More... almost 13 years ago
Experimenting with "One-Jar" for distribution. In the files section of Netbeans you can now right click build.xml and select dist-all. It creates a bunch of jar files containing all the other jars AND the native libraries! More... almost 13 years ago
after pressing stop I want to be able to enter commands More... almost 13 years ago
Merge remote-tracking branch 'upstream/master' More... almost 13 years ago
After pressing the stop button I want to be able to enter commands. More... almost 13 years ago
add new file type ngc for pycam default More... almost 13 years ago
Fixed a bug where manual commands were added the console window twice. More... almost 13 years ago
Heavily modified the console area. There are now two tabs, the command window looks identical to the old manual command mode. There is no longer separate logic for displaying file commands, that is now in the second tab in a table view. Also added a duration timer so you can see how long the file send takes. More... almost 13 years ago
Added usability suggestions from alpharesearch. Refactored file streaming logic to make it easier to add more features. More... almost 13 years ago
add start script and lib to dist folder when building More... almost 13 years ago
auto scroll by default and auto focus for command line More... almost 13 years ago
Added command history to the command field. More... almost 13 years ago
Added the speed override functions. More... almost 13 years ago
Refactored CommPortHelper into three parts. 1. CommPortUtils (for static helpers/constants) 2. SerialWriter (for the writer thread) 3. SerialCommunicator (for the serial communication layer used by the GUI. More... almost 13 years ago
Removed the need for 'high performance mode' by using thread.notifyAll() . CommPortHelper now throws exceptions for the GUI to display. Added folders to the GcodefileTypeFilter. More... almost 13 years ago
File stream performance improvements. Performance is now on-par with stream.py, I added the same algorithm to track the GRBL buffer and keep it filled. Also added a checkbox to the GUI that will toggle whether the writer thread polls the lineBuffer or sleeps 1 second between checks. This should be replaced with a call to notify the thread. More... about 13 years ago
Implemented command streaming from a file. More... about 13 years ago
Accidently deleted the output stream completely. More... about 13 years ago
Switched from using a serial-reader thread to a serial-writer thread. The writer will always brainlessly send data across the serial port as it is received. The writer has multiple contexts: command mode vs. file mode, so I wanted that to be in the main thread. More... about 13 years ago
Implemented close serial connection button. Added GUI open/close state changes (activating/deactivating fields). More... about 13 years ago