Files
UVtools/build
Tiago Conceição 3130ebe0f2 v3.4.0
- **Tools:**
   - (Add) PCB exposure: Converts a gerber file to a pixel perfect image given your printer LCD/resolution to exposure the copper traces.
   - (Improvement) Export settings now indent the XML to be more user friendly to edit
   - (Improvement) Layer import: Allow to have profiles
   - (Improvement) Layer import: Validates if selected files exists before execute
   - (Fix) Lithophane: Disallow having start threshold equal to end threshold
- (Add) Windows explorer: Right-click on files will show "Open with UVtools" on context menu which opens the selected file on UVtools (Windows MSI only)
- (Improvement) Island and overhang detection: Ignore detection on all layers that are in direct contact with the plate (On same first layer position)
- (Improvement) Cmd: Better error messages for convert command when using shared extensions and no extension
2022-05-02 01:02:13 +01:00
..
2022-04-02 03:38:47 +01:00
2022-03-20 03:04:24 +00:00
2022-03-19 18:47:35 +00:00
2022-03-19 18:47:35 +00:00
2022-05-02 01:02:13 +01:00
2022-05-02 01:02:13 +01:00
2022-03-20 21:39:16 +00:00
2022-03-20 20:53:19 +00:00
2022-03-19 18:47:35 +00:00
2022-03-19 18:47:35 +00:00

Build scripts & tools

Requirements

Windows

Linux and macOS

  • dotnet-sdk
  • wget
  • zip
  • unzip

Scripts

  • compile.(bat|sh): Compiles project under default configurations
  • run.(bat|sh): Compiles and runs the project under default configurations
  • createRelease.(ps1|sh): Compiles, publish and pack a release for a target runtime
  • libcvextern.sh: Compiles and produces libcvextern.so|dylib
    • This script is independent and can run outside UVtools project, it's an standard alone script
    • Required when:
      • Your system is not included in UVtools releases
      • When lunch UVtools and got the error: System.DllNotFoundException: unable to load shared library 'cvextern' or one of its dependencies
        This means you haven't the required dependencies to run the cvextern library, that may due system version and included libraries version, they must match the compiled version of libcvextern.
        To know what is missing you can open a terminal on UVtools folder and run the following command: ldd libcvextern.so |grep not. That will return the missing dependencies from libcvextern, you can try install them by other means if you can, but most of the time you will need compile the EmguCV to compile the dependencies and correct link them, this process is very slow but only need to run once.
    • How to apply to UVtools:
      • Copy the output file 'libcvextern.so|dylib' from 'emgucv/libs/*' created by this compilation to the UVtools executable folder and replace the original.
      • Keep a copy of file somewhere safe, you will need to replace it everytime you update UVtools.
      • Additionally you can share your libcvextern.so|dylib on UVtools GitHub with your system information (Name & Version) to help others with same problem, anyone with the same system version can make use of it without the need of the compilation process.
    • Note: You need to repeat this process everytime UVtools upgrades OpenCV version, keep a eye on changelog.