<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sciteco, branch v2.0.0</title>
<subtitle>Scintilla-based Text Editor and COrrector</subtitle>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/'/>
<entry>
<title>updated ChangeLog for v2.0.0 and TODO</title>
<updated>2023-06-19T20:26:27+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2023-06-19T20:26:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=80fa87e5f65c18f39e712c9fb6527e66cae0d91c'/>
<id>80fa87e5f65c18f39e712c9fb6527e66cae0d91c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>distribute sciteco.desktop</title>
<updated>2023-06-19T18:20:13+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2023-06-19T18:20:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=75533443ecae81d6861bdc1402a0e4b271838979'/>
<id>75533443ecae81d6861bdc1402a0e4b271838979</id>
<content type='text'>
* Useful for packaging on platforms where we can only build from tarballs (FreeBSD)
* I don't know whether it's always safe and correct to install this file into $DATADIR/applications,
  so the file is only distributed but not installed yet.
* It contains a hardcoded binary name "gsciteco". This could actually differ
  depending on the concrete --program-prefix and it would be good to include the exact
  installation path.
  This however is not possible as long as we do not install this file.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Useful for packaging on platforms where we can only build from tarballs (FreeBSD)
* I don't know whether it's always safe and correct to install this file into $DATADIR/applications,
  so the file is only distributed but not installed yet.
* It contains a hardcoded binary name "gsciteco". This could actually differ
  depending on the concrete --program-prefix and it would be good to include the exact
  installation path.
  This however is not possible as long as we do not install this file.
</pre>
</div>
</content>
</entry>
<entry>
<title>the SciTECO data installation path is now configurable via --with-scitecodatadir</title>
<updated>2023-06-19T17:45:16+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2023-06-19T17:45:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=60a09132b62c3cae86f5e832830a4490ba5bf712'/>
<id>60a09132b62c3cae86f5e832830a4490ba5bf712</id>
<content type='text'>
* This is also the base of $SCITECOPATH.
* Changing it is useful for packaging where it is not possible to factor out the common
  files between Curses and Gtk builds into a "sciteco-common" package.
  As an alternative, you can now create disjunct sciteco-curses and sciteco-gtk packages.
* You will most likely want to use this for Gtk builds as in:
  --with-interface=gtk --program-prefix=g --with-scitecodatadir=/usr/local/share/gsciteco.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* This is also the base of $SCITECOPATH.
* Changing it is useful for packaging where it is not possible to factor out the common
  files between Curses and Gtk builds into a "sciteco-common" package.
  As an alternative, you can now create disjunct sciteco-curses and sciteco-gtk packages.
* You will most likely want to use this for Gtk builds as in:
  --with-interface=gtk --program-prefix=g --with-scitecodatadir=/usr/local/share/gsciteco.
</pre>
</div>
</content>
</entry>
<entry>
<title>.teco_ini: don't set up any margins or indention settings on the unnamed buffer</title>
<updated>2023-06-18T17:05:30+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2023-06-18T17:05:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=b65c64a200dac8194dacc90ae2150b683f64cd8a'/>
<id>b65c64a200dac8194dacc90ae2150b683f64cd8a</id>
<content type='text'>
* The lexer.test.* macros don't work on the unnamed buffer,
  so any per-language indention settings etc. could be accidentally
  applied to the unnamed buffer.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* The lexer.test.* macros don't work on the unnamed buffer,
  so any per-language indention settings etc. could be accidentally
  applied to the unnamed buffer.
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed caret scrolling on startup</title>
<updated>2023-06-18T15:50:39+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2023-06-18T15:50:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=493504f12f79990dae7791efa27366b560151f2c'/>
<id>493504f12f79990dae7791efa27366b560151f2c</id>
<content type='text'>
* Since Scintilla no longer automatically scrolls the caret (see 941f48da6dde691a7800290cc729aaaacd051392),
  the caret wouldn't always end up in the view on startup.
* Added teco_interface_refresh() which includes SCI_SCROLLCARET and
  is invoked on startup. This helps with the Curses backend.
  It also reduces code redundancies.
