Open Dabu-dot opened 3 years ago
+1 to this, changing the icon and name of the app would be great.
+1 for this one
+1 for this! Maybe the option to change the SSL too?
+1 for this!
+1 Indeed, it would be really nice to have this :)
:tada: This issue has been resolved in version 1.19.0 :tada:
The release is available on:
v1.19.0
Your semantic-release bot :package::rocket:
Just to feedback on this, I can see the ability to change the name of Overseer in the General Settings via "Application Title", but cannot see the upload replacement. Is this still outstanding?
Where can the logo be changed?
If the ability to add a custom logo to the top right of Overseerr get's implemented, can we also have the option to use the logo in the body of email notifications, instead of the application title?
If the ability to add a custom logo to the top right of Overseerr get's implemented, can we also have the option to use the logo in the body of email notifications, instead of the application title?
Please follow #405 for custom notification support.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
No
Agreed on this. If I do transition from Ombi it will be with just about 50 users and something that now says "Overseerr" instead will traumatize them unfortunately.
Hi, I would really love this feature still. My users are getting confused by the completely different logo/name used for my services. Thanks!
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Bump
From: stale[bot] @.> Sent: Friday, October 29, 2021 12:47:35 PM To: sct/overseerr @.> Cc: John P @.>; Comment @.> Subject: Re: [sct/overseerr] Customize the logo / Change the name of Overseerr (#404)
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
— You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/sct/overseerr/issues/404#issuecomment-954931874, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ACHFOSSIJT4THBY7BTAQLWDUJLM3PANCNFSM4VCK6MMQ. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
Easiest code to write and still not a thing. Wonder why
Easiest code to write and still not a thing. Wonder why
Feel free to PR it! Contributions are always welcome.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Go home stalebot, you're drunk.
In case anyone wants to do this manually, this is a temporary solution:
In Docker, add a path:
Container Path: /app/public/logo_full.svg -> Host Path: /path/to/custom/logo.svg
If something changes, this is the most current file structure: https://github.com/sct/overseerr/tree/develop/public
Ver helpful, thanks!!
The most appropriate path right now is to create a custom logos into a local public/ directory and bind mount that folder to the created docker instance like @meleniumshane90 mentioned. I just append this line to my docker startup/update script:
-v ~/.overseerr/public:/app/public \
In there I have my custom SVGs and other image files. The problem with updating SVGs on-the-fly for overseerr is that they don't use embedded (rasterized) images like .png/.jpg for the logos, they use an XML-based text format to describe how the image should appear. This allows for browser compatibility and scaling/resizing, since they're resolution independent. It takes a little Adobe Illustrator work but is totally doable and my login/home screen logos look awesome.
Jealous of you Docker users. Us Snap folks can't do this. Really hoping to see this feature added at some point in the UI because my users still get confused about what Overseerr is when the arrive at the site.
The most appropriate path right now is to create a custom logos into a local public/ directory and bind mount that folder to the created docker instance like @meleniumshane90 mentioned. I just append this line to my docker startup/update script:
-v ~/.overseerr/public:/app/public \
In there I have my custom SVGs and other image files. The problem with updating SVGs on-the-fly for overseerr is that they don't use embedded (rasterized) images like .png/.jpg for the logos, they use an XML-based text format to describe how the image should appear. This allows for browser compatibility and scaling/resizing, since they're resolution independent. It takes a little Adobe Illustrator work but is totally doable and my login/home screen logos look awesome.
hey @senorbueno I appreciate your help with this work around! I was able to get the login screen logo (logo_stacked.svg) and the favicons (favicon.ico, favicon-32x32.png, and favicon-16x16.png) successfully replaced with custom logos, but the logo in the top left corner once logged in (logo_full.svg) is rendering as 0 x 0 pixels and is thus not showing up. is there another change I need to make with the .svg file or the XML somewhere to make this logo render properly?
In case someone needed an answer to my question, I figured it out. I had to add width and height parameters to the code of the .svg file and it rendered properly.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
If this gets added, I donate.
I agree, if this gets added I will also donate
I agree too and would also donate.
I would also like to mention that the "custom application title" update from v.1.19 doesn't change the Overseerr name displayed when a user attempts to login via the plex auth screen. I believe the expected behavior would also change the application title name on the login screen.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Definitely don't close this!
Container Path: /app/public/logo_full.svg -> Host Path: /path/to/custom/logo.sv
what do you mean with In docker, add patch. Could you explain in more datail trying to use you manuel fix.
Container Path: /app/public/logo_full.svg -> Host Path: /path/to/custom/logo.sv
what do you mean with In docker, add patch. Could you explain in more datail trying to use you manuel fix.
That's what he meant (example from Portainer), you have to remap the volume via docker :
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
+1 for keeping this open and making it customizable
+1 still want this in 2023 please
+1
In case anyone wants to do this manually, this is a temporary solution: In Docker, add a path:
Container Path: /app/public/logo_full.svg -> Host Path: /path/to/custom/logo.svg
If something changes, this is the most current file structure: https://github.com/sct/overseerr/tree/develop/public
I used it this way for more than 1 year and today I went to change the logo for a more current one and I can't do it anymore. Even recreating the container it pulls the old/original image. I do not know what else to do.
In case anyone wants to do this manually, this is a temporary solution: In Docker, add a path:
Container Path: /app/public/logo_full.svg -> Host Path: /path/to/custom/logo.svg
If something changes, this is the most current file structure: https://github.com/sct/overseerr/tree/develop/publicI used it this way for more than 1 year and today I went to change the logo for a more current one and I can't do it anymore. Even recreating the container it pulls the old/original image. I do not know what else to do.
I use this way currently but man it was a pain in the neck to get the SVG file to work properly, I can't remember the format but it had to match some specific type of format that the original had.
I don't have much knowledge of SVG files, so it took me a few hours to get it working.
Are you using Unraid? If so, I replace /app/overseerr/public/logo_full.svg
In case anyone wants to do this manually, this is a temporary solution: In Docker, add a path:
Container Path: /app/public/logo_full.svg -> Host Path: /path/to/custom/logo.svg
If something changes, this is the most current file structure: https://github.com/sct/overseerr/tree/develop/publicI used it this way for more than 1 year and today I went to change the logo for a more current one and I can't do it anymore. Even recreating the container it pulls the old/original image. I do not know what else to do.
I use this way currently but man it was a pain in the neck to get the SVG file to work properly, I can't remember the format but it had to match some specific type of format that the original had.
I don't have much knowledge of SVG files, so it took me a few hours to get it working.
Are you using Unraid? If so, I replace
/app/overseerr/public/logo_full.svg
No, I'm using Linux's standard docker and docker-compose. I don't know if it happens to anyone else, but here I am commenting on the volumes and leaving the original images, they are not reflected in the system, even clearing the browser's cache I still see the edited images
I could never get it to work. Docker/Portainer/Overseer
I finally tried out the workaround and it works for me on latest Overseerr docker managed by Portainer. I first converted my logo with a free online SVG converter. Then I stored it at a mounted drive location where I was already hosting the Overseerr files from and referenced that in Portainer like so: https://imgur.com/a/Ea7YQYj
In case anyone wants to do this manually, this is a temporary solution: In Docker, add a path:
Container Path: /app/public/logo_full.svg -> Host Path: /path/to/custom/logo.svg
If something changes, this is the most current file structure: https://github.com/sct/overseerr/tree/develop/publicI used it this way for more than 1 year and today I went to change the logo for a more current one and I can't do it anymore. Even recreating the container it pulls the old/original image. I do not know what else to do.
Would love to see this feature too! I have tried mapping the logo in unraid but it still doesn't update.
@wnconnor the path has changed, it's now /app/overseerr/public/logo_full.svg EDIT: if you want to customise the logo in emails it's /app/overseerr/public/logo_full.png
In case anyone wants to do this manually, this is a temporary solution: In Docker, add a path:
Container Path: /app/public/logo_full.svg -> Host Path: /path/to/custom/logo.svg
If something changes, this is the most current file structure: https://github.com/sct/overseerr/tree/develop/public
How do you add an container path ? I am use a docker compose that looks like this:
overseerr: <<: *common-keys-media # See EXTENSION FIELDS at the top image: lscr.io/linuxserver/overseerr:latest container_name: overseerr ports:
Will donate if this is added, will use ombi until this is added tbh, looks sooo bad being stuck with the Overseerr logo and name at the top...
This is how I do it in a docker on unraid.
Be aware they keep marking comments as spam on here so you don't find this out.
This is how I do it in a docker on unraid. Be aware they keep marking comments as spam on here so you don't find this out.
I wish the devs would just say they are against this because they want to advertise their app. Them they can just ose this request as opposed to pretending like it s a possible feature coming and secretly marking comments as spam.
Is your feature request related to a problem? Please describe. One of the simpliest way to customize Ombi as a User nowadays is to replace the Logo and Name of the application (showing up in the tab next to the favicon). I would be nice if the admin could do that in Overseerr as well.
Describe the solution you'd like Within the "General Settings" Section, create a subsection named "Customization" (or else) to upload a .png or .jpg for the new logo that will overwrite the existing one. Same thing could be done for a text input where you could write a new name for the application and rename Overseerr.