FlatCAM fork for modern systems

Marius Stanciu bfd938e577 - aligned the Tcl commands display when the Help Tcl command is run without parameters пре 5 година
Utils ca4c7b245f - added a script to remove the bad profiles from resource pictures. From here: https://stackoverflow.com/questions/22745076/libpng-warning-iccp-known-incorrect-srgb-profile/43415650, link mentioned by @camellan (Andrey Kultyapov) пре 6 година
config 26fe1bf5e1 - if FlatCAM is started with the 'quit' or 'exit' as argument it will close immediately and it will close also another instance of FlatCAM that may be running пре 6 година
descartes 9f99520683 - fixed a bug in milling holes due of a message wrongly formatted пре 6 година
doc e945ced44b - modified the way FlatCAM preferences are saved. Now they can be saved as new files with .FlatConfig extension by the user and shared. пре 7 година
flatcamEditors dc1a198235 - added ability to use line width when adding shapes for both Legacy and OpenGL graphic engines пре 5 година
flatcamGUI 3735753a93 - fixed the Tcl Command Help to work as expected; made the text of the commands to be colored in Red color and bold пре 5 година
flatcamParsers fdd5344581 - fixed bug in Gerber parser that allowed loading as Gerber of a file that is not a Gerber пре 5 година
flatcamTools 3735753a93 - fixed the Tcl Command Help to work as expected; made the text of the commands to be colored in Red color and bold пре 5 година
locale d80de538e3 - modified all CTRL+ with Ctrl+ and all ALT+ with Alt+ and all SHIFT+ with Shift+. Fixed issue #387. пре 5 година
locale_template d80de538e3 - modified all CTRL+ with Ctrl+ and all ALT+ with Alt+ and all SHIFT+ with Shift+. Fixed issue #387. пре 5 година
preprocessors c5e4d72db8 - solved issue #381 where there was an error when trying to generate CNCJob out of an Excellon file that have a tool with only slots and no drills пре 5 година
share 0394011046 - added to GIT some missed files пре 5 година
tclCommands bfd938e577 - aligned the Tcl commands display when the Help Tcl command is run without parameters пре 5 година
tests a6b89dbf3a - moved back the ApertureMacro class to camlib for now and made some import changes in the new ParseGerber and ParseExcellon classes пре 6 година
.gitignore b9cbe97f4d - fixed display HPGL code geometry on canvas пре 7 година
CHANGELOG.md bfd938e577 - aligned the Tcl commands display when the Help Tcl command is run without parameters пре 5 година
FlatCAM.py c13721184c - if FlatCAM is not run with Python version >= 3.5 it will exit. пре 5 година
FlatCAMApp.py 1f36ed9369 - added an extra check if old preferences files are detected, a check if the type of the values is the same with the type in the current preferences file. If the type is not the same then the current type is preferred. пре 5 година
FlatCAMCommon.py abce81d802 - fixed issue #394 - the saveDialog in Linux did not added the selected extension пре 5 година
FlatCAMObj.py c5926ae99f - modified the extensions all over such the names include also the extension name. For Linux who does not display the extensions in the native FileDialog. пре 5 година
FlatCAMPool.py 32ff417a2c - fixed a bug in Excellon Editor that crashed the app when editing the first tool added automatically into a new black Excellon file пре 6 година
FlatCAMPostProc.py 2ca509ca04 - few bugs solved regarding the newly created empty objects пре 6 година
FlatCAMProcess.py 97024ed643 - corrected some issues and made Move Tool to show correctly when it is moving and when it is offsetting the objects position пре 6 година
FlatCAMTool.py a1499158c2 - refactored some of the code in the App class and created a new Tcl Command named Help пре 5 година
FlatCAMTranslation.py a9d69a57fe - make sure that the fixes above apply when rebooting app for theme change or for language change пре 6 година
FlatCAMWorker.py 4c1fdd2e2d - fixed bug in Tool Subtract that did not allow subtracting Gerber objects пре 6 година
FlatCAMWorkerStack.py dc6479210a - chagend the workers thread priority back to Normal пре 6 година
LICENSE f242e3163e - small changes (dates, version) пре 7 година
ObjectCollection.py 3c291f259e - fixed a bug in loading objects by drag&drop into the Project Tab where only one object in the selection was loaded пре 5 година
README.md c6ac6268ad - updated the README file пре 5 година
camlib.py 5a5a18ef43 - some PEP8 changes in Geometry Editor and other minor changes пре 5 година
make_freezed.py 2ca509ca04 - few bugs solved regarding the newly created empty objects пре 6 година
requirements.txt e1269cdb34 - updated the requirements file пре 5 година
setup_ubuntu.sh 13644187e4 - removed some packages from setup_ubuntu.sh as they are not needed in FlatCAM beta пре 5 година

README.md

FlatCAM BETA (c) 2019 - by Marius Stanciu Based on FlatCAM:

2D Computer-Aided PCB Manufacturing by (c) 2014-2016 Juan Pablo Caram

FlatCAM is a program for preparing CNC jobs for making PCBs on a CNC router. Among other things, it can take a Gerber file generated by your favorite PCB CAD program, and create G-Code for Isolation routing.

=================================================

------------ Installation instructions ----------

Works with Python version 3.5 or greater and PyQt5. More on the YouTube channel: https://www.youtube.com/playlist?list=PLVvP2SYRpx-AQgNlfoxw93tXUXon7G94_ You can contact me on my email address found in the app in: Menu -> Help -> About FlatCAM -> Programmers -> Marius Stanciu

  1. MacOS
  2. none (yet)

  3. Linux

  4. make sure that Python 3.8 is installed on your OS and that the command: python3 -V confirm it

  5. verify that the pip package is installed for your Python installation (e.g 3.8) by running the command pip3 -V. If it is not installed, install it. In Ubuntu-like OS's it is done like this: sudo apt-get install python3-pip or: sudo apt-get install python3.8-pip

  6. verify that the file setup_ubuntu.sh has Linux line-endings (LF) and that it is executable (chmod +x setup_ubuntu.sh)

  7. run the file setup_ubuntu.sh and install all the dependencies with the command: ./setup_ubuntu.sh

  8. if the previous command is successful and has no errors, run FlatCAM with the command: python3 FlatCAM.py

  9. Windows

  10. download the provided installer (for your OS flavor 64bit or 32bit) from: https://bitbucket.org/jpcgt/flatcam/downloads/

  11. execute the installer and install the program. It is recommended to install as a Local User.

or from sources:

You can download all the required wheels files into a folder (e.g D:\my_folder) and install them from Command Prompt like this: cd D:\my_folder and for each wheel file (*.whl) run: D:\my_folder> pip install --upgrade package_from_requirements.whl

Run FlatCAM beta from the installation folder (e.g D:\FlatCAM_beta) in the Command Prompt with the following command: cd D:\FlatCAM_beta python FlatCAM.py