Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-skylighting-format-blaze-html 
for openSUSE:Factory checked in at 2024-12-20 23:10:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-skylighting-format-blaze-html (Old)
 and      
/work/SRC/openSUSE:Factory/.ghc-skylighting-format-blaze-html.new.1881 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-skylighting-format-blaze-html"

Fri Dec 20 23:10:56 2024 rev:5 rq:1231470 version:0.1.1.3

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-skylighting-format-blaze-html/ghc-skylighting-format-blaze-html.changes
      2024-03-20 21:16:25.806617886 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-skylighting-format-blaze-html.new.1881/ghc-skylighting-format-blaze-html.changes
    2024-12-20 23:11:49.579455475 +0100
@@ -1,0 +2,9 @@
+Sat Dec  7 22:08:19 UTC 2024 - Peter Simons <[email protected]>
+
+- Update skylighting-format-blaze-html to version 0.1.1.3.
+  ## 0.1.1.3
+
+    * Use `-webkit-text-size-adjust` instead of unsetting
+      inline-block (#202, Jacke Zimmerman).
+
+-------------------------------------------------------------------

Old:
----
  skylighting-format-blaze-html-0.1.1.2.tar.gz

New:
----
  skylighting-format-blaze-html-0.1.1.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-skylighting-format-blaze-html.spec ++++++
--- /var/tmp/diff_new_pack.9ecw5n/_old  2024-12-20 23:11:50.011473287 +0100
+++ /var/tmp/diff_new_pack.9ecw5n/_new  2024-12-20 23:11:50.015473451 +0100
@@ -19,7 +19,7 @@
 %global pkg_name skylighting-format-blaze-html
 %global pkgver %{pkg_name}-%{version}
 Name:           ghc-%{pkg_name}
-Version:        0.1.1.2
+Version:        0.1.1.3
 Release:        0
 Summary:        HTML formatter for skylighting syntax highlighting library
 License:        BSD-3-Clause

++++++ skylighting-format-blaze-html-0.1.1.2.tar.gz -> 
skylighting-format-blaze-html-0.1.1.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/skylighting-format-blaze-html-0.1.1.2/changelog.md 
new/skylighting-format-blaze-html-0.1.1.3/changelog.md
--- old/skylighting-format-blaze-html-0.1.1.2/changelog.md      2001-09-09 
03:46:40.000000000 +0200
+++ new/skylighting-format-blaze-html-0.1.1.3/changelog.md      2001-09-09 
03:46:40.000000000 +0200
@@ -1,5 +1,10 @@
 # Changelog for skylighting-format-blaze-html
 
+## 0.1.1.3
+
+  * Use `-webkit-text-size-adjust` instead of unsetting
+    inline-block (#202, Jacke Zimmerman).
+
 ## 0.1.1.2
 
 * Re-add `display: inline-block` to code line spans, but only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/skylighting-format-blaze-html-0.1.1.2/skylighting-format-blaze-html.cabal 
new/skylighting-format-blaze-html-0.1.1.3/skylighting-format-blaze-html.cabal
--- 
old/skylighting-format-blaze-html-0.1.1.2/skylighting-format-blaze-html.cabal   
    2001-09-09 03:46:40.000000000 +0200
+++ 
new/skylighting-format-blaze-html-0.1.1.3/skylighting-format-blaze-html.cabal   
    2001-09-09 03:46:40.000000000 +0200
@@ -1,5 +1,5 @@
 name:                skylighting-format-blaze-html
-version:             0.1.1.2
+version:             0.1.1.3
 synopsis:            HTML formatter for skylighting syntax highlighting library
 description:         This module allows tokens produced by skylighting-core
                      to be rendered as HTML.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/skylighting-format-blaze-html-0.1.1.2/src/Skylighting/Format/HTML.hs 
new/skylighting-format-blaze-html-0.1.1.3/src/Skylighting/Format/HTML.hs
--- old/skylighting-format-blaze-html-0.1.1.2/src/Skylighting/Format/HTML.hs    
2001-09-09 03:46:40.000000000 +0200
+++ new/skylighting-format-blaze-html-0.1.1.3/src/Skylighting/Format/HTML.hs    
2001-09-09 03:46:40.000000000 +0200
@@ -193,8 +193,9 @@
               " padding-left: 4px; }"
           ]
          divspec = [
-            "pre > code.sourceCode { white-space: pre; position: relative; }" 
-- position relative needed for relative contents
-          , "pre > code.sourceCode > span { line-height: 1.25; }"
+            "html { -webkit-text-size-adjust: 100%; }" -- Work around iOS bug, 
see https://github.com/jgm/pandoc/issues/7248
+          , "pre > code.sourceCode { white-space: pre; position: relative; }" 
-- position relative needed for relative contents
+          , "pre > code.sourceCode > span { display: inline-block; 
line-height: 1.25; }"
           , "pre > code.sourceCode > span:empty { height: 1.2em; }" -- correct 
empty line height
           , ".sourceCode { overflow: visible; }" -- needed for line numbers
           , "code.sourceCode > span { color: inherit; text-decoration: 
inherit; }"
@@ -205,7 +206,7 @@
           , "}"
           , "@media print {"
           , "pre > code.sourceCode { white-space: pre-wrap; }"
-          , "pre > code.sourceCode > span { display: inline-block; 
text-indent: -5em; padding-left: 5em; }"
+          , "pre > code.sourceCode > span { text-indent: -5em; padding-left: 
5em; }"
           , "}"
           ]
          linkspec = [ "@media screen {"

Reply via email to