Metropolis Themes (post your new themes here)

  Thread Rating:
  • 2 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
kyotocafe Offline
Senior Member
Posts: 214
Joined: Jul 2011
Reputation: 0
Location: kyoto, Japan
Post: #41
This SteamPunk theme is now my favorite. I do like it a lot Smile
find quote
jondimar Offline
Junior Member
Posts: 5
Joined: Mar 2012
Reputation: 0
Post: #42
These themes are really lovely :-)
find quote
stoli Offline
Skilled Skinner
Posts: 2,405
Joined: Nov 2008
Reputation: 30
Location: Florida
Post: #43
Good News - ppic has straightened out the issue with the Passion Repository and the themes, so anyone who has installed from there should be getting proper updates shortly.

@Amra - is there a link somewhere to get the Steam punk theme?
find quote
Amra Offline
Cimmerian
Posts: 452
Joined: Jun 2009
Reputation: 9
Location: Metropolis
Post: #44
(2012-04-23 17:22)stoli Wrote:  Good News - ppic has straightened out the issue with the Passion Repository and the themes, so anyone who has installed from there should be getting proper updates shortly.

@Amra - is there a link somewhere to get the Steam punk theme?
Cool & first post as usual.
find quote
stoli Offline
Skilled Skinner
Posts: 2,405
Joined: Nov 2008
Reputation: 30
Location: Florida
Post: #45
Who on earth would look at the first post? lol. All themes have been added/updated and should appear in tonight's pull from the Passion Repo. I'm also requesting a pull from the official repo with all the fixes everyone has provided.

Thanks for everyone's help!
find quote
sialivi Online
Posting Freak
Posts: 946
Joined: Dec 2008
Reputation: 7
Location: Sweden
Post: #46
Why were the .xbt's removed from github? Just did a clean download and now the themes aren't working, have to manually grab them from the first post.
(This post was last modified: 2012-04-23 22:22 by sialivi.)
find quote
stoli Offline
Skilled Skinner
Posts: 2,405
Joined: Nov 2008
Reputation: 30
Location: Florida
Post: #47
They mess up the pull requests to the official repo. Once it gets pulled in the next day or two I will put them back. Sorry about that.

You can also download them from here: https://github.com/stoli/Metropolis/downloads
find quote
jingai Offline
Skilled Skinner
Posts: 871
Joined: Mar 2010
Reputation: 6
Post: #48
(2012-04-23 22:29)stoli Wrote:  They mess up the pull requests to the official repo. Once it gets pulled in the next day or two I will put them back. Sorry about that.

You can technically put them back now if you wish, because they're going to pull from whatever commit you gave them, which won't include the files.

But, a better way to go about this would be to create a branch, probably named "1.1.0" (or whatever version it is), then delete the files and make a commit to that branch. Then request a pull from the new commit. This way people pulling from master won't have to deal with the files going missing.

It also leaves a convenient branch to check out past release versions whenever you want. Of course, you could also use tags instead and drop the branch once they actually pull it, but branches are cheap in git so there isn't really any harm in keeping them around.

-j
find quote
stoli Offline
Skilled Skinner
Posts: 2,405
Joined: Nov 2008
Reputation: 30
Location: Florida
Post: #49
Yeah, and that would also entail figuring out what the hell I am actually doing in git. Smile I'll work on it.
find quote
jingai Offline
Skilled Skinner
Posts: 871
Joined: Mar 2010
Reputation: 6
Post: #50
(2012-04-23 22:50)stoli Wrote:  Yeah, and that would also entail figuring out what the hell I am actually doing in git. Smile I'll work on it.

Oh, basically, it's this. First checkout the commit from which you want to pull (if it's not the latest). Then:

% git checkout -b 1.1.0
% git rm media/*.xbt
% git commit -m "Removing XBT files for repo pull"
% git push origin 1.1.0:1.1.0

Then to get back to normal on your local clone:

% git checkout master

Post to the mailing list that you want a pull from the "Removing XBT files for repo pull" commit (the hash).

After it's pulled, you can either leave the branch there on github (which I'd recommend for reasons stated above) or you can delete it with:

% git push origin :1.1.0

And to delete your local copy of the branch:

% git branch -D 1.1.0

Obviously replace all instances of "1.1.0" with the appropriate version.

-j
find quote
Post Reply