Skip to content

Commit

Permalink
missing package fix for docker
Browse files Browse the repository at this point in the history
  • Loading branch information
matiusz committed Nov 28, 2024
1 parent e660417 commit 307c03b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ RUN tlmgr install babel blindtext paracol geometry tools changepage graphics hyp

RUN apt-get install -y --no-install-recommends python3-pip pipx libcairo2-dev pkg-config python3-dev cmake libgirepository1.0-dev gobject-introspection

RUN pip install aiofiles --break-system-packages

RUN pipx ensurepath

RUN pipx install svg2tikz

RUN pip install svg2tikz aiofiles --break-system-packages

WORKDIR /app
Binary file modified songbook.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion songbook/src/tools/chordGen.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def draw(self):
Strings_y2 = Strings_y1 + (self.spacing['fret']['y'] * (self.dimensions['numfrets'] - 1))

# derived output line for Chord name.
cfg = {'x': self.coords['ChordName']['x']+25, 'y': self.coords['ChordName']['y']-5, 'name': self.Chordname}
cfg = {'x': self.coords['ChordName']['x']+23, 'y': self.coords['ChordName']['y']-5, 'name': self.Chordname}
chord_text = _templates['chord_text'].format(**cfg)

# form text indicating capo position, if any
Expand Down

0 comments on commit 307c03b

Please sign in to comment.