Commit Graph

563 Commits (master)
 

Author SHA1 Message Date
Romain e9e5f32970 Add test coverage + clean up build scripts 7 years ago
Romain 3e098e2328 Extract Handlebars helpers to prepare for theme structure + add unit tests 7 years ago
Romain 2a0a8d6631 Upgrade mock-fs to support Node 8 (includes dynamic require workaround) 7 years ago
Romain cbf8a1f3b4 Don’t index media from Synology thumbnail folders (@eaDir) nor folders starting with “.” 7 years ago
Romain ac520d40ad Fix case insensitive glob + add unit tests for globbing 7 years ago
Romain d66b28b12c 2.2.0-alpha.1 7 years ago
Romain 8d6cec3884 TravisCI: run the build inside Docker
- This is the simplest way to ensure all dependencies are there
- Also much faster than installing them on every build
- Especially since Travis runs Ubuntu Trusty, which doesn’t have ffmpeg in its repositories (must be compiled from source)
7 years ago
Romain 870b60de17 Simplify test scripts & document them in CONTRIBUTING.md 7 years ago
Romain 208f0f0212 Run full integration tests inside Docker. Travis runs unit + integration. 7 years ago
Romain 9a2da3e5ea Temporarily remove the recursive nav from the Classic theme
- The recursive call within Handlebars was causing huge memory spikes
- It seems it deep cloned (?) the entire Album objects at every recursive call
- This itself could bloat to several hundred megs of RAM for very large galleries

Replacing it with a simple breadcrumbs navigation for now.
7 years ago
Romain 24b2f9bd7c Major optimisations: SQLite index + faster disk glob + new exiftool streaming
1. Move from a JSON index to a SQLite database.
  - This allows the indexing to be interrupted & resumed
  - Updating the index consumes less RAM than loading / saving an entire JSON object
  - Loading the index consumes less RAM since it can be streamed, only exacting the properties we need every time (instead of loading all EXIF data in memory, only to discard most of it later)
  - These make a big difference when processing 10,000+ photos

2. Switch from <glob> to a manual <readdir>
  - Glob would take several hundred or GB of RAM when asked to find several thousand files
  - Manual approach with <micromatch> library does the same thing in a fraction of the time / memory usage

3. Exiftool optimisations
  - Run 1 exiftool process per CPU, still in batch mode (divide all files to be read into 1 bucket per CPU)
  - Stream the exiftool output instead of buffering it in memory
7 years ago
Romain bfdebe2c0f Smarter fuzzy comparison for the “snapshot” integration test 7 years ago
Romain 19a28a08c0 Basic production Dockerfile (doesn’t run the tests yet) 7 years ago
Romain 29654444cd Move screenshots and banners to subfolder 7 years ago
Romain 30f203af4b Render progress using Listr + split the main process into "steps" which are easier to test 7 years ago
Romain 179cc57644 Update “debug” package to fix insecure vulnerability warning 7 years ago
Romain 56235266bb Stop supporting Node v4 to enable newer ES6 syntax 7 years ago
Romain 97a6e348cc Update all dependencies 7 years ago
Romain 6e2f7e2ffb README - clarify Docker usage 7 years ago
Romain 35f9ee96b6 Update many dependencies to latest 7 years ago
Romain 011902c528 Fix integration test data for #71: set movie metadata to expected date 7 years ago
Romain b92724472e Fix #71: read both Quicktime CreationDate and CreateDate 7 years ago
Romain 0b27d37881 Read metadata from Picasa.ini if present 7 years ago
Romain 3e64d2ab38 Create a Metadata model attached to input files
- for easier unit testing
- to enable input filtering (e.g. only include photos with this keyword)
7 years ago
Romain 5074fb267f 2.1.0 7 years ago
Romain 3a6b2c9da3 Ignore files from the final npm package 7 years ago
Romain d24c5110cc Fix #70: files in the root of the source folder get added to the root gallery (index.html)
Before, they were added to an album called “.” which didn’t look good,
and the corresponding “.html” file (no base name) caused issues on web servers
7 years ago
Romain ac67a08da9 Use new “downsize” package that was split out (to make testing edge cases easier) 7 years ago
Romain afd3915778 Add full integration test: compare galleries to previously generated snapshot 7 years ago
Romain dc40fbac09 Fix inferring data from the filename: was getting confused if the folder contained digits 7 years ago
Romain 80f7a88c35 Fix #61: new options to avoid copying original photos to the output folder 7 years ago
Romain 92706276a0 Fix Github URL in package.json 7 years ago
Romain e8a9fc66b4 Github contribution templates 7 years ago
Romain 96cd92aa46 2.0.1 7 years ago
Romain 6fde22e9d1 Fix #62: crash prevented the error message from showing when migrating from V1 to V2 7 years ago
Romain 1df4ee48f3 Fix #63: run ffmpeg using <spawn> and don't buffer stdout/stderr 7 years ago
Romain 3531f1e533 Try to infer dates from the filename if there is no "date" metadata 7 years ago
Romain 8b66a16134 2.0.0 7 years ago
Romain a7ad8dc9fc Fix reading the original creation date of QuickTime and H264 movies 7 years ago
Romain b35870a9e5 Fix require-lint to ignore video.js (not referenced) 7 years ago
Romain 6cdc99525c Fix video poster aspect ratio: simply use the built-in VideoJS poster 7 years ago
Romain 9a24acc6df Fix copying of --original-photos 7 years ago
Romain 91e55daf9b Upgrade VideoJS to 5.17 7 years ago
Romain 9c78c1cd79 Rename album sorting function for clarity (they don't take a raw File, but a Media object) 7 years ago
Romain fb77791c80 Fix #33: new --cleanup option to remove unused generated thumbnails/media 7 years ago
Romain 9dcebe6280 Group CLI options into 3 categories to make them more digestible 7 years ago
Romain ee1186c1f4 Move theme/custom CSS to be loaded last to help with #57
Now, you can add lightgallery / videojs styles with "--css"
and they apply on top the the defaults (instead of being overridden)
7 years ago
Romain 50f9a84eff Remove deprecated --sort-folders option 7 years ago
Romain 23ddee4945 Rename repository to "thumbsup" as the language is irrelevant to consumers 7 years ago
Romain 39ee2adf05 Read XMP ratings 7 years ago