From c05cbe525ad44273cc1b9b58549af757f549dcb7 Mon Sep 17 00:00:00 2001 From: pacien Date: Mon, 27 Jan 2020 14:29:47 +0100 Subject: compiler: switch to imagemagick Use ImageMagick to resize images instead of JuicyPixels, using the superior Lanczos resampling and cutting memory usage. This requires ImageMagick to be installed on the host system and the `magick` executable to be present in the PATH. GitHub: closes #49 --- compiler/package.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'compiler/package.yaml') diff --git a/compiler/package.yaml b/compiler/package.yaml index 043985d..9b96d17 100644 --- a/compiler/package.yaml +++ b/compiler/package.yaml @@ -23,12 +23,11 @@ dependencies: - aeson - yaml - cmdargs -- JuicyPixels -- JuicyPixels-extra - parallel-io - Glob - safe - time +- process default-extensions: - DuplicateRecordFields -- cgit v1.2.3 From 9b947996588c02867541ee394aa84fd3839d5f47 Mon Sep 17 00:00:00 2001 From: pacien Date: Sat, 1 Feb 2020 00:00:23 +0100 Subject: compiler: optimise dir diff for output cleanup n log n by sorting instead of silly n^2 GitHub: closes #70 --- compiler/package.yaml | 1 + 1 file changed, 1 insertion(+) (limited to 'compiler/package.yaml') diff --git a/compiler/package.yaml b/compiler/package.yaml index 9b96d17..1769833 100644 --- a/compiler/package.yaml +++ b/compiler/package.yaml @@ -17,6 +17,7 @@ description: Please see the README on GitHub at = 4.7 && < 5 - containers +- data-ordlist - filepath - directory - text -- cgit v1.2.3 From cefb6c102d4f23f02f5fabb934d7e9f60861044e Mon Sep 17 00:00:00 2001 From: pacien Date: Sat, 22 Feb 2020 13:50:05 +0100 Subject: compiler: rename output binary --- compiler/package.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/package.yaml') diff --git a/compiler/package.yaml b/compiler/package.yaml index 1769833..3fc2ab7 100644 --- a/compiler/package.yaml +++ b/compiler/package.yaml @@ -54,7 +54,7 @@ library: source-dirs: src executables: - ldgallery-compiler-exe: + ldgallery: main: Main.hs source-dirs: app ghc-options: -- cgit v1.2.3 From cfcb8c36ce71bfccdb320e003822497c2b69036f Mon Sep 17 00:00:00 2001 From: pacien Date: Mon, 24 Feb 2020 19:57:14 +0100 Subject: compiler: update compiler package urls --- compiler/package.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'compiler/package.yaml') diff --git a/compiler/package.yaml b/compiler/package.yaml index 3fc2ab7..25b16af 100644 --- a/compiler/package.yaml +++ b/compiler/package.yaml @@ -1,5 +1,6 @@ name: ldgallery-compiler version: 0.1.0.0 +homepage: https://ldgallery.pacien.org github: "pacien/ldgallery" license: AGPL-3 author: "Pacien TRAN-GIRARD, Guillaume FOUET" @@ -12,7 +13,7 @@ extra-source-files: # Metadata used when publishing your package synopsis: A static generator which turns a collection of tagged pictures into a searchable web gallery category: Web -description: Please see the README on GitHub at +description: Please see the project's website at dependencies: - base >= 4.7 && < 5 -- cgit v1.2.3 From 3d8d7cbc7a0ded1c9355ae6309c533ba959ca1e8 Mon Sep 17 00:00:00 2001 From: pacien Date: Fri, 1 May 2020 00:52:53 +0200 Subject: compiler: set version number for first release --- compiler/package.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler/package.yaml') diff --git a/compiler/package.yaml b/compiler/package.yaml index 25b16af..c44675b 100644 --- a/compiler/package.yaml +++ b/compiler/package.yaml @@ -1,11 +1,11 @@ name: ldgallery-compiler -version: 0.1.0.0 +version: 1.0 homepage: https://ldgallery.pacien.org github: "pacien/ldgallery" license: AGPL-3 author: "Pacien TRAN-GIRARD, Guillaume FOUET" maintainer: "" -copyright: "2019 Pacien TRAN-GIRARD, Guillaume FOUET" +copyright: "2019-2020 Pacien TRAN-GIRARD, Guillaume FOUET" extra-source-files: - readme.md -- cgit v1.2.3