cbenning / fussel

A static photo gallery generator
https://github.com/cbenning/fussel
MIT License
260 stars 17 forks source link

missing previous/next buttons in carousel view #39

Closed h4de5 closed 1 year ago

h4de5 commented 3 years ago

in the latest version it seems the next and previous buttons are gone:

it's still possible to navigate using arrow keys - but when you click outside the actual image, the modal closes.

image

cbenning commented 3 years ago

Hmm. I upgraded the dependency and didn't notice this. But the package appears to be abandonware. I will test this and see if I can reproduce ite.

despair86 commented 2 years ago

the carousel no longer works correctly outside of mobile browsers - on a desktop browser the carousel appears below the modal dialogue out of sight the image will even flash for a split second before the dialogue covers it!

cbenning commented 1 year ago

@despair86 the UI tool was abandoned. I've re-written the entire frontend using new components and can be tested out on the v2 branch before it is released if interested

h4de5 commented 1 year ago

any chance for an updated docker image? or a beta docker release?

cbenning commented 1 year ago

@h4de5 I'll make a task and try to get to it in the next day or two if I can find time. Good suggestion.

cbenning commented 1 year ago

@h4de5 give this a try:

docker run \
      -e PGID=$(id -g) \
      -e PUID=$(id -u) \
      -v <input_dir>:/input:ro \
      -v <output_dir>:/output \
      --label gallery.input_path="/input" \
      --label gallery.output_path="/output" \
      --label gallery.overwrite=False \
      --label albums.recursive=True \
      --label albums.recursive_name_pattern="{parent_album} > {album}" \
      --label people.enable=True \
      --label watermark.enable=True \
      --label watermark.path="web/src/images/fussel-watermark.png" \
      --label watermark.size_ratio=0.3 \
      --label site.http_root="/" \
      --label site.title="Fussel Gallery" \
     -v /var/run/docker.sock:/var/run/docker.sock \
     ghcr.io/cbenning/fussel:2.0.0-rc4
h4de5 commented 1 year ago

is it possible that this image is set to private?

cbenning commented 1 year ago

@h4de5 yup sorry. Still getting the hang of using ghcr.io. Should be fixed now, give it a try.

h4de5 commented 1 year ago

image is now download able, but running failed. just gave it a brief test run, will have a look at my config later on, to check if it is on my side.

Screenshot_20230216-005854

cbenning commented 1 year ago

It kinda looks like its failing to generate the config. Looks lke you're using docker-compose? Mind sharing your config?