Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created and Updated config.yml #39

Merged
merged 7 commits into from
Jul 13, 2023

Conversation

shashanksjSSJ
Copy link
Contributor

@shashanksjSSJ shashanksjSSJ commented May 26, 2023

Hello @leecalcote, I have added config.yml from meshery/meshery, as the images were already updated I haven't made a lot of changes in them. I have submitted this for your review, and I want to thank @leecalcote for letting me contribute to the organization, this helped me to learn a lot.
Please inform me if there are any changes that I need to make.
Signed-off-by: shashanksjSSJ shashanksj26@gmail.com

@leecalcote
Copy link
Member

@ShivangShandilya ready for review.

@Ghat0tkach
Copy link
Member

Ghat0tkach commented May 27, 2023

have you added meshery-celebration-dark and meshery-celebration-light svgs in .github/welcome/
?
and the you have exchanges the dark and light logos 😢
image

@shashanksjSSJ
Copy link
Contributor Author

@Ghat0tkach, when the background is light, shouldn't the logo be dark so that it could be visible to the users and same goes for the dark theme, it is light because the background-color is dark, if anything is wrong please inform me, the other change I make correct the changes now, sorry for the trouble, I am a newbie 😄

@shashanksjSSJ
Copy link
Contributor Author

@Ghat0tkach, I have updated it like you told me to do, like I have described in my previous commit, I have copied and pasted the code from meshery/meshery therefore, I did not make any significant changes in the code as the images were working as expected, 😄 👍

Comment on lines 19 to 25

<picture>
<source media="(prefers-color-scheme: dark)" srcset=".github/welcome/Meshery_Welcome_light.png">
<source media="(prefers-color-scheme: light)" srcset=".github/welcome/Meshery_Welcome_light.png">
<img alt="Meshery Logo" src="">
</picture>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here I think @shashanksjSSJ , srcset needs to be a reference to absolute path to raw image.
Also the in the srcset both the images you have named as Meshery_Welcome_light so correct that too one should be named dark.
I'm also mentioning a PR where you can get better idea of what i'm talking about - Meshkit - #308

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shashanksjSSJ for your contribution.
Can you please use SVG format for the images and keep the files name in lowercase besides having an absolute path?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I need to change the raw link to /meshery/meshery right

@shashanksjSSJ
Copy link
Contributor Author

Hey @ShivangShandilya, I have uploaded the images into .github/welcome and then used raw image path for srcset, may be I need to change the image link /shashanksjSSJ/homebrew-tap/master/ to /mershery/homebrew-tap/master/, what do you think? 😅

@goldfishdolphin
Copy link
Member

goldfishdolphin commented May 28, 2023

@shashanksjSSJ please use absolute path like this and rename files to lowercase.


 <picture>
  <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/meshery/homebrew-tap/master/.github/assets/images/meshery-celebration-dark.svg">
  <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/meshery/homebrew-tap/master/.github/assets/images/meshery-celebration-light.svg">
  <img alt="Meshery Logo" src="">
  </picture>

@shashanksjSSJ
Copy link
Contributor Author

shashanksjSSJ commented May 29, 2023

Signed off by: shashanksjSSJ <shashanksj26@gmail.com>

Hello @leecalcote, I have added config.yml from meshery/meshery, as the images were already updated I haven't made a lot of changes in them.
I have submitted this for your review, and I want to thank @leecalcote for letting me contribute to the organization, this helped me to learn a lot.

Signed-off-by: Shashank S J <98632070+shashanksjSSJ@users.noreply.github.com>
 I have added the images into .github/welcome, and have made required changes in .github/config.yml as well.
The reason why I had not done this previously was because, I had copied this code from meshery/meshery like @leecalcote told me and pasted it directly into .github/config.yml, as the images were already linked, i.e, I did not make any significant changes like I have give in my previous commit description.

Signed-off-by: Shashank S J <98632070+shashanksjSSJ@users.noreply.github.com>
I have changed the srcset to raw image link, may be after you merge we need to change the link to /meshery.

Signed-off-by: Shashank S J <98632070+shashanksjSSJ@users.noreply.github.com>
Signed-off-by: Shashank S J <98632070+shashanksjSSJ@users.noreply.github.com>
Signed-off-by: Shashank S J <98632070+shashanksjSSJ@users.noreply.github.com>
Signed-off-by: Shashank S J <98632070+shashanksjSSJ@users.noreply.github.com>
@goldfishdolphin, I have updated the images to svg, and I have changed the srcset which actually had to be raw path of the svg's in my directory to meshery/homebrew-tap/master this way it can be made sure that even after the merge happens the image raw link remains the same.

Signed-off-by: Shashank S J <98632070+shashanksjSSJ@users.noreply.github.com>
<img alt="Meshery Logo" src="">
</picture>

&nbsp; &#9; &nbsp; &#9; &nbsp; &#9; &nbsp; &#9; [Join the community](http://slack.layer5.io), if you haven't yet and please leave a :star: [star on the project](../stargazers). :smile:
Copy link
Member

@goldfishdolphin goldfishdolphin May 31, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ShivangShandilya and @thisiskaransgit, I don't think line 26 is needed here. It does not sync with other Meshery repos celebration theme.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder why we removed this from the other repos. It's helpful to both invite people to the Slack and to star the repo. I encourage us to leave this message included.

Copy link
Member

@goldfishdolphin goldfishdolphin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@leecalcote
Copy link
Member

Thank you, @goldfishdolphin

@leecalcote leecalcote merged commit cb5d211 into meshery:master Jul 13, 2023
1 check passed
@welcome
Copy link

welcome bot commented Jul 13, 2023

Thanks for your contribution to Meshery! 🎉

Meshery Logo
        Join the community, if you haven't yet and please leave a ⭐ star on the project. 😄

@leecalcote
Copy link
Member

Good work, @shashanksjSSJ

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants