Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Leap:42.1:Update
highlighting-kate
highlighting-kate.changes
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File highlighting-kate.changes of Package highlighting-kate
------------------------------------------------------------------- Tue Jun 2 11:24:13 UTC 2015 - mimi.vx@gmail.com - refreshed add-rpm-syntax-patch ------------------------------------------------------------------- Sun May 31 15:05:40 UTC 2015 - mimi.vx@gmail.com - update to 0.6 - disabled add-rpmspec-syntax.patch * Support new KF5 token attributes (#69). * Added to TokenType: ConstantTok, SpecialCharTok, VerbatimStringTok, SpecialStringTok, ImportTok, DocumentationTok, AnnotationTok, CommentVarTok, VariableTok, ControlFlowTok, OperatorTok, BuiltInTok, ExtensionTok, PreprocessorTok, AttributeTok, InformationTok, WarningTok. * Revised styles to add clauses for the new TokenTypes. * Revised HTML formatter to produce CSS for all the new TokenTypes, and to include comments naming each type. * Modified ParseSyntaxFiles to handle new types. * Updated tests. * Updated xml syntax definitions. However, we retain an older version of haskell.xml, since the new one didn't work properly. * Added ToColor instance for Int. * Renamed Highlight[.hs] to highlighting-kate[.hs] (Geoff Nixon). * Allow # as an operator in Haskell (Ryan Yates). * Added support for Kotlin (kotlinlang.org) (Sebastien Soudan). * Rename Highlight utility and Highlight.hs to highlighting-kate and highlighting-kate.hs to avoid naming conflicts with other syntax highlighting utilities. * Put code blocks in a div. This reverts the change in 0.5.13, wrapping all blocks in a pre element. (Pre elements are only supposed to contain flow content, not block-level elements like tables.) Instead we now wrap each code block in a div with class sourceCode. * The default CSS now includes div.sourceCode { x-overflow: auto; }, so that a scroll bar will appear on small screens. See jgm/pandoc#1903 and jgm/highlighting-kate#65 for background. * Wrap HTML table with line numbers in a pre element (Adam Sapek). HTML tables are impossible to format via styles for different screen widths. This means that pandoc generated pages with code blocks must have a fixed minimal width, making them hard to read on narrower screens. * Wrapping the table in a pre block allows formatting of code blocks to have a horizontal scroll bar if the content doesn't fit the screen width, by adding the following style: pre.sourceCode { overflow-x: auto; } * This enables pandoc to generate responsive HTML pages. ------------------------------------------------------------------- Thu May 14 12:23:01 UTC 2015 - mimi.vx@gmail.com - correct post/postun and deps section ------------------------------------------------------------------- Tue Apr 21 11:30:32 UTC 2015 - mimi.vx@gmail.com - update to 0.5.12 - refresh add-rpmspec-syntax.patch * Added Data and Typeable instances for types used in pandoc's ReaderOptions and WriterOptions (Shahbaz Youssefi). * Bumped blaze-html upper bounds (RyanGlScott). * Added idris syntax definition (Alexander Shabalin). * Added regex-posix install to 'make prep' step (@johguenther). * Modified isocpp.xml to fix float parsing. The float regex in isocpp.xml seems to work fine with Kate's regex engine, but gives different results with pcre. Added isocpp.xml.patch to keep track of the divergence from upstream. * Fixed rest.xml regex (#54). * Fixed line continuations (#51). API change: Added synStContinuation field to SyntaxState. * Added Dockerfile syntax (James Turnbull, #49). * Fixed 'prep' target in Makefile. * Added support for Agda (Matthias C. M. Troffaes). * Made doctype case-insensitive in HTML 5 (Ondřej Žára). ------------------------------------------------------------------- Tue Apr 7 16:33:40 UTC 2015 - peter.trommler@ohm-hochschule.de - go back to "ordinary" build * optimization level changed in ghc-rpm-macros * fixes build with versioned html doc dirs ------------------------------------------------------------------- Thu Sep 25 09:52:23 UTC 2014 - peter.trommler@ohm-hochschule.de - update to 0.5.9 * disable optimization despite ticket marked as fixed * memory usage still too high for OBS * see https://ghc.haskell.org/trac/ghc/ticket/8980 - refresh add-rpmspec-syntax.patch ------------------------------------------------------------------- Thu Mar 27 14:45:49 UTC 2014 - sbahling@suse.com - Correct package license ------------------------------------------------------------------- Sun Mar 16 07:02:17 UTC 2014 - sbahling@suse.com - Update to 0.5.6.1 from upstream * Allow blaze-html 0.7 * Added restructuredtext. * Updated rust syntax definition. * Changed lua highlighting so variables/constants not highlighted as keywords. * Updated kate syntax definitions for python, cmake. - Add add-rpmspec-syntax.patch for support of RPM spec file\ highlighting ------------------------------------------------------------------- Thu Sep 26 17:08:33 UTC 2013 - peter.trommler@ohm-hochschule.de - fix typo in Group tag ------------------------------------------------------------------- Fri Aug 2 07:57:40 UTC 2013 - peter.trommler@ohm-hochschule.de - update to 0.5.5 from upstream * fix LaTeX output issues * improved input parsing * code refactoring ------------------------------------------------------------------- Thu May 16 16:57:19 UTC 2013 - peter.trommler@ohm-hochschule.de - update to 0.5.3.9 from upstream * update to Curry highlighting ------------------------------------------------------------------- Mon Mar 11 14:28:24 UTC 2013 - peter.trommler@ohm-hochschule.de - expand pkg_name macro in "name" tag for Factory submission ------------------------------------------------------------------- Mon Mar 11 14:23:49 UTC 2013 - peter.trommler@ohm-hochschule.de - update to 0.5.3.8 from upstream - requirement for pandoc 1.11 * support for mozilla rust and Julia * updated xml descriptions from kate repository * bumped version bound on blaze-html * fixed alignment of line numbers with lines ------------------------------------------------------------------- Sun Nov 18 11:26:01 UTC 2012 - peter.trommler@ohm-hochschule.de - update to 0.5.3.3 from upstream * clickable line numbers ------------------------------------------------------------------- Wed Oct 3 08:04:31 UTC 2012 - peter.trommler@ohm-hochschule.de - update to 0.5.3.2 from upstream highlighting-kate 0.5.3.2 (07 Sep 2012) * Fixed handling of backslash in bash highlighting. Sometimes "\\" is used for backslash in the syntax definitions (as in bash), other times "\". We now handle both cases. highlighting-kate 0.5.3.1 (07 Sep 2012) * More changes to properly handle includes. This closes issue #22 with doxygen comments. pDefault has been incorporated into the ends of the context parsers, instead of being put in parseExpression. * Re-added doxygenlua, which now works. highlighting-kate 0.5.3 (07 Sep 2012) * Improved handling of include directives. This fixes bugs in comments caused by doxygen and javadoc includes. * Changes to internal Types and Common: - Context is now a (String, String) rather than a String. The first is the syntax name, the second the context name. - ContextStack is now a list of Contexts. - synStLanguage has been removed. - pEndLine parameter has been removed from mkParseSourceLine. - parseExpression now handles the endline. - parseExpressionInternal has been removed in the individual parsers; we now use parseExpression. highlighting-kate 0.5.2 (10 Aug 2012) * Updated xml syntax definitions from kate repository: bash, c, clojure, coffee (formerly coffeescript), cpp, doxygen, fortran, go, latex, prolog, r, ruby, tcl. ------------------------------------------------------------------- Sat Jun 16 16:42:30 UTC 2012 - peter.trommler@ohm-hochschule.de - update to 0.5.1 from upstream for pandoc update highlighting-kate 0.5.1 (29 May 2012) * Fixed inline LaTeX formatting: it should be `|...|` rather than `\Verb{...}`. highlighting-kate 0.5.0.6 (27 Apr 2012) * Added zenburn style. * Updated for compatibility with blaze-html 0.5.*. ------------------------------------------------------------------- Thu Jun 7 07:50:59 UTC 2012 - peter.trommler@ohm-hochschule.de - cabal2spec 0.25.5 spec file template ------------------------------------------------------------------- Sat Mar 17 12:01:06 UTC 2012 - peter.trommler@ohm-hochschule.de - fixed LICENSE double packaging ------------------------------------------------------------------- Tue Mar 13 09:26:28 UTC 2012 - peter.trommler@ohm-hochschule.de - set option to build executable ------------------------------------------------------------------- Mon Mar 12 14:34:24 UTC 2012 - peter.trommler@ohm-hochschule.de - initial packaging.
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor