4897 Commits

Author SHA1 Message Date
mergify[bot]
f5514fb707
Merge pull request #2541 from eikek/update/swagger-ui-5.11.10
Update swagger-ui to 5.11.10
2024-03-15 19:31:14 +00:00
mergify[bot]
1af25ce148
Merge pull request #2546 from eikek/update/postgresql-42.7.3
Update postgresql to 42.7.3
2024-03-15 19:31:02 +00:00
mergify[bot]
19eef35b98
Merge pull request #2545 from eikek/update/flyway-core-10.10.0
Update flyway-core, ... to 10.10.0
2024-03-15 19:30:32 +00:00
eikek-scala-steward
1b7ffd4087 Update swagger-ui to 5.11.10 2024-03-15 20:23:26 +01:00
eikek-scala-steward
7a27fbf8fb Update flyway-core, ... to 10.10.0 2024-03-15 20:22:45 +01:00
eikek-scala-steward
f0b0906785 Update postgresql to 42.7.3 2024-03-15 20:22:20 +01:00
mergify[bot]
93b5a3ee72
Merge pull request #2547 from eikek/elm-deps
Fix renamed elm package
2024-03-15 08:32:23 +00:00
Eike Kettner
c223ba63aa Fix renamed elm package 2024-03-15 09:23:59 +01:00
eikek
f6d22523d1 Convert to stale action 2024-03-11 12:00:08 +01:00
eikek
67284d1f6a Fix tailwindcss warnings 2024-03-10 21:24:44 +01:00
mergify[bot]
247fc1d4e9
Merge pull request #2525 from eikek/update/sbt-github-pages-0.14.0
Update sbt-github-pages to 0.14.0
2024-03-10 20:15:06 +00:00
eikek-scala-steward
7c2a57966b Update sbt-github-pages to 0.14.0 2024-03-10 21:06:33 +01:00
mergify[bot]
fd927fa1e7
Merge pull request #2540 from eikek/redocly-tailwind-setup
Redocly tailwind setup
2024-03-10 20:05:40 +00:00
eikek
3d93439b28 Lower memory requirement for test-vm 2024-03-10 20:49:56 +01:00
eikek
7c123db1a3 Use tailwindcss standalone cli 2024-03-10 20:13:41 +01:00
eikek
7b53f3699f Update redocly setup 2024-03-10 19:53:36 +01:00
mergify[bot]
5715f60e96
Merge pull request #2539 from eikek/nix-refactor
Extend nix setup, including dev environments
2024-03-10 17:06:08 +00:00
eikek
ba8435c7dc Disable strict external link checking
This is so brittle, only works sometimes.
2024-03-10 16:58:22 +01:00
eikek
8a41ed3fd3 Github actions use nix 2024-03-10 16:58:22 +01:00
eikek
3aad3b7be4 Remove other now obsolete nix files 2024-03-10 15:38:17 +01:00
eikek
f3f246d798 Rename server -> restserver in nix setup
While I'd like to rename it the other way around, it would be a much
more breaking change. So for now, this way.
2024-03-10 15:37:16 +01:00
eikek
8bcc88ed65 Document flake dev setup 2024-03-10 15:37:16 +01:00
eikek
2e18274803 Extend nix flake setup 2024-03-10 15:37:16 +01:00
renovate[bot]
4167b64e31 Update dependency autoprefixer to v10.4.18 2024-03-09 06:35:51 +00:00
mergify[bot]
55a2d1359e
Merge pull request #2537 from eikek/update/kittens-3.3.0
Update kittens to 3.3.0
2024-03-09 06:20:16 +00:00
eikek-scala-steward
442e389537 Update kittens to 3.3.0 2024-03-09 06:12:48 +00:00
eikek
2ad9e1fa1e
Merge pull request #2511 from eikek/renovate/cssnano-6.x-lockfile
Update dependency cssnano to v6.1.0
2024-03-09 01:30:36 +01:00
eikek
f7eb913994
Merge pull request #2534 from eikek/renovate/cachix-install-nix-action-26.x
Update cachix/install-nix-action action to v26
2024-03-09 01:30:22 +01:00
renovate[bot]
443ba47cfb
Update cachix/install-nix-action action to v26 2024-03-08 22:02:57 +00:00
renovate[bot]
95a28afa69
Update dependency cssnano to v6.1.0 2024-03-08 22:02:53 +00:00
renovate[bot]
9ef934f8b1 Update dependency @fontsource/montserrat to v5.0.17 2024-03-08 22:01:43 +00:00
eikek
ca2a2a32d7 Merge branch 'current-docs' 2024-03-08 21:37:26 +01:00
eikek
8269a73a83
Extend config for external commands (#2536)
Allows to configure external commands and provide different arguments
based on runtime values, like language. It extends the current config
of a command to allow a `arg-mappings` section. An example for
ocrmypdf:

```conf
ocrmypdf = {
  enabled = true
  command = {
    program = "ocrmypdf"
### new arg-mappings
    arg-mappings = {
      "mylang" = {
        value = "{{lang}}"
        mappings = [
          {
            matches = "deu"
            args = [ "-l", "deu", "--pdf-renderer", "sandwich" ]
          },
          {
            matches = ".*"
            args = [ "-l", "{{lang}}" ]
          }
        ]
      }
    }
#### end new arg-mappings
    args = [
      ### will be replaced with corresponding args from "mylang" mapping
      "{{mylang}}", 
      "--skip-text",
      "--deskew",
      "-j", "1",
      "{{infile}}",
      "{{outfile}}"
    ]
    timeout = "5 minutes"
  }
  working-dir = ${java.io.tmpdir}"/docspell-convert"
}
```

The whole section will be first processed to replace all `{{…}}`
patterns with corresponding values. Then `arg-mappings` will be looked
at and the first match (value == matches) in its `mappings` array is
used to replace its name in the arguments to the command.
2024-03-08 21:34:42 +01:00
eikek
572afd2dc1 Fix array definition in config.toml 2024-03-08 21:24:40 +01:00
mergify[bot]
9c98f08520
Merge pull request #2533 from eikek/update/flyway-core-10.9.1
Update flyway-core, ... to 10.9.1
2024-03-08 06:18:50 +00:00
eikek-scala-steward
c9f2ed7185 Update flyway-core, ... to 10.9.1 2024-03-08 06:11:34 +00:00
eikek
012ef62b82 Try give more resources to sbt ci jobs 2024-03-07 21:46:14 +01:00
eikek
1691909d8f Try give more resources to ci job 2024-03-07 21:35:42 +01:00
mergify[bot]
500ae92a09
Merge pull request #2527 from eikek/update/http4s-circe-0.23.26
Update http4s-circe, http4s-dsl, ... to 0.23.26
2024-03-06 06:23:18 +00:00
mergify[bot]
57ecea818c
Merge pull request #2528 from eikek/update/cats-effect-3.5.4
Update cats-effect to 3.5.4
2024-03-06 06:22:19 +00:00
mergify[bot]
0e2bb198ae
Merge pull request #2526 from eikek/update/flyway-core-10.9.0
Update flyway-core, ... to 10.9.0
2024-03-06 06:22:16 +00:00
eikek-scala-steward
44bc8ac9ff Update cats-effect to 3.5.4 2024-03-06 06:13:31 +00:00
eikek-scala-steward
7411766ff0 Update http4s-circe, http4s-dsl, ... to 0.23.26 2024-03-06 06:13:26 +00:00
eikek-scala-steward
3d6643e98f Update flyway-core, ... to 10.9.0 2024-03-06 06:13:22 +00:00
mergify[bot]
551f96dd21
Merge pull request #2515 from eikek/update/scala-library-2.13.13
Update scala-library to 2.13.13
2024-03-03 17:52:13 +00:00
eikek
924aaf720e Fix compile warnings after scala update 2024-03-03 18:43:54 +01:00
eikek
1d149119ce Merge branch 'current-docs' 2024-03-03 09:47:40 +01:00
eikek
cea7948c2e Remove stackoverflow from external link check
It returns FORBIDDEN, so can not be checked it seems
2024-03-03 09:46:15 +01:00
eikek
979bdcfeb1
Merge pull request #2523 from tenpai-git/PostgreSQL-Manual-Backup-Documentation
Pushing a minor fix to the bash commands.
2024-03-03 09:45:22 +01:00
John Baumlin
7ea9d2e634 Pushing a minor fix to the bash commands. 2024-03-03 17:25:04 +09:00