Hi all,
i have created a pull request for the 12.3 countdown banners:
https://github.com/openSUSE/countdown.o.o/pull/2
and hope that Ludwig will take care about it.
Greets Marcus
Hi all,
i have created a pull request for the 12.3 countdown banners:
https://github.com/openSUSE/countdown.o.o/pull/2
and hope that Ludwig will take care about it.
Ludwig has merged the pull request and will check with Darix to update the counter processor.
Greets Marcus
On Mon, Feb 4, 2013 at 6:30 AM, Marcus Moeller mail@marcusmoeller.ch wrote:
Hi all,
i have created a pull request for the 12.3 countdown banners:
https://github.com/openSUSE/countdown.o.o/pull/2
and hope that Ludwig will take care about it.
Ludwig has merged the pull request and will check with Darix to update the counter processor.
Greets Marcus
-- To unsubscribe, e-mail: opensuse-artwork+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-artwork+owner@opensuse.org
I did this for GRUB 2 using the dark gradients and other elements used in the KDM images.
http://i1108.photobucket.com/albums/h414/anditosan/1610_zps74646327.png
Hope you like it
PS: I tried cloning the openSUSE github repo but it only cloned a README file. For that I made this ZIP file to be downloaded and replace the current images with this new ones. I also changed the theme.txt file to work on the fonts. Please let me know if it works for you. I am asking for help in adding these new files to the "branding" folder. Thank you.
https://www.dropbox.com/s/l3f7ap5c7czok7t/Grub2-123-anditosan.zip
Andy (anditosan)
Dear Andy.
-- To unsubscribe, e-mail: opensuse-artwork+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-artwork+owner@opensuse.org
I did this for GRUB 2 using the dark gradients and other elements used in the KDM images.
http://i1108.photobucket.com/albums/h414/anditosan/1610_zps74646327.png
Hope you like it
Great job, man.
PS: I tried cloning the openSUSE github repo but it only cloned a README file. For that I made this ZIP file to be downloaded and replace the current images with this new ones. I also changed the theme.txt file to work on the fonts. Please let me know if it works for you. I am asking for help in adding these new files to the "branding" folder. Thank you.
https://www.dropbox.com/s/l3f7ap5c7czok7t/Grub2-123-anditosan.zip
Here are some short instructions on how to handle the branding github repo:
First, create a fork, as described here:
https://help.github.com/articles/fork-a-repo
Then clone your fork:
git clone https://github.com/$YOUR_GITHUB_ACCOUNT/branding.git
and add the original repository as remote:
cd branding git remote add upstream https://github.com/openSUSE/branding.git
Fetch the original content and checkout/merge the branch you want to work on:
git fetch upstream git checkout -b 12.3 git merge origin/12.3
Now you can work with your local branch as you already know.
To commit your changes to your fork, do:
git commit git push origin 12.3
Then you can create a pull request:
https://help.github.com/articles/creating-a-pull-request
If you want to sync with upstream changes, do a:
git merge upstream/12.3
Hope that helps a bit.
Greets Marcus
Hey Marcus great help this fast guide of working!! This comes in the right moment! Now I'm working in it here in the hackathon. But, Bruno tell me that here, in the last command:
2013/2/5 Marcus Moeller mail@marcusmoeller.ch:
git fetch upstream git checkout -b 12.3 git merge origin/12.3
Maybe we must use "git merge upstream/12.3" Is right?
Thank's again!
Marcus, maybe you can complete this good and useful tuto adding, how to refresh the local repo with the modifications maded by others in the upstream repo... maybe "git fetch" ??
Dear Victor
Marcus, maybe you can complete this good and useful tuto adding, how to refresh the local repo with the modifications maded by others in the upstream repo...
as mentioned:
If you want to sync with upstream changes, do a:
git merge upstream/12.3
Greets Marcus