* On Gtk, the caret cannot be easily scrolled on startup as long as no size is allocated
  to the window, so we also added a size-allocate callback to the
  window's event box. Sizes are less often allocated to the event box than to the
  window itself for some strange reason.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Since Scintilla no longer automatically scrolls the caret (see 941f48da6dde691a7800290cc729aaaacd051392),
  the caret wouldn't always end up in the view on startup.
* Added teco_interface_refresh() which includes SCI_SCROLLCARET and
  is invoked on startup. This helps with the Curses backend.
  It also reduces code redundancies.
* On Gtk, the caret cannot be easily scrolled on startup as long as no size is allocated
  to the window, so we also added a size-allocate callback to the
  window's event box. Sizes are less often allocated to the event box than to the
  window itself for some strange reason.
</pre>
</div>
</content>
</entry>
<entry>
<title>resolved warning in gtk-label.c due to wrong enum type</title>
<updated>2023-05-14T11:37:09+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2023-05-14T11:37:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=517ae85027f088615026fad6b880647dac5abf0a'/>
<id>517ae85027f088615026fad6b880647dac5abf0a</id>
<content type='text'>
* This probably did not cause any bugs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* This probably did not cause any bugs.
</pre>
</div>
</content>
</entry>
<entry>
<title>FreeBSD: fixed the poll-thread memory limiting implementation - it's the default now</title>
<updated>2023-05-14T01:58:28+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2023-05-14T01:58:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=96b60afcf4293db2e6841b58500fd12d0344e75f'/>
<id>96b60afcf4293db2e6841b58500fd12d0344e75f</id>
<content type='text'>
* On FreeBSD both the dlmalloc replacement and poll-thread via sysctl() work
  but the poll-thread has been benchmarked to be significantly faster,
  at least on my machine.
  You can still ./configure --enable-malloc-replacement of course.
* Interestingly, the RSS of the process visible via htop does not decrease
  after OOMs or command-line terminations - with neither of the implementations.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* On FreeBSD both the dlmalloc replacement and poll-thread via sysctl() work
  but the poll-thread has been benchmarked to be significantly faster,
  at least on my machine.
  You can still ./configure --enable-malloc-replacement of course.
* Interestingly, the RSS of the process visible via htop does not decrease
  after OOMs or command-line terminations - with neither of the implementations.
</pre>
</div>
</content>
</entry>
<entry>
<title>FreeBSD: fixed test suite</title>
<updated>2023-05-14T01:56:56+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2023-05-14T01:56:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=6333590e0822ccb5e707e4784bfd19ecbae60840'/>
<id>6333590e0822ccb5e707e4784bfd19ecbae60840</id>
<content type='text'>
* it appears to behave similar to Mac OS with regard to recursions
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* it appears to behave similar to Mac OS with regard to recursions
</pre>
</div>
</content>
</entry>
<entry>
<title>fixup EC on Win32 and interruptions via CTRL+C</title>
<updated>2023-05-12T10:12:34+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2023-05-12T10:12:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=aa2e96a3dc66b7c3607540847d8fada6bb1a6331'/>
<id>aa2e96a3dc66b7c3607540847d8fada6bb1a6331</id>
<content type='text'>
* This especially fixes spawning on 0,128ED-mode broken since
  f557af9a9112955d3b65f6ad0d54c0791189f961.
* The process is added to a job object now, which allows us to
  kill the entire process tree.
  Previously we we were leaving around orphaned processes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* This especially fixes spawning on 0,128ED-mode broken since
  f557af9a9112955d3b65f6ad0d54c0791189f961.
* The process is added to a job object now, which allows us to
  kill the entire process tree.
  Previously we we were leaving around orphaned processes.
</pre>
</div>
</content>
</entry>
<entry>
<title>fixup: building on UNIX</title>
<updated>2023-05-09T17:38:21+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2023-05-09T17:38:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=29bf2275f6cdf6e45f2987035097de2f79f0c6d2'/>
<id>29bf2275f6cdf6e45f2987035097de2f79f0c6d2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
