Skip to content

Commit ba0cc39

Browse files
authored
Merge pull request #27 from SpringRoll/release/1.2.1
Release/1.2.1
2 parents 1d545fd + 62a7a04 commit ba0cc39

File tree

5 files changed

+143
-180
lines changed

5 files changed

+143
-180
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.2.1] - 2021-09-15
8+
### Fixed
9+
- update scanAudio so that file names with spaces don't break the scan
10+
- update version of `music-metadata` to fix an error when scanning some files. explanation [here](https://github.com/Borewit/music-metadata/issues/856)
11+
712
## [1.2.0] - 2021-01-29
813
### Added
914
- loudness check for audio files

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,19 @@ npx sras -p path/to/the/deploy/folder --config path/to/scan/rules/config -c 123
8484
```
8585
will make the linter fail with status code 123 if a code style issue is found.
8686

87+
The asset scanner performs the following:
88+
- A scan of all JavaScript files to check for files larger than the recommended file size.
89+
- A scan of all images to check for image dimensions larger than the recommended dimensions.
90+
- A scan of all images to check for image dimensions that are not powers of two.
91+
- A scan of all images to check for image files larger than the recommended file size.
92+
- A scan of all audio files to check for files louder than the recommended loudness.
93+
- A scan of all audio files to check for files larger than the recommended file size.
94+
- A scan of all audio files to check for files with more than the recommended number of channels.
95+
- A scan of all audio files to check for files with a sample rate that does not match the recommended sample rate.
96+
- A scan of all audio files to check for files with a duration larger than the recommended duration.
97+
- A scan of all files to check for prohibited file types.
98+
- A scan of all files to check for required file types.
99+
87100
## Project Structure
88101
The project contains the following directories:
89102

0 commit comments

Comments
 (0)