File tree Expand file tree Collapse file tree 11 files changed +60
-54
lines changed
joexapi/src/main/resources
restapi/src/main/resources Expand file tree Collapse file tree 11 files changed +60
-54
lines changed Original file line number Diff line number Diff line change @@ -17,16 +17,14 @@ jobs:
17
17
run : echo "DOCSPELL_VERSION=$(cat version.sbt | grep version | cut -d= -f2 | xargs)" >> $GITHUB_ENV
18
18
- name : sbt make-pkg (${{ env.DOCSPELL_VERSION }})
19
19
run : nix develop .#ci --command sbt make-pkg
20
- -
uses :
meeDamian/[email protected]
20
+ - name : Upload artifacts
21
+ uses : softprops/action-gh-release@v2
21
22
with :
22
23
token : ${{ secrets.GITHUB_TOKEN }}
23
24
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
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
25
## v0.42.0
4
26
5
27
* Aug 18, 2024*
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ openapi: 3.0.0
2
2
3
3
info :
4
4
title : Docspell JOEX
5
- version : 0.43 .0-SNAPSHOT
5
+ version : 0.44 .0-SNAPSHOT
6
6
description : |
7
7
This is the remote API to the job executor component of Docspell.
8
8
Docspell is a free document management system focused on small
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ openapi: 3.0.0
2
2
3
3
info :
4
4
title : Docspell
5
- version : 0.43 .0-SNAPSHOT
5
+ version : 0.44 .0-SNAPSHOT
6
6
description : |
7
7
This is the remote API to Docspell. Docspell is a free document
8
8
management system focused on small groups or families.
Original file line number Diff line number Diff line change 4
4
fetchzip ,
5
5
jdk17 ,
6
6
} : let
7
- version = "0.42 .0" ;
7
+ version = "0.43 .0" ;
8
8
server = {
9
9
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 =" ;
11
11
} ;
12
12
joex = {
13
13
url = "https://github.com/eikek/docspell/releases/download/v${ version } /docspell-joex-${ version } .zip" ;
14
- sha256 = "sha256-GkNkUrAcXUVQIJOeeRKUtc5hMoHZqFC1lO8WeMh5tew =" ;
14
+ sha256 = "sha256-6BE+QgFkL7FimqwCw68/JAGg8PiERjNF4McV8FTWHMg =" ;
15
15
} ;
16
16
in {
17
17
docspell-restserver = stdenv . mkDerivation {
Original file line number Diff line number Diff line change @@ -173,16 +173,17 @@ download_zip() {
173
173
echo " Not downloading, files already exist"
174
174
else
175
175
echo " Downloading docspell..."
176
+ local tag_name=" v${ds_version} "
176
177
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"
185
179
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 "
186
187
fi
187
188
188
189
echo " Unzipping..."
Original file line number Diff line number Diff line change 1
- ThisBuild / version := " 0.43 .0-SNAPSHOT"
1
+ ThisBuild / version := " 0.44 .0-SNAPSHOT"
Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ getStarted _ =
14
14
, Markdown . toHtml [ class " my-4 markdown-view " ]
15
15
""" 1. Clone the github repository
16
16
```bash
17
- $ git clone https://github.com/eikek/ docspell
17
+ $ git clone https://github.com/docspell/docker docspell-docker
18
18
```
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.
20
20
2. Change into the `docker-compose` directory:
21
21
```bash
22
- $ cd docspell/ docker/docker-compose
22
+ $ cd docspell- docker/docker-compose
23
23
```
24
24
3. Run `docker-compose up`:
25
25
```bash
26
- $ docker- compose up -d
26
+ $ docker compose up -d
27
27
```
28
28
4. Goto <http://localhost:7880>, signup and login. When signing up,
29
29
choose the same name for collective and user. Then login
Original file line number Diff line number Diff line change @@ -36,4 +36,4 @@ skip_anchor_prefixes = [
36
36
37
37
[extra ]
38
38
# Put all your custom variables here
39
- version = " 0.43 .0-SNAPSHOT"
39
+ version = " 0.44 .0-SNAPSHOT"
Original file line number Diff line number Diff line change @@ -292,9 +292,8 @@ is roughly like this:
292
292
doesn't allow to create a release without a tag. So this tag moves
293
293
(and is not really a tag then…). After the prerelease is created,
294
294
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.
298
297
- A stable release is started by pushing a tag with pattern ` v* ` to
299
298
github. This triggers the ` release.yml ` workflow which builds the
300
299
packages and creates a release in * draft mode* . The ` sbt ci ` task
You can’t perform that action at this time.
0 commit comments