Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Release Notification #11

Open
Kris-B opened this issue Jan 21, 2014 · 13 comments
Open

New Release Notification #11

Kris-B opened this issue Jan 21, 2014 · 13 comments
Labels

Comments

@Kris-B
Copy link
Owner

Kris-B commented Jan 21, 2014

v4.1.0 is available:

https://github.com/Kris-B/nanoGALLERY/releases/tag/4.1.0

(This issue is solely to trigger email notification when a new release is published. I'll leave a comment here when new versions are available.)

@Kris-B
Copy link
Owner Author

Kris-B commented Mar 3, 2014

@Kris-B
Copy link
Owner Author

Kris-B commented Mar 6, 2014

@Kris-B
Copy link
Owner Author

Kris-B commented Apr 3, 2014

@Kris-B
Copy link
Owner Author

Kris-B commented May 1, 2014

nanoGALLERY v4.4.0 is available

New features:

  • SmugMug storage support
  • new thumbnail display mode justified
  • helpers to extend the capabilities of nanoGALLERY
  • added image microdata
  • refinement of demonstration panel
  • removed support of browser-back to close the photo viewer
  • added HTTPS support
  • error messages displayed beneath the gallery (alert() was used up to now)
  • restored icons in the light theme (hidding icons is now configurable)

https://github.com/Kris-B/nanoGALLERY/releases/tag/4.4.0

@Kris-B
Copy link
Owner Author

Kris-B commented May 21, 2014

nanoGALLERY v4.4.1 is available

New features:

  • Flickr images now only over HTTPS (Flickr is going SSL-Only on June 27th, 2014)
  • lazy gallery building
  • use image filename as image title
  • Flickr: new algorithm to retrieve the best image size depending on the screen resolution
  • Flickr: do not display the original uploaded image (e.g. to avoid rotation issue)

More details:
https://github.com/Kris-B/nanoGALLERY/releases/tag/4.4.1

@Kris-B
Copy link
Owner Author

Kris-B commented Jun 4, 2014

nanoGALLERY v4.4.2 is available

New features:
  • added native swipe support (hammer.js no more needed but still used if present)
New options:
  • viewerScrollBarHidden: hide the viewer scrollbars
    boolean; Default: true
Misc
  • enhanced Picasa / Google+ filename decode
  • minor bugfixes

More details:
https://github.com/Kris-B/nanoGALLERY/releases/tag/4.4.2

@Kris-B
Copy link
Owner Author

Kris-B commented Jul 29, 2014

nanoGALLERY v5.0.0 is available

New features:
  • new gallery layout engine
  • gallery alignment (left, right, center, justified)
  • gutter space between thumbnails
  • highly improved thumbnail hover effects (better combinations and now layout style regardless)
  • removed the dependency to transit.js (no more required)
  • removed support of hammer.js
  • display full flickr photostream (set photoset='none', limited to 500 photos)
  • new option to automatically start the slideshow
  • new gallery fullpage mode
  • new thumbnail hover effects
  • sort content on title (Flickr, Picasa, Google+, SmugMug)
  • thumbnail hover effects:
    • new option to delay the effect
    • changed default duration from 200ms to 400ms
  • new loading animation (now even if breadcrumb is not visible)
  • on touch-devices:
    • delay to open automatically the touched thumbnail
    • improved usability (gallery and image display)
  • new embedded font version with additional icons (nano_icon_font3)
  • imagesloaded is now embedded to avoid conflict with other version
  • new javascript helpers (fnViewerInfo, fnProcessData, fnThumbnailHoverResize)
  • possibility to define thumbnail images real size (inline and API methods)
  • better IE9 support

More details:
https://github.com/Kris-B/nanoGALLERY/releases/tag/5.0.0

@Kris-B
Copy link
Owner Author

Kris-B commented Oct 21, 2014

nanoGALLERY v5.2.1 is available

https://github.com/Kris-B/nanoGALLERY/releases/tag/v5.2.1

@Kris-B Kris-B closed this as completed Jan 16, 2015
@Kris-B
Copy link
Owner Author

Kris-B commented Jun 2, 2015

nanoGALLERY v5.7.0 is available.

New callback
  • fnThumbnailOpen: called after a thumbnail is clicked/touched to display the image.
    Can be used to replace the standard viewer/lightbox with an external lightbox.
New options
  • thumbnailOpenImage: enable the viewer/lightbox to display images after a thumbnail is clicked/touched.
    boolean; Default: true
  • paginationSwipe: on the gallery, enable swipe to go to next/previous page.
    boolean; Default: true
Misc
  • included new version of Shifty (v1.5)
  • disabled AMD for Shifty

https://github.com/Kris-B/nanoGALLERY/releases/tag/v5.7.0

@Kris-B Kris-B reopened this Jun 2, 2015
@Kris-B
Copy link
Owner Author

Kris-B commented Sep 8, 2015

nanoGALLERY v5.8.0 release notes.
New API methods
  • closeViewer: close the image viewer.
    $('#yourElement').nanoGallery('closeViewer');
    (credits: Victor A. Banuelos - https://github.com/vbanuelos)
  • paginationPreviousPage: go to previous gallery page (when in pagination mode).
    $('#yourElement').nanoGallery('paginationPreviousPage');
  • paginationNextPage: go to next gallery page (when in pagination mode).
    $('#yourElement').nanoGallery('paginationNextPage');
  • paginationCountPages: returns the number of gallery pages (when in pagination mode).
    var countPages = $('#yourElement').nanoGallery('paginationCountPages');
  • paginationGotoPage: go to a specific gallery page (when in pagination mode).
    $('#yourElement').nanoGallery('paginationGotoPage', pageNumber);
  • getCurrentViewedItem: get the currently viewed item. Returns null if viewer not displayed.
    var item=$('#yourElement').nanoGallery('getCurrentViewedItem');
    (credits: Daniel Eck - https://github.com/Ecksters)
  • getCurrentViewedItemIdx: get the index of the currently viewed image. Returns -1 if viewer not displayed.
    var itemIdx=$('#yourElement').nanoGallery('getCurrentViewedItemIdx');
    (credits: Daniel Eck - https://github.com/Ecksters)
Misc

Many thanks to Giovanni Chiodi, AlexRed, Jeff Mills, Victor A. Banuelos and Daniel Eck for their contribution.

https://github.com/Kris-B/nanoGALLERY/releases/tag/v5.8.0

@Kris-B
Copy link
Owner Author

Kris-B commented Oct 26, 2015

nanoGALLERY v5.9.0 release notes.
New options
  • albumMax: Maximum number of albums to display (Flickr, Picasa/Google+, nanoPhotosProvider) (0=disabled).
    integer; Default: 0
  • galleryEnableKeyboard: Enables keyboard navigation beween albums.
    boolean; Default: false
    ESC: display first level
    Up, Right, PageUp: Display next album
    Down, Left, PageDown: Display previous album
    (credits: Victor A. Banuelos - https://github.com/vbanuelos)
New API methods
  • refreshSize: Force a gallery resize.
    When the gallery container is hidden and is set to visible at a later time, this method will avoid incorrect thumbnail position.
    $('#yourElement').nanoGallery('refreshSize');
    (credits: Daniel Eck - https://github.com/Ecksters)
  • minimizeToolbar: minimize image viewer toolbar.
    $('#yourElement').nanoGallery('minimizeToolbar');
    (credits: Victor A. Banuelos - https://github.com/vbanuelos)
  • maximizeToolbar: maximize image viewer toolbar.
    $('#yourElement').nanoGallery('maximizeToolbar');
    (credits: Victor A. Banuelos - https://github.com/vbanuelos)
  • galleryCountImages: Returns the number of images in the current displayed album.
    $('#yourElement').nanoGallery('galleryCountImages');
    (credits: Victor A. Banuelos - https://github.com/vbanuelos)
  • moveToNextAlbum: Display next gallery album.
    $('#yourElement').nanoGallery('moveToNextAlbum');
    (credits: Victor A. Banuelos - https://github.com/vbanuelos)
  • moveToPreviousAlbum: Display previous gallery album.
    $('#yourElement').nanoGallery('moveToPreviousAlbum');
    (credits: Victor A. Banuelos - https://github.com/vbanuelos)
Misc

Many thanks to Victor A. Banuelos, Daniel Eck, Jeff Mills and Andrea Grassi for their contribution.

https://github.com/Kris-B/nanoGALLERY/releases/tag/v5.9.0

@Kris-B
Copy link
Owner Author

Kris-B commented Nov 18, 2015

nanoGALLERY v5.9.1 release notes.

@Kris-B
Copy link
Owner Author

Kris-B commented Apr 28, 2016

nanoGALLERY v5.10.0 release notes.

New options
  • paginationVisiblePages: thumbnail pagination - maximum visible pages.
    integer; Default: 10
  • content source nanoPhotosProvider now supports options albumList, whiteList, blackList, album
Misc

https://github.com/Kris-B/nanoGALLERY/releases/tag/v5.10.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant