Selaa lähdekoodia

move scripts in resources folder

Johann 5 vuotta sitten
vanhempi
commit
2b9c6208cd
43 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. 1 1
      lazpaint/release/debian/makedeb.sh
  2. 1 1
      lazpaint/release/macOS/makedmg.sh
  3. 1 1
      lazpaint/release/windows/lazpaint.iss
  4. 0 0
      resources/scripts/channels_merge.py
  5. 0 0
      resources/scripts/channels_split_hsl.py
  6. 0 0
      resources/scripts/channels_split_rgb.py
  7. 0 0
      resources/scripts/display_version.py
  8. 0 0
      resources/scripts/layerfx_color_overlay.py
  9. 0 0
      resources/scripts/layerfx_innerlight.py
  10. 0 0
      resources/scripts/layerfx_innershadow.py
  11. 0 0
      resources/scripts/layerfx_shadow.py
  12. 0 0
      resources/scripts/layerfx_stroke.py
  13. 0 0
      resources/scripts/lazpaint/colors.py
  14. 0 0
      resources/scripts/lazpaint/command.py
  15. 0 0
      resources/scripts/lazpaint/dialog.py
  16. 0 0
      resources/scripts/lazpaint/filters.py
  17. 0 0
      resources/scripts/lazpaint/image.py
  18. 0 0
      resources/scripts/lazpaint/imagelist.py
  19. 0 0
      resources/scripts/lazpaint/layer.py
  20. 0 0
      resources/scripts/lazpaint/selection.py
  21. 0 0
      resources/scripts/lazpaint/tools.py
  22. 0 0
      resources/scripts/lazpaint/view.py
  23. 0 0
      resources/scripts/mask_from_alpha.py
  24. 0 0
      resources/scripts/mask_new.py
  25. 0 0
      resources/scripts/render_fractal_tree.py
  26. 0 0
      resources/scripts/render_lava.py
  27. 0 0
      resources/scripts/test/3d_room.py
  28. 0 0
      resources/scripts/test/fractal_tree_random.py
  29. 0 0
      resources/scripts/test/layer_to_backfill.py
  30. 0 0
      resources/scripts/test/merge_rgb.py
  31. 0 0
      resources/scripts/test/negative.py
  32. 0 0
      resources/scripts/test/split_rgb_pillow.py
  33. 0 0
      resources/scripts/test/test_color.py
  34. 0 0
      resources/scripts/test/test_file.py
  35. 0 0
      resources/scripts/test/test_filter.py
  36. 0 0
      resources/scripts/test/test_gradient.py
  37. 0 0
      resources/scripts/test/test_image.py
  38. 0 0
      resources/scripts/test/test_imagelist.py
  39. 0 0
      resources/scripts/test/test_layer.py
  40. 0 0
      resources/scripts/test/test_layer2.py
  41. 0 0
      resources/scripts/test/test_pixel.py
  42. 0 0
      resources/scripts/test/test_tiff_multi.py
  43. 0 0
      resources/scripts/test/test_tools.py

+ 1 - 1
lazpaint/release/debian/makedeb.sh

@@ -7,7 +7,7 @@ SHARE_DIR="${STAGING_DIR}/usr/share/lazpaint"
 DOC_PARENT_DIR="${STAGING_DIR}/usr/share/doc"
 DOC_DIR="${STAGING_DIR}/usr/share/doc/lazpaint"
 SCRIPT_DIR="${SHARE_DIR}/scripts"
-SOURCE_SCRIPT_DIR="../../../scripts"
+SOURCE_SCRIPT_DIR="../../../resources/scripts"
 SOURCE_BIN="../bin"
 TARGET_ARCHITECTURE="$(dpkg --print-architecture)"
 VERSION="$(sed -n 's/^Version: //p' debian/control)"

+ 1 - 1
lazpaint/release/macOS/makedmg.sh

@@ -23,7 +23,7 @@ DMG_TMP="${VOL_NAME}-temp.dmg"
 DMG_FINAL="${VOL_NAME}.dmg"         
 STAGING_DIR="./staging"             # we copy all our stuff into this dir
 SOURCE_DIR="$(cd ../bin; pwd)"
-SCRIPT_DIR="$(cd ../../../scripts; pwd)"
+SCRIPT_DIR="$(cd ../../../resources/scripts; pwd)"
 
 # Check the background image DPI and convert it if it isn't 72x72
 _BACKGROUND_IMAGE_DPI_H=`sips -g dpiHeight ${DMG_BACKGROUND_IMG} | grep -Eo '[0-9]+\.[0-9]+'`

+ 1 - 1
lazpaint/release/windows/lazpaint.iss

@@ -8,7 +8,7 @@
 #define DCRawExeName "dcraw.exe"
 #define LibWebPDllName "libwebp.dll"
 #define ReleaseDir "..\bin\"
-#define ScriptsDir "..\..\..\scripts\"
+#define ScriptsDir "..\..\..\resources\scripts\"
 
 [Setup]
 AppId={{A177F82E-B44A-4348-A265-3D1C089D6304}

+ 0 - 0
scripts/channels_merge.py → resources/scripts/channels_merge.py


+ 0 - 0
scripts/channels_split_hsl.py → resources/scripts/channels_split_hsl.py


+ 0 - 0
scripts/channels_split_rgb.py → resources/scripts/channels_split_rgb.py


+ 0 - 0
scripts/display_version.py → resources/scripts/display_version.py


+ 0 - 0
scripts/layerfx_color_overlay.py → resources/scripts/layerfx_color_overlay.py


+ 0 - 0
scripts/layerfx_innerlight.py → resources/scripts/layerfx_innerlight.py


+ 0 - 0
scripts/layerfx_innershadow.py → resources/scripts/layerfx_innershadow.py


+ 0 - 0
scripts/layerfx_shadow.py → resources/scripts/layerfx_shadow.py


+ 0 - 0
scripts/layerfx_stroke.py → resources/scripts/layerfx_stroke.py


+ 0 - 0
scripts/lazpaint/colors.py → resources/scripts/lazpaint/colors.py


+ 0 - 0
scripts/lazpaint/command.py → resources/scripts/lazpaint/command.py


+ 0 - 0
scripts/lazpaint/dialog.py → resources/scripts/lazpaint/dialog.py


+ 0 - 0
scripts/lazpaint/filters.py → resources/scripts/lazpaint/filters.py


+ 0 - 0
scripts/lazpaint/image.py → resources/scripts/lazpaint/image.py


+ 0 - 0
scripts/lazpaint/imagelist.py → resources/scripts/lazpaint/imagelist.py


+ 0 - 0
scripts/lazpaint/layer.py → resources/scripts/lazpaint/layer.py


+ 0 - 0
scripts/lazpaint/selection.py → resources/scripts/lazpaint/selection.py


+ 0 - 0
scripts/lazpaint/tools.py → resources/scripts/lazpaint/tools.py


+ 0 - 0
scripts/lazpaint/view.py → resources/scripts/lazpaint/view.py


+ 0 - 0
scripts/mask_from_alpha.py → resources/scripts/mask_from_alpha.py


+ 0 - 0
scripts/mask_new.py → resources/scripts/mask_new.py


+ 0 - 0
scripts/render_fractal_tree.py → resources/scripts/render_fractal_tree.py


+ 0 - 0
scripts/render_lava.py → resources/scripts/render_lava.py


+ 0 - 0
scripts/test/3d_room.py → resources/scripts/test/3d_room.py


+ 0 - 0
scripts/test/fractal_tree_random.py → resources/scripts/test/fractal_tree_random.py


+ 0 - 0
scripts/test/layer_to_backfill.py → resources/scripts/test/layer_to_backfill.py


+ 0 - 0
scripts/test/merge_rgb.py → resources/scripts/test/merge_rgb.py


+ 0 - 0
scripts/test/negative.py → resources/scripts/test/negative.py


+ 0 - 0
scripts/test/split_rgb_pillow.py → resources/scripts/test/split_rgb_pillow.py


+ 0 - 0
scripts/test/test_color.py → resources/scripts/test/test_color.py


+ 0 - 0
scripts/test/test_file.py → resources/scripts/test/test_file.py


+ 0 - 0
scripts/test/test_filter.py → resources/scripts/test/test_filter.py


+ 0 - 0
scripts/test/test_gradient.py → resources/scripts/test/test_gradient.py


+ 0 - 0
scripts/test/test_image.py → resources/scripts/test/test_image.py


+ 0 - 0
scripts/test/test_imagelist.py → resources/scripts/test/test_imagelist.py


+ 0 - 0
scripts/test/test_layer.py → resources/scripts/test/test_layer.py


+ 0 - 0
scripts/test/test_layer2.py → resources/scripts/test/test_layer2.py


+ 0 - 0
scripts/test/test_pixel.py → resources/scripts/test/test_pixel.py


+ 0 - 0
scripts/test/test_tiff_multi.py → resources/scripts/test/test_tiff_multi.py


+ 0 - 0
scripts/test/test_tools.py → resources/scripts/test/test_tools.py