All Versions
39
Latest Version
Avg Release Cycle
50 days
Latest Release
1515 days ago

Changelog History
Page 3

  • v0.1.17 Changes

    April 12, 2017
    • You can add multiple effects using Cloudex.Url.for/2, an example would be adding an overlay to your image, using:
    Cloudex.Url.for("a_public_id", [
      %{border: "5px_solid_rgb:c22c33", radius: 5, crop: "fill", height: 246, width: 470, quality: 80},
      %{overlay: "my_overlay", crop: "scale", gravity: "south_east", width: 128 ,x: 5, y: 15}
    ])
    
    "//res.cloudinary.com/my_cloud_name/image/upload/bo_5px_solid_rgb:c22c33,c_fill,h_246,q_80,r_5,w_470/c_scale,g_south_east,l_my_overlay,w_128,x_5,y_15/a_public_id"
    
  • v0.1.16 Changes

    April 03, 2017
    • Thanks to @sudostack for fixing a bug when not passing a transformation string and using signed_urls
    • Bumped deps
  • v0.1.15 Changes

    January 16, 2017
    • Thanks to @pauloancheta you can now also delete a list with Cloudex.delete/1
  • v0.1.13 Changes

    January 09, 2017
    • Thanks to @pauloancheta its now possible to also delete image given their public id using Cloudex.delete/1
    • bumped deps
    • fixed deprecation warnings for elixir 1.4
  • v0.1.12 Changes

    November 24, 2016
    • @remiq added support for tags. Quite appreciated :)
  • v0.1.11 Changes

    October 25, 2016
    • @jprincipe added support for video urls. Thank you !
    • Also bumped dependencies.
  • v0.1.10 Changes

    August 26, 2016
    • @bgeihsgt (Thanks!) added the following changes :
    • Whenever an HTTPoison call failed, it would fail with a match error. This uses with goodness to bubble up request or JSON parsing errors.
    • I also increased the task timeout on upload to 60 seconds.
  • v0.1.9 Changes

    August 23, 2016
    • Cloudex.Url.for now accepts a version as well, thank you @manukall
    • bumped deps
  • v0.1.8 Changes

    August 19, 2016
    • Removed the file and url extension check as requested. It is not the responsibility of this lib.
  • v0.1.7 Changes

    August 17, 2016
    • The file extension regex is now case insensitive