diff --git a/docs/changelog.rst b/docs/changelog.rst --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -18,7 +18,7 @@ Changelog - gui optimizations, fixed application width to 1024px - numerous small bugfixes -1.0.2 (**2010-11-XX**) +1.0.2 (**2010-11-12**) ---------------------- - fixed #59 missing graph.js diff --git a/rhodecode/public/css/style.css b/rhodecode/public/css/style.css --- a/rhodecode/public/css/style.css +++ b/rhodecode/public/css/style.css @@ -393,7 +393,7 @@ right:200px; max-height:275px; overflow:auto; overflow-x:hidden; -white-space:nowrap; +white-space:normal; } #header #header-inner #quick li ul li a.journal,#header #header-inner #quick li ul li a.journal:hover { @@ -417,6 +417,20 @@ margin:0; padding:12px 9px 7px 24px; } +#header #header-inner #quick li ul li a.hg,#header #header-inner #quick li ul li a.hg:hover { +background:url("../images/icons/hgicon.png") no-repeat scroll 4px 9px #FFF; +min-width:167px; +margin:0; +padding:12px 9px 7px 24px; +} + +#header #header-inner #quick li ul li a.git,#header #header-inner #quick li ul li a.git:hover { +background:url("../images/icons/giticon.png") no-repeat scroll 4px 9px #FFF; +min-width:167px; +margin:0; +padding:12px 9px 7px 24px; +} + #header #header-inner #quick li ul li a.repos,#header #header-inner #quick li ul li a.repos:hover { background:url("../images/icons/database_edit.png") no-repeat scroll 4px 9px #FFF; width:167px; diff --git a/rhodecode/public/images/hgicon.png b/rhodecode/public/images/hgicon.png deleted file mode 100644 index 60effbc5e613d8c8a6f1418853ded6aa4e599671..0000000000000000000000000000000000000000 GIT binary patch literal 0 Hc$@ ${next.title()} - + diff --git a/rhodecode/templates/login.html b/rhodecode/templates/login.html --- a/rhodecode/templates/login.html +++ b/rhodecode/templates/login.html @@ -4,7 +4,7 @@ ${_('Sign In')} - ${c.rhodecode_name} - + diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -39,10 +39,14 @@ description = ('Mercurial and Git reposi #long description try: readme_file = 'README.rst' - long_description = open(readme_file).read() + changelog_file = 'docs/changelog.rst' + long_description = open(readme_file).read() + '/n/n' + \ + open(changelog_file).read() + except IOError, err: sys.stderr.write("[WARNING] Cannot find file specified as " - "long_description (%s)\n skipping that file" % readme_file) + "long_description (%s)\n or changelog (%s) skipping that file" \ + % (readme_file, changelog_file)) long_description = description