Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-sdoc for openSUSE:Factory checked in at 2022-08-09 15:26:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-sdoc (Old) and /work/SRC/openSUSE:Factory/.rubygem-sdoc.new.1521 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-sdoc" Tue Aug 9 15:26:52 2022 rev:8 rq:993520 version:2.4.0 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-sdoc/rubygem-sdoc.changes 2022-04-30 22:53:03.844266970 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-sdoc.new.1521/rubygem-sdoc.changes 2022-08-09 15:27:09.605420785 +0200 @@ -1,0 +2,12 @@ +Thu Aug 4 13:28:41 UTC 2022 - Stephan Kulow <[email protected]> + +updated to version 2.4.0 + see installed CHANGELOG.md + + 2.4.0 + ===== + + * #187 Allow setting CSS based version badge [@p8](https://github.com/p8) + + +------------------------------------------------------------------- Old: ---- sdoc-2.3.2.gem New: ---- sdoc-2.4.0.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-sdoc.spec ++++++ --- /var/tmp/diff_new_pack.kUEccN/_old 2022-08-09 15:27:10.229422568 +0200 +++ /var/tmp/diff_new_pack.kUEccN/_new 2022-08-09 15:27:10.233422580 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-sdoc -Version: 2.3.2 +Version: 2.4.0 Release: 0 %define mod_name sdoc %define mod_full_name %{mod_name}-%{version} ++++++ sdoc-2.3.2.gem -> sdoc-2.4.0.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md --- old/CHANGELOG.md 2022-04-22 09:57:47.000000000 +0200 +++ new/CHANGELOG.md 2022-05-10 20:41:51.000000000 +0200 @@ -1,6 +1,11 @@ Master ====== +2.4.0 +===== + +* #187 Allow setting CSS based version badge [@p8](https://github.com/p8) + 2.3.2 ===== Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rdoc/generator/template/rails/class.rhtml new/lib/rdoc/generator/template/rails/class.rhtml --- old/lib/rdoc/generator/template/rails/class.rhtml 2022-04-22 09:57:47.000000000 +0200 +++ new/lib/rdoc/generator/template/rails/class.rhtml 2022-05-10 20:41:51.000000000 +0200 @@ -45,6 +45,9 @@ <li><a href="<%= "#{rel_prefix}/#{h file.path}" %>"><%= h file.absolute_name %></a></li> <% end %> </ul> + <% if ENV['HORO_BADGE_VERSION'] %> + <div id="version-badge"><%= ENV['HORO_BADGE_VERSION'] %></div> + <% end %> </div> <main id="bodyContent"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rdoc/generator/template/rails/file.rhtml new/lib/rdoc/generator/template/rails/file.rhtml --- old/lib/rdoc/generator/template/rails/file.rhtml 2022-04-22 09:57:47.000000000 +0200 +++ new/lib/rdoc/generator/template/rails/file.rhtml 2022-05-10 20:41:51.000000000 +0200 @@ -32,6 +32,9 @@ </li> <li>Last modified: <%= file.file_stat.mtime %></li> </ul> + <% if ENV['HORO_BADGE_VERSION'] %> + <div id="version-badge"><%= ENV['HORO_BADGE_VERSION'] %></div> + <% end %> </div> <main id="bodyContent"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rdoc/generator/template/rails/index.rhtml new/lib/rdoc/generator/template/rails/index.rhtml --- old/lib/rdoc/generator/template/rails/index.rhtml 2022-04-22 09:57:47.000000000 +0200 +++ new/lib/rdoc/generator/template/rails/index.rhtml 2022-05-10 20:41:51.000000000 +0200 @@ -24,6 +24,9 @@ <li><%= h index.relative_name %></li> <li>Last modified: <%= index.last_modified %></li> </ul> + <% if ENV['HORO_BADGE_VERSION'] %> + <div id="version-badge"><%= ENV['HORO_BADGE_VERSION'] %></div> + <% end %> </div> <main id="bodyContent"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rdoc/generator/template/rails/resources/css/main.css new/lib/rdoc/generator/template/rails/resources/css/main.css --- old/lib/rdoc/generator/template/rails/resources/css/main.css 2022-04-22 09:57:47.000000000 +0200 +++ new/lib/rdoc/generator/template/rails/resources/css/main.css 2022-05-10 20:41:51.000000000 +0200 @@ -403,3 +403,22 @@ background: #fff; font-size: 2rem; } + +#version-badge { + position: fixed; + right: 0; + top: 0; + z-index: 100; + color: white; + transform: rotate(45deg) translate(27.5%, -40%); + min-width: 200px; + font-family: Helvetica, Arial, sans-serif; + font-size: 30px; + font-weight: bold; + font-style: italic; + line-height: 1.5; + text-shadow: 2px 2px 4px #5400007d; + text-align: center; + box-shadow: 0px 2px 2px 1px #1209096e; + background: radial-gradient(circle, rgb(255, 10, 0) 0%, rgb(200, 0, 0) 90%); +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rdoc/generator/template/rails/resources/css/panel.css new/lib/rdoc/generator/template/rails/resources/css/panel.css --- old/lib/rdoc/generator/template/rails/resources/css/panel.css 2022-04-22 09:57:47.000000000 +0200 +++ new/lib/rdoc/generator/template/rails/resources/css/panel.css 2022-05-10 20:41:51.000000000 +0200 @@ -12,8 +12,7 @@ top: 0; background: #000; color: #fff; - padding-right: 10px; - text-align: right; + padding: 0 10px; line-height: 40px; cursor: pointer; z-index: 2; @@ -84,7 +83,7 @@ width: 300px; height: 100%; background: #FFF; - z-index: 10; + z-index: 200; font-family: "Helvetica Neue", "Arial", sans-serif; overflow-x: hidden; border-right: 1px #ccc solid; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sdoc/version.rb new/lib/sdoc/version.rb --- old/lib/sdoc/version.rb 2022-04-22 09:57:47.000000000 +0200 +++ new/lib/sdoc/version.rb 2022-05-10 20:41:51.000000000 +0200 @@ -1,3 +1,3 @@ module SDoc - VERSION = '2.3.2' + VERSION = '2.4.0' end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2022-04-22 09:57:47.000000000 +0200 +++ new/metadata 2022-05-10 20:41:51.000000000 +0200 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: sdoc version: !ruby/object:Gem::Version - version: 2.3.2 + version: 2.4.0 platform: ruby authors: - Vladimir Kolesnikov @@ -11,7 +11,7 @@ autorequire: bindir: bin cert_chain: [] -date: 2022-04-22 00:00:00.000000000 Z +date: 2022-05-10 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: rdoc
