<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/scripts, branch rel-5-0-0</title>
<subtitle>Git mirror of the Scintilla editor component. Referenced by the SciTECO repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/'/>
<entry>
<title>Remove Lexilla definitions from Scintilla.iface as they are now in</title>
<updated>2021-02-06T02:32:01+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2021-02-06T02:32:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=eb7a8f0408a0b3f1e6ecf5f90b20ada206cf9f06'/>
<id>eb7a8f0408a0b3f1e6ecf5f90b20ada206cf9f06</id>
<content type='text'>
lexilla/include/LexicalStyles.iface.
Remove filtering of lexical constants from HFacer.py.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
lexilla/include/LexicalStyles.iface.
Remove filtering of lexical constants from HFacer.py.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove lexer data extraction and regeneration since lexers are now in Lexilla.</title>
<updated>2021-02-03T23:16:25+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2021-02-03T23:16:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=201db60456b44128f48c818ea0a13d1146ee7df5'/>
<id>201db60456b44128f48c818ea0a13d1146ee7df5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move the patterns to check and exclude to HeaderOrder.txt so one script can be</title>
<updated>2021-02-01T06:31:58+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2021-02-01T06:31:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=20bdc47bf1ece6f32b104e4ecc64abd88f5bd8ab'/>
<id>20bdc47bf1ece6f32b104e4ecc64abd88f5bd8ab</id>
<content type='text'>
used for Scintilla, Lexilla, and SciTE.
Update HeaderOrder.txt to match files moved out to Lexilla.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
used for Scintilla, Lexilla, and SciTE.
Update HeaderOrder.txt to match files moved out to Lexilla.
</pre>
</div>
</content>
</entry>
<entry>
<title>Updating version number.</title>
<updated>2020-08-11T22:39:05+00:00</updated>
<author>
<name>Neil Hodgson</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2020-08-11T22:39:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=17663447e1de99e02f10ef52d68823f9ca179074'/>
<id>17663447e1de99e02f10ef52d68823f9ca179074</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Defer most initialisation until Scintilla window is created.</title>
<updated>2020-06-06T00:09:29+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2020-06-06T00:09:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=b5b2247de50e20e7db3c64e786aab788d9f49148'/>
<id>b5b2247de50e20e7db3c64e786aab788d9f49148</id>
<content type='text'>
Previously, more initialisation was performed inside DllMain but some actions
such as loading libraries are unsafe inside DllMain.
Avoid listbox UnregisterClass if no attempt to register which will occur if
no Scintilla windows were created.
std::call_once is used to ensure initialisation is performed at most once.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, more initialisation was performed inside DllMain but some actions
such as loading libraries are unsafe inside DllMain.
Avoid listbox UnregisterClass if no attempt to register which will occur if
no Scintilla windows were created.
std::call_once is used to ensure initialisation is performed at most once.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use pathlib.</title>
<updated>2020-06-03T23:58:12+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2020-06-03T23:58:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=eadb190f1bb1303dffcfcb1e8d5305a2c1e2ef60'/>
<id>eadb190f1bb1303dffcfcb1e8d5305a2c1e2ef60</id>
<content type='text'>
Read files as cp437 so all bytes are valid and windows-1252 invalid characters
do not fail.
When new headers found, save reasonable order of headers to "NewOrder.txt"
making it easier to update HeaderOrder.txt.
When a file is out-of-order, save list of headers used in the same order as
HeaderOrder.txt to "&lt;path&gt;.ordered".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Read files as cp437 so all bytes are valid and windows-1252 invalid characters
do not fail.
When new headers found, save reasonable order of headers to "NewOrder.txt"
making it easier to update HeaderOrder.txt.
When a file is out-of-order, save list of headers used in the same order as
HeaderOrder.txt to "&lt;path&gt;.ordered".
</pre>
</div>
</content>
</entry>
<entry>
<title>Regenerate version numbers in cocoa/Scintilla project.</title>
<updated>2020-05-23T10:47:01+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2020-05-23T10:47:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=56f4cf0c0d32c5b9025b2f88c0c55f3432e96b1f'/>
<id>56f4cf0c0d32c5b9025b2f88c0c55f3432e96b1f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use pathlib in generator scripts.</title>
<updated>2020-05-19T02:39:23+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2020-05-19T02:39:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=ef98916585104cb893bdd7dd8f4bf91313639baf'/>
<id>ef98916585104cb893bdd7dd8f4bf91313639baf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove call to ScintillaData as result not used.</title>
<updated>2020-05-19T01:43:33+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2020-05-19T01:43:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=868780c1a7b664d0453c3921baed3ddfa5a2e4c3'/>
<id>868780c1a7b664d0453c3921baed3ddfa5a2e4c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update Python versions. Modules that are only used as top level scripts or from</title>
<updated>2020-04-17T10:24:30+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2020-04-17T10:24:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=df5f7a0c831a77b4c981e168a5dbbdcaaa4d90b9'/>
<id>df5f7a0c831a77b4c981e168a5dbbdcaaa4d90b9</id>
<content type='text'>
scripts that require Python 3.6 have Python 2.x support removed.
Modules that may be called from Python 2 for PySide require Python 2.7.
Documented how to run scripts.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
scripts that require Python 3.6 have Python 2.x support removed.
Modules that may be called from Python 2 for PySide require Python 2.7.
Documented how to run scripts.
</pre>
</div>
</content>
</entry>
</feed>
