Jump to content

FR: Maintenance Announcement


MSattler

Recommended Posts

It would be cool if you had in the system of sending a message the option to send to all users only or not type the system asks if at the time of sending the message you want to send to all or only one server user

  • Like 1
Link to comment
Share on other sites

@@Emby Net @@kikinjo

 

You guys mean, like a Messages Plugin that waits for users to log on and sends them a popup message from the Admin? Like this one here?...

 

Messages.zip

 

 

Please let me know if this version of the Messages Plugin works with the new emby server releases.

 

I might have to do a little bit extra work on it.

Edited by chef
Link to comment
Share on other sites

  • 3 weeks later...
  • 4 months later...
tvdeew

Hello emby :-)

 

this is my first post, so I hope I don't do anything wrong.

 

 

Sometimes, a lot of times lately, I whish for a simple yet sustainable way to let my user know something has happened. To present news to them, to write them a messsage, write a (non fancy) blog post. Yes, I know about the messaging system, which is fine, but this is not what I imagined. Yes, I know about a website I could put in front of emby, but thats not the unauthenicated end embedded way I'd like to have.

 

It seems to be surprisingly hard to let my users know about news. Just like a simple "News Post" Block on the start page. I find it nearly impossible to write messages to my (quite nice number of) users, who are originating from different countries around the world with different time zones. It's almost impossible to reach out to them when they are online. As the privacy respecting tvdeew I am, I don't have E-Mail adresses and some of them even share their account.

 

So, would it be possible top have a 'quick and easy' text block for the front page?

Edited by tvdeew
Link to comment
Share on other sites

  • 3 weeks later...
tvdeew

I have been redirected here by "ebr", on of the board admins, from my original post - requesting a simple Text content block on the web page. Sadly without any explanation.

 

I am not quite sure how this helps; can anybody enlighten me?

Link to comment
Share on other sites

tvdeew

Oh, okay, thanks @@kikinjo that explains a lot to me.

 

Wait a Moment, five Years? For a (more or less) simple feature, requested by (at least) 20 users (in this thread alone)? Sounds like a lot of time for such a thing. Or it's a lot more complex than I am thinking right now.

 

Maybe one of us should just start writing aplugin for that ...

Edited by tvdeew
Link to comment
Share on other sites

  • 3 weeks later...
miniliQuid

Compared to other topics this is not even remotely getting enough support to get on top of the to do list I would guess. From what I can tell few users are interested in it so it wouldn't make sense to start implementing this over all of the other requests.

Link to comment
Share on other sites

  • 2 weeks later...
tvdeew

Hmm, but maybe just for my personal use :-) Is there any documentation on how to begin with plugins?

Link to comment
Share on other sites

  • 8 months later...
KobayashiM

The following CSS snippet places text at the top of the home page underneath the menu. However, since updating to v4.5.4.0 it stopped working. I'm not sure if due to the update or other CSS scripts I have implemented:

/*--- Announcement text at top of home page ---*/

.verticalSection.section0:before {
   height: 300 px
    content: "Announcement text goes here";
    left: 40vw;
    position: relative;
    font-size: 150%;
    color: red;
}

 

  • Like 2
Link to comment
Share on other sites

gillmacca01

If room, maybe some sort of ticker system on the home screen (bit like what you see when watching a news channel)

Anyway, +1 for me

Link to comment
Share on other sites

  • 1 month later...
Adrifresh
On 2/8/2021 at 1:42 PM, KobayashiM said:

Did you ever figure this out?

 

The following CSS snippet places text at the top of the home page underneath the menu. However, since updating to v4.5.4.0 it stopped working. I'm not sure if due to the update or other CSS scripts I have implemented:


/*--- Announcement text at top of home page ---*/

.verticalSection.section0:before {
   height: 300 px
    content: "Announcement text goes here";
    left: 40vw;
    position: relative;
    font-size: 150%;
    color: red;
}

 

 

  • Like 1
Link to comment
Share on other sites

Happy2Play
On 2/8/2021 at 10:42 AM, KobayashiM said:

The following CSS snippet places text at the top of the home page underneath the menu. However, since updating to v4.5.4.0 it stopped working. I'm not sure if due to the update or other CSS scripts I have implemented:


/*--- Announcement text at top of home page ---*/

.verticalSection.section0:before {
   height: 300 px
    content: "Announcement text goes here";
    left: 40vw;
    position: relative;
    font-size: 150%;
    color: red;
}

 

29 minutes ago, Adrifresh said:

Did you ever figure this out?

Only thing wrong with that code is it is missing a semi-colon for Height.

/*--- Announcement text at top of home page ---*/

.verticalSection.section0:before {
    height: 300px;
    content: "Announcement text goes here";
    left: 40vw;
    position: relative;
    font-size: 150%;
    color: red;
}

 

 

test.jpg

  • Like 1
Link to comment
Share on other sites

Adrifresh
On 2/8/2021 at 1:42 PM, KobayashiM said:

The following CSS snippet places text at the top of the home page underneath the menu. However, since updating to v4.5.4.0 it stopped working. I'm not sure if due to the update or other CSS scripts I have implemented:




/*--- Announcement text at top of home page ---*/

.verticalSection.section0:before {
   height: 300 px
    content: "Announcement text goes here";
    left: 40vw;
    position: relative;
    font-size: 150%;
    color: red;
}

 

Thank you!. I don't know anything about CSS, but everyone is so helpful.

This is exactly what I needed.

  • Like 1
Link to comment
Share on other sites

Adrifresh

Is there a way to center it so when I say " Shut Down Monday for Maintenance" it's not shoved off to the side?

Link to comment
Share on other sites

Happy2Play
16 minutes ago, Adrifresh said:

Is there a way to center it so when I say " Shut Down Monday for Maintenance" it's not shoved off to the side?

Sorry I don't quite follow, but you could do something like this.  Minor changes removing height, left and add display and justify-content.

.verticalSection.section0:before {
    content: "Shut Down Monday for Maintenance";
    position: relative;
    font-size: 150%;
    color: red;
    justify-content: center;
    display: flex;

 

Edited by Happy2Play
Link to comment
Share on other sites

Adrifresh

I think it's the "relative" which I couldn't figure.

Thank you so much for helping a newbie at CSS.

You've been incredibly kind.

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...