Browse Source

_processed_images -> processed_images

index-subcmd
Vincent Prouillet 5 years ago
parent
commit
62b89d0c72
13 changed files with 3 additions and 2 deletions
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      components/imageproc/src/lib.rs
  3. +1
    -1
      docs/content/documentation/content/image-processing/index.md
  4. +0
    -0
      docs/static/processed_images/0478482c742970ac00.jpg
  5. +0
    -0
      docs/static/processed_images/2b6a3e5a28bab1f100.jpg
  6. +0
    -0
      docs/static/processed_images/3dba59a146f3bc0900.jpg
  7. +0
    -0
      docs/static/processed_images/5e399fa94c88057a00.jpg
  8. +0
    -0
      docs/static/processed_images/63d5c27341a9885c00.jpg
  9. +0
    -0
      docs/static/processed_images/63fe884d13fd318d00.jpg
  10. +0
    -0
      docs/static/processed_images/8b446e542d0b692d00.jpg
  11. +0
    -0
      docs/static/processed_images/ab39b603591b3e3300.jpg
  12. +0
    -0
      docs/static/processed_images/d91d0751df06edce00.jpg
  13. +0
    -0
      docs/static/processed_images/e690cdfaf053bbd700.jpg

+ 1
- 0
CHANGELOG.md View File

@@ -13,6 +13,7 @@
- Many many times faster (x10-x20) for sites with thousands of pages
- Add more Emacs temp file to the ignored patterns in `gutenberg serve`
- Files starting with `.` are not considered pages anymore even if they end with `.md`
- `_processed_images` folder for image processing has been renamed `processed_images` to avoid issues with GitHub Pages

## 0.4.2 (2018-09-03)



+ 1
- 1
components/imageproc/src/lib.rs View File

@@ -23,7 +23,7 @@ use utils::fs as ufs;
use errors::{Result, ResultExt};


static RESIZED_SUBDIR: &'static str = "_processed_images";
static RESIZED_SUBDIR: &'static str = "processed_images";

lazy_static! {
pub static ref RESIZED_FILENAME: Regex = Regex::new(r#"([0-9a-f]{16})([0-9a-f]{2})[.]jpg"#).unwrap();


+ 1
- 1
docs/content/documentation/content/image-processing/index.md View File

@@ -26,7 +26,7 @@ resize_image(path, width, height, op, quality)
Gutenberg performs image processing during the build process and places the resized images in a subdirectory in the static files directory:

```
static/_processed_images/
static/processed_images/
```

Resized images are JPEGs. Filename of each resized image is a hash of the function arguments,


docs/static/_processed_images/0478482c742970ac00.jpg → docs/static/processed_images/0478482c742970ac00.jpg View File


docs/static/_processed_images/2b6a3e5a28bab1f100.jpg → docs/static/processed_images/2b6a3e5a28bab1f100.jpg View File


docs/static/_processed_images/3dba59a146f3bc0900.jpg → docs/static/processed_images/3dba59a146f3bc0900.jpg View File


docs/static/_processed_images/5e399fa94c88057a00.jpg → docs/static/processed_images/5e399fa94c88057a00.jpg View File


docs/static/_processed_images/63d5c27341a9885c00.jpg → docs/static/processed_images/63d5c27341a9885c00.jpg View File


docs/static/_processed_images/63fe884d13fd318d00.jpg → docs/static/processed_images/63fe884d13fd318d00.jpg View File


docs/static/_processed_images/8b446e542d0b692d00.jpg → docs/static/processed_images/8b446e542d0b692d00.jpg View File


docs/static/_processed_images/ab39b603591b3e3300.jpg → docs/static/processed_images/ab39b603591b3e3300.jpg View File


docs/static/_processed_images/d91d0751df06edce00.jpg → docs/static/processed_images/d91d0751df06edce00.jpg View File


docs/static/_processed_images/e690cdfaf053bbd700.jpg → docs/static/processed_images/e690cdfaf053bbd700.jpg View File


Loading…
Cancel
Save