1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Style scheme file format changes | libgedit-gtksourceview</title>
<link rel="stylesheet" type="text/css" media="all" href="styles/main.css" />
<link rel="stylesheet" type="text/css" media="print" href="styles/print.css" />
</head>
<body>
<h1>libgedit-gtksourceview<br />Style scheme file format changes</h1>
<p>
This page lists the incompatible changes to the
<a href="style-scheme-file-format.html">style scheme file format</a>.
</p>
<h2>libgedit-gtksourceview 299.0 --> 299.2</h2>
<p>
The <code><author></code> tags are no longer supported, so you should
remove them.
</p>
<p>
The support for the <code>parent-scheme</code> attribute has been removed. It
was unused. If you relied on it, copy and adapt the content of the parent
scheme.
</p>
<p>
The support for the <code>line-background</code> attribute (for the
<code><style></code> tag) has been removed.
</p>
<p>
You need to add the <code>kind</code> attribute (for light/dark), a new
mandatory attribute.
</p>
<p>
The <code>version</code> attribute of the <code><style-scheme></code>
element is no longer supported, so you should remove it.
</p>
<p>
The parser is now a bit more strict, check if there are warning messages
printed in the terminal if a style scheme fails to load.
</p>
<h2>libgedit-gtksourceview 299.3 --> 299.4</h2>
<p>
The background-pattern feature has been removed from the library. As such,
a <code><style></code> tag with the name <code>background-pattern</code>
is no longer taken as a special value (but it's not an error to keep it).
</p>
</body>
</html>
|