Skip to content

Commit d2aeccd

Browse files
committed
Merge remote-tracking branch 'origin/release-0.43.0'
2 parents 396e64e + 70bda86 commit d2aeccd

File tree

11 files changed

+60
-54
lines changed

11 files changed

+60
-54
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,14 @@ jobs:
1717
run: echo "DOCSPELL_VERSION=$(cat version.sbt | grep version | cut -d= -f2 | xargs)" >> $GITHUB_ENV
1818
- name: sbt make-pkg (${{ env.DOCSPELL_VERSION }})
1919
run: nix develop .#ci --command sbt make-pkg
20-
- uses: meeDamian/[email protected]
20+
- name: Upload artifacts
21+
uses: softprops/action-gh-release@v2
2122
with:
2223
token: ${{ secrets.GITHUB_TOKEN }}
2324
name: Docspell ${{ env.DOCSPELL_VERSION }}
24-
gzip: false
25-
draft: true
26-
prerelease: false
27-
allow_override: false
28-
files: >
29-
modules/restserver/target/docspell-restserver_${{ env.DOCSPELL_VERSION }}_all.deb
30-
modules/restserver/target/universal/docspell-restserver-${{ env.DOCSPELL_VERSION }}.zip
31-
modules/joex/target/docspell-joex_${{ env.DOCSPELL_VERSION }}_all.deb
32-
modules/joex/target/universal/docspell-joex-${{ env.DOCSPELL_VERSION }}.zip
25+
with:
26+
files: |
27+
modules/restserver/target/docspell-restserver_${{ env.DOCSPELL_VERSION }}_all.deb
28+
modules/restserver/target/universal/docspell-restserver-${{ env.DOCSPELL_VERSION }}.zip
29+
modules/joex/target/docspell-joex_${{ env.DOCSPELL_VERSION }}_all.deb
30+
modules/joex/target/universal/docspell-joex-${{ env.DOCSPELL_VERSION }}.zip

Changelog.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## v0.43.0
4+
5+
*Mar 15, 2025*
6+
7+
### 🐛 Bug Fixes
8+
9+
- Fix scrolling in side bar @eikek (#3002)
10+
- nix: unpin weasyprint from python310Packages @VTimofeenko (#2981)
11+
- replaced deprecated "--optimize-size" with "--optimize-images" @jjkrone (#2972)
12+
- Correction German Word Dokumene to Dokumente. @andbez (#2941)
13+
- Fix duplicate task on reboot @tiborrr (#2902)
14+
- Use http4s' new Part.filename method @pschichtel (#2853)
15+
- Remove `--optimize-size` option from default weasyprint @eikek (#2784)
16+
17+
### 💚 Maintenance
18+
19+
- Remove docker workflows @eikek (#2956)
20+
- These things live over at docspell/docker now @pschichtel (#2911)
21+
- Add metals and bloop to gitignore @tiborrr (#2898)
22+
- Update .gitignore for vscode users @tiborrr (#2778)
23+
24+
325
## v0.42.0
426

527
*Aug 18, 2024*

modules/joexapi/src/main/resources/joex-openapi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.0
22

33
info:
44
title: Docspell JOEX
5-
version: 0.43.0-SNAPSHOT
5+
version: 0.44.0-SNAPSHOT
66
description: |
77
This is the remote API to the job executor component of Docspell.
88
Docspell is a free document management system focused on small

modules/restapi/src/main/resources/docspell-openapi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.0
22

33
info:
44
title: Docspell
5-
version: 0.43.0-SNAPSHOT
5+
version: 0.44.0-SNAPSHOT
66
description: |
77
This is the remote API to Docspell. Docspell is a free document
88
management system focused on small groups or families.

nix/pkg.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
fetchzip,
55
jdk17,
66
}: let
7-
version = "0.42.0";
7+
version = "0.43.0";
88
server = {
99
url = "https://github.com/eikek/docspell/releases/download/v${version}/docspell-restserver-${version}.zip";
10-
sha256 = "sha256-bcT+h1zPqY9Jnx4sbUlE00w9yp6QVZSKddIZtrIK858=";
10+
sha256 = "sha256-9qK0WcCbHNc8Z36hc6DXQrWCv3+WuG7+/UIs0Uqv8DA=";
1111
};
1212
joex = {
1313
url = "https://github.com/eikek/docspell/releases/download/v${version}/docspell-joex-${version}.zip";
14-
sha256 = "sha256-GkNkUrAcXUVQIJOeeRKUtc5hMoHZqFC1lO8WeMh5tew=";
14+
sha256 = "sha256-6BE+QgFkL7FimqwCw68/JAGg8PiERjNF4McV8FTWHMg=";
1515
};
1616
in {
1717
docspell-restserver = stdenv.mkDerivation {

tools/start-local/start-local.sh

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -173,16 +173,17 @@ download_zip() {
173173
echo "Not downloading, files already exist"
174174
else
175175
echo "Downloading docspell..."
176+
local tag_name="v${ds_version}"
176177
if [[ $ds_version == *SNAPSHOT ]]; then
177-
curl -#Lo "$run_root/pkg/${joex}.zip" "https://github.com/eikek/docspell/releases/download/nightly/docspell-joex-${ds_version}.zip"
178-
else
179-
curl -#Lo "$run_root/pkg/${joex}.zip" "https://github.com/eikek/docspell/releases/download/v${ds_version}/docspell-joex-${ds_version}.zip"
180-
fi
181-
if [[ $ds_version == *SNAPSHOT ]]; then
182-
curl -#Lo "$run_root/pkg/${restserver}.zip" "https://github.com/eikek/docspell/releases/download/nightly/docspell-restserver-${ds_version}.zip"
183-
else
184-
curl -#Lo "$run_root/pkg/${restserver}.zip" "https://github.com/eikek/docspell/releases/download/v${ds_version}/docspell-restserver-${ds_version}.zip"
178+
tag_name="nightly"
185179
fi
180+
local joex_dl_url="https://github.com/eikek/docspell/releases/download/${tag_name}/docspell-joex-${ds_version}.zip"
181+
local rs_dl_url="https://github.com/eikek/docspell/releases/download/${tag_name}/docspell-restserver-${ds_version}.zip"
182+
183+
echo "--> $joex_dl_url"
184+
curl -#Lo "$run_root/pkg/${joex}.zip" "$joex_dl_url"
185+
echo "--> $rs_dl_url"
186+
curl -#Lo "$run_root/pkg/${restserver}.zip" "$rs_dl_url"
186187
fi
187188

188189
echo "Unzipping..."

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ThisBuild / version := "0.43.0-SNAPSHOT"
1+
ThisBuild / version := "0.44.0-SNAPSHOT"

website/elm/GetStarted.elm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ getStarted _ =
1414
, Markdown.toHtml [ class "my-4 markdown-view " ]
1515
"""1. Clone the github repository
1616
```bash
17-
$ git clone https://github.com/eikek/docspell
17+
$ git clone https://github.com/docspell/docker docspell-docker
1818
```
19-
Alternatively, [download](https://github.com/eikek/docspell/archive/master.zip) the sources and extract the zip file.
19+
Alternatively, [download](https://github.com/docspell/docker/archive/master.zip) the sources and extract the zip file.
2020
2. Change into the `docker-compose` directory:
2121
```bash
22-
$ cd docspell/docker/docker-compose
22+
$ cd docspell-docker/docker-compose
2323
```
2424
3. Run `docker-compose up`:
2525
```bash
26-
$ docker-compose up -d
26+
$ docker compose up -d
2727
```
2828
4. Goto <http://localhost:7880>, signup and login. When signing up,
2929
choose the same name for collective and user. Then login

website/site/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ skip_anchor_prefixes = [
3636

3737
[extra]
3838
# Put all your custom variables here
39-
version = "0.43.0-SNAPSHOT"
39+
version = "0.44.0-SNAPSHOT"

website/site/content/docs/dev/development.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,8 @@ is roughly like this:
292292
doesn't allow to create a release without a tag. So this tag moves
293293
(and is not really a tag then…). After the prerelease is created,
294294
the docker images are built and pushed to docker hub into the
295-
[docspell](https://hub.docker.com/u/docspell) organization. The
296-
docker images are also tagged with `nightly` at docker hub. This is
297-
all done via the `realease-nightly.yml` workflow.
295+
[docspell](https://github.com/orgs/docspell/packages) organization.
296+
This repository will run after a release to build the images.
298297
- A stable release is started by pushing a tag with pattern `v*` to
299298
github. This triggers the `release.yml` workflow which builds the
300299
packages and creates a release in *draft mode*. The `sbt ci` task

0 commit comments

Comments
 (0)