Re: [Geany-Devel] Proposal: move tag type ctags-geany mapping out of individual parsers

2014-11-08 Thread Jiří Techet
On Fri, Nov 7, 2014 at 7:20 PM, Nick Treleaven nick.trelea...@btinternet.com wrote: On 07/11/2014 17:26, Colomban Wendling wrote: Yep, I was thinking the same a few days ago while discussing a little CTags shared library, and had the same idea +1 Good, if there's an agreement here, I can

Re: [Geany-Devel] Proposal: move tag type ctags-geany mapping out of individual parsers

2014-11-08 Thread Jiří Techet
On Sat, Nov 8, 2014 at 7:30 PM, Colomban Wendling lists@herbesfolles.org wrote: I did the easy removals/renames in https://github.com/b4n/geany/commits/ctags-tag-entry (that's on top of TM branch, but easy to change or pick up specific commits) to see how easy it'd be -- and this part was

[Geany-Devel] suggestion: Renaming GProject to ProjectTree

2014-12-11 Thread Jiří Techet
Hi, I've just pushed quite a few changes to my GProject plugin (unfortunately in a single commit because I was making these changes while working on the tag manager and it was too painful to rebase multiple commits every time I changed the Geany API). If there are some problems, please let me

Re: [Geany-Devel] suggestion: Renaming GProject to ProjectTree

2014-12-14 Thread Jiří Techet
On Sat, Dec 13, 2014 at 9:19 PM, Matthew Brush mbr...@codebrainz.ca wrote: On 14-12-11 12:32 PM, Jiří Techet wrote: Hi, I've just pushed quite a few changes to my GProject plugin (unfortunately in a single commit because I was making these changes while working on the tag manager

Re: [Geany-Devel] suggestion: Renaming GProject to ProjectTree

2014-12-14 Thread Jiří Techet
On Sun, Dec 14, 2014 at 4:00 PM, Martin Andrews martin.andr...@redcatlabs.com wrote: If people really love the name ProjectTree for the former GProject, I'd be happy enough (but for the pain of renaming a bunch of stuff...) to rename my plugin ProjectOrganizer or something that doesn't

Re: [Geany-Devel] suggestion: Renaming GProject to ProjectTree

2014-12-17 Thread Jiří Techet
On Mon, Dec 15, 2014 at 7:44 AM, Martin Andrews martin.andr...@redcatlabs.com wrote: ProjectOrganizer could actually be a nice name for my plugin as well Great! Good, I have created a pull request here renaming GProject to ProjectOrganizer: https://github.com/geany/geany-plugins/pull/178 I

Re: [Geany-Devel] Spawn module API

2015-06-26 Thread Jiří Techet
On Fri, Jun 26, 2015 at 3:31 AM, Lex Trotman ele...@gmail.com wrote: There is also a custom spawn in geanyctags, I didn't look at what it did differently. There isn't - I'm using utils_spawn_sync() inside the spawn_cmd() function. Cheers, Jiri

[Geany-Devel] Profiling Geany with gperftools

2015-06-19 Thread Jiří Techet
Hi, as the ctags guys were interested how I profiled some performance issue in the Python parser, I thought it would be a good idea to write a wiki page about it because the outputs are very useful for locating various performance issues. I put it here:

Re: [Geany-Devel] Move question from Scintilla list

2015-06-26 Thread Jiří Techet
On Fri, Jun 26, 2015 at 11:40 AM, Lex Trotman ele...@gmail.com wrote: Jiri, I have pasted the questions and Neils answers below with my comments and I'm sure others may have more info. Jiří Techet: I have a question regarding the use of SCI_COLOURISE. It is used in Geany at several

Re: [Geany-Devel] Move question from Scintilla list

2015-06-26 Thread Jiří Techet
On Fri, Jun 26, 2015 at 1:21 PM, Jiří Techet tec...@gmail.com wrote: 2. Immediately after SCI_SETTEXT when loading (or reloading) file. This may or may not be needed depending on Geany’s features. One reason for doing this is if you want to perform a global fold operation since

Re: [Geany-Devel] Windows installer snapshots with GTK 2.24

2015-06-27 Thread Jiří Techet
On Sat, Jun 27, 2015 at 1:09 AM, Enrico Tröger enrico.troe...@uvena.de wrote: Hi, I've built new Windows installers from current GIT master. Downloads can be found here: http://download.geany.org/snapshots/ Please note that these are test builds from the current development version,

Re: [Geany-Devel] Windows installer snapshots with GTK 2.24

2015-06-27 Thread Jiří Techet
On Sat, Jun 27, 2015 at 1:09 AM, Enrico Tröger enrico.troe...@uvena.de wrote: Hi, I've built new Windows installers from current GIT master. Downloads can be found here: http://download.geany.org/snapshots/ Please note that these are test builds from the current development version,

Re: [Geany-Devel] pull request on GitHub, to add GeanyHighlightSelectedWords, into Geany Plugins

2015-06-01 Thread Jiří Techet
On Sun, May 31, 2015 at 10:57 AM, Colomban Wendling lists@herbesfolles.org wrote: Le 31/05/2015 07:41, Lex Trotman a écrit : On 31 May 2015 at 11:46, Lex Trotman ele...@gmail.com wrote: On 31 May 2015 at 08:05, Thomas Martitz ku...@rockbox.org wrote: Am 30.05.2015 um 03:19 schrieb

Re: [Geany-Devel] pull request on GitHub, to add GeanyHighlightSelectedWords, into Geany Plugins

2015-05-29 Thread Jiří Techet
On Fri, May 29, 2015 at 1:25 AM, Matthew Brush mbr...@codebrainz.ca wrote: Ideally you could improve the underlying implementation of an existing one if your way is better[0] and they perform the same function. It's really confusing for users to figure out what is the right plugin when

Re: [Geany-Devel] Windows installer snapshots with GTK 2.24

2015-06-28 Thread Jiří Techet
On Sun, Jun 28, 2015 at 11:53 AM, Enrico Tröger enrico.troe...@uvena.de wrote: Hi Jiří, I've built new Windows installers from current GIT master. [..] Any feedback is welcome. Hi Enrico, seems to be working fine here. One idea: wouldn't it be good to package the

[Geany-Devel] Simplifying file saving options

2015-08-19 Thread Jiří Techet
Hi, after some time spent debugging https://github.com/geany/geany/issues/605 I think the file saving options are a bit confusing and misleading and should be simplified. 1. Both g_file_set_contents() and g_file_replace_contents() do absolutely the same thing (saving to temporary file, then

Re: [Geany-Devel] [Geany-Users] Geany-Plugins website down because of issue at sf

2015-07-20 Thread Jiří Techet
On Mon, Jul 20, 2015 at 11:19 AM, Lex Trotman ele...@gmail.com wrote: Move plugins.geany.org to github pages. https://pages.github.com/ Attaches right to the repositories where the site source is. Or to the geany server - what matters is just to be far away from SF wherever it is... Jiri

Re: [Geany-Devel] [Geany-Users] [ANN] Geany 1.25 is out!

2015-07-13 Thread Jiří Techet
-monthly sprints. Thank you to Jiří Techet for the OSX build as it looks fantastic and works well. A colleague who uses OSX and Linux was recently frustrated with trying to find a suitable text editor for OSX, given his love for Geany. The advent of the OSX build solved his problem immediately

Re: [Geany-Devel] [Geany-Users] Geany-Plugins website down because of issue at sf

2015-07-21 Thread Jiří Techet
On Tue, Jul 21, 2015 at 6:58 AM, Lex Trotman ele...@gmail.com wrote: If its gonna be hosted on Geany projects server it needs to be HTTPS and that means getting a real certificate accepted by browsers. HTTPS isn't used for Geany tarballs or binaries from

Re: [Geany-Devel] [Geany-Users] [ANN] Geany 1.26 is out!

2015-11-15 Thread Jiří Techet
New plugin API (Thomas Martitz). > * Add support for "proxy" plugins (Thomas Martitz). > * Fix spurious "source file has been modified" messages (Jiří Techet). > * Update Scintilla to version 3.6.1. > * Keeping undo history when reloading files is now enabled by de

Re: [Geany-Devel] [RFC]: No force push policy on Github PRs

2015-07-08 Thread Jiří Techet
On Wed, Jul 8, 2015 at 5:47 AM, Matthew Brush mbr...@codebrainz.ca wrote: I propose that we disallow force pushing, rebasing, squashing, etc. on any PR until it is fully ready for final merging. […] ready for merging. At that point it _might_ make sense to fudge history and get rid of some

Re: [Geany-Devel] Devel Digest, Vol 93, Issue 3

2015-12-17 Thread Jiří Techet
Hi Per, I have written some notes below how Djynn's project management differs from ProjectOrganizer and some rationale for why I went that way. In my opinion the core functionality is quite similar. On Wed, Dec 16, 2015 at 4:09 PM, Per Löwgren wrote: > Hello, > > I

Re: [Geany-Devel] Devel Digest, Vol 93, Issue 2

2015-12-15 Thread Jiří Techet
Hi Per, On Tue, Dec 15, 2015 at 1:49 PM, Per Löwgren wrote: > > > > Hi, > > > > The API has been fixed to not leak symbols, which it did for a few > > recent versions. The only functions that are public, which is how it's > > always been, are those documented in the API

Re: [Geany-Devel] Devel Digest, Vol 93, Issue 2

2015-12-15 Thread Jiří Techet
On Tue, Dec 15, 2015 at 2:35 PM, Colomban Wendling < lists@herbesfolles.org> wrote: > Hi, > > >> […] > >> > >> The API has been fixed to not leak symbols, which it did for a few > >> recent versions. The only functions that are public, which is how it's > >> always been, are those documented

Re: [Geany-Devel] Zombified pull requests

2016-01-06 Thread Jiří Techet
ested ok in actual use. Then I will commit > it, without trying it myself (Colomban spins in his bed :). Of course > if a recommender turns out to be unreliable then they will be > subsequently ignored, but I haven't had any problems to date. > > I suspect many of the co

Re: [Geany-Devel] Zombified pull requests

2016-01-06 Thread Jiří Techet
Hi Matthew, On Wed, Jan 6, 2016 at 4:32 AM, Matthew Brush <mbr...@codebrainz.ca> wrote: > On 2016-01-05 12:46 PM, Jiří Techet wrote: > >> Hi, >> >> happy new year and let's celebrate it with something cheerful - zombies! >> >> > Wouldn't they only be

Re: [Geany-Devel] RFC: Merge C and C++ Filetypes (no troll)

2016-01-07 Thread Jiří Techet
On Wed, Jan 6, 2016 at 9:23 PM, Thomas Martitz <ku...@rockbox.org> wrote: > Am 06.01.2016 um 21:12 schrieb Jiří Techet: > >> >> >> It's indeed at least interesting to consider, because at least for .h >> headers there really is some mixed stuff all o

Re: [Geany-Devel] RFC: Merge C and C++ Filetypes (no troll)

2016-01-07 Thread Jiří Techet
On Thu, Jan 7, 2016 at 11:14 PM, Lex Trotman <ele...@gmail.com> wrote: > On 8 January 2016 at 08:00, Jiří Techet <tec...@gmail.com> wrote: > > > > > > On Wed, Jan 6, 2016 at 9:23 PM, Thomas Martitz <ku...@rockbox.org> > wrote: > >&

Re: [Geany-Devel] Geany-Plugins rework -- RFC

2015-12-21 Thread Jiří Techet
Hi Frank, sorry for replying so late. The proposal looks good to me except maybe... On Sat, Nov 21, 2015 at 2:42 PM, Frank Lanitz wrote: > Hi folks, > > Since a few releases I'm experiencing some not optimal way of > development which is surely caused by the long history

Re: [Geany-Devel] Devel Digest, Vol 93, Issue 5

2015-12-19 Thread Jiří Techet
Hi Per, On Sat, Dec 19, 2015 at 12:43 AM, Per Löwgren wrote: > Hi again Jiri, > > It was a long meeting, continuing into dinner and drinks, but now I'm home > and continue my reply to your message. I've turned off the digest-function, > there should be no more delay in

[Geany-Devel] Anyone still using makefile.win32 for Windows build?

2016-06-12 Thread Jiří Techet
Hi, just a quick question - is anyone still using the Windows build based on the makefile.win32 files? If not, maybe they could be removed completely. Any objections? (I ran into this when doing some tag manager source reorganization and the question is whether it's worth updating the

Re: [Geany-Devel] [Test] Geany GTK3 Windows binaries for testing

2016-04-10 Thread Jiří Techet
On Sun, Apr 10, 2016 at 4:00 PM, Enrico Tröger <enrico.troe...@uvena.de> wrote: > On 25/03/16 10:55, Enrico Tröger wrote: > > On 24/03/16 07:03, Thomas Martitz wrote: > >> Am 23.03.2016 um 15:21 schrieb Jiří Techet: > >>> > >>> Some problems I notic

Re: [Geany-Devel] [Test] Geany GTK3 Windows binaries for testing

2016-03-24 Thread Jiří Techet
On Thu, Mar 24, 2016 at 1:04 AM, Matthew Brush <mbr...@codebrainz.ca> wrote: > On 2016-03-23 07:21 AM, Jiří Techet wrote: > >> On Tue, Mar 22, 2016 at 9:02 AM, Enrico Tröger <enrico.troe...@uvena.de> >> wrote: >> >> Hi, >>> >>> here are

Re: [Geany-Devel] [Test] Geany GTK3 Windows binaries for testing

2016-03-24 Thread Jiří Techet
On Thu, Mar 24, 2016 at 3:36 PM, Matthew Brush <mbr...@codebrainz.ca> wrote: > On 2016-03-24 03:13 AM, Jiří Techet wrote: > >> On Thu, Mar 24, 2016 at 1:04 AM, Matthew Brush <mbr...@codebrainz.ca> >> wrote: >> >> On 2016-03-23 07:21 AM, Jiří Techet wrot

Re: [Geany-Devel] [Test] Geany GTK3 Windows binaries for testing

2016-03-24 Thread Jiří Techet
On Thu, Mar 24, 2016 at 6:08 PM, Thomas Martitz <ku...@rockbox.org> wrote: > Am 24. März 2016 16:21:00 MEZ, schrieb "Jiří Techet" <tec...@gmail.com>: > >> >>>> That's it then. If you run Windows in VM on a "retina" Mac where each >>&

Re: [Geany-Devel] [Test] Geany GTK3 Windows binaries for testing

2016-03-23 Thread Jiří Techet
On Tue, Mar 22, 2016 at 9:02 AM, Enrico Tröger wrote: > Hi, > > here are new Windows installers for testing. > They are built from GIT master and this time against GTK3. > > There are two reasons for this: > - test Geany+GTK3 more on Windows > - there seems to be a bug

Re: [Geany-Devel] Storing per-project settings for plugins

2017-02-15 Thread Jiří Techet
Hello Vasiliy, there should be no problem with your approach (the extra content of the config file will be preserved by Geany). However, Geany offers plugins the possibility to read/write from/to the project config files natively. When you register for the "project-open" signal, the callback is

Re: [Geany-Devel] [FT-plugins] Proposed "Features"

2016-08-30 Thread Jiří Techet
On Tue, Aug 30, 2016 at 6:41 PM, Matthew Brush <mbr...@codebrainz.ca> wrote: > On 2016-08-30 08:51 AM, Thomas Martitz wrote: > >> Am 30.08.2016 um 01:53 schrieb Matthew Brush: >> >>> On 2016-08-29 03:17 PM, Thomas Martitz wrote: >>> >&

Re: [Geany-Devel] [FT-plugins] Proposed "Features"

2016-08-31 Thread Jiří Techet
On Wed, Aug 31, 2016 at 1:22 PM, Thomas Martitz <ku...@rockbox.org> wrote: > Am 31.08.2016 um 13:03 schrieb Jiří Techet: > > >> >> On Tue, Aug 30, 2016 at 11:29 PM, Thomas Martitz <ku...@rockbox.org >> <mailto:ku...@rockbox.org>> wrote: >>

Re: [Geany-Devel] [FT-plugins] Allowing plugins to supply filetype specific functionality

2016-08-28 Thread Jiří Techet
Hi Matthew, some random thoughts. I'm not sure I agree with doing lots of changes on a separate branch basically without any review. While you will be able to commit things fast to the branch, the most probable outcome will be the branch will get never merged because either nobody will be able

Re: [Geany-Devel] [FT-plugins] Proposed "Features"

2016-08-29 Thread Jiří Techet
On Mon, Aug 29, 2016 at 5:14 AM, Matthew Brush wrote: > Hi All, > > Related to my previous mail, and assuming it is somewhat reasonable, I > would like to propose a list of initial features that will be useful to > allow plugins to provide, in no particular order: > >

Re: [Geany-Devel] OSX ports?

2016-10-14 Thread Jiří Techet
On Wed, Oct 12, 2016 at 7:19 PM, Chris H <spaml...@xmail.net> wrote: > > Quoting Jiří Techet : > > Hi Chris, > Hello Jiří, and thanks for the reply... > > > > > On Mon, Oct 10, 2016 at 8:09 AM, Chris H wrote: > > > > > > > > Quoti

Re: [Geany-Devel] OSX ports?

2016-10-11 Thread Jiří Techet
Hi Chris, On Mon, Oct 10, 2016 at 8:09 AM, Chris H wrote: > > Quoting Chris H : > Apologies, my mailer truncated my message... > > > > Greetings, > > Sorry if this has been asked in the past. I've attempted to find similar > > topics in the > > list archive. But to no

Re: [Geany-Devel] Future of THANKS/contributors list inside help dialog

2017-03-09 Thread Jiří Techet
Hi Frank, On Thu, Mar 9, 2017 at 2:56 PM, Frank Lanitz wrote: > Hi, > > Currently we have apart of the git list itself two places where we have > added contributors in past, but which look quiet orphaned nowadays: > > The contributors-dialog on Geany->Help: > >

Re: [Geany-Devel] Future of THANKS/contributors list inside help dialog

2017-03-12 Thread Jiří Techet
Hi Lex, On Fri, Mar 10, 2017 at 12:58 AM, Lex Trotman wrote: > ... > > > > I think these actually are po updates mostly - even though you commit > them, > > git shows the author of the patch, not the committer and there definitely > > weren't Geany code patches merged from 42

Re: [Geany-Devel] OSX plugin development

2017-09-22 Thread Jiří Techet
Hi Steve, I slightly remember I got an error like this one in the past but I don't remember what exactly the problem was. Anyway, it's not good to mix dependencies from homebrew and jhbuild. If you have some environment variables set up to link against homebrew libraries, this is what could cause

Re: [Geany-Devel] OSX plugin development

2017-10-10 Thread Jiří Techet
Xau @1.0.8_0 (active) > > xorg-libxcb @1.12_2+python27 (active) > > xorg-libXcomposite @0.4.4_0 (active) > > xorg-libXcursor @1.1.14_0 (active) > > xorg-libXdamage @1.1.4_0 (active) > > xorg-libXdmcp @1.1.2_0 (active) > > xorg-libXext @1.3.3_0 (activ

Re: [Geany-Devel] OSX plugin development

2017-09-30 Thread Jiří Techet
Hi Steve, I found this issue https://gitlab.kitware.com/cmake/cmake/issues/17101 not sure if it's related. In your case I suspect either some clash with Homebrew (in this case I recommend building in a separate account) or that you built part of the dependencies on previous macOS system and

Re: [Geany-Devel] OSX plugin development

2017-10-01 Thread Jiří Techet
Hi Steve, yeah, I meant a different login. Oh, you use MacPorts too. I had some problems with MacPorts and jhuild in the past so that definitely could be it as well. Jiri On Sun, Oct 1, 2017 at 6:56 AM, Steven Blatnick wrote: > Thanks again for the quick reply. > >

Re: [Geany-Devel] OSX plugin development

2017-10-11 Thread Jiří Techet
the > GtkEntry like I used to on linux. However, I was also using an older > version of geany at the time I worked on this plugin last on linux. > > > > Here is the source code for my plugin: https://github.com/sblatnick/ > geany-plugins/blob/dev/quick-search/src/quick-search

Re: [Geany-Devel] OSX plugin development

2017-10-11 Thread Jiří Techet
e 'exit' to return. > > bash-3.2$ geany -V > > geany 1.32 (git >= 3fb94c23) (built on 2017-10-10 with GTK 2.24.31, GLib > 2.52.2) > > > > Thanks, > > > > Steve > > > > *From:* Jiří Techet [mailto:tec...@gmail.com] > *Sent:* Wednesday, October 11,

Re: [Geany-Devel] OSX plugin development

2017-10-11 Thread Jiří Techet
8tr...@yahoo.com> wrote: > THANK YOU. I just built and used one of my plugins  > > > > For some reason, the focus is messed up on this plugin. Do I need to > handle window focus differently on mac perhaps? > > > > Thanks, > > > > Steve > > > > *Fr

Re: [Geany-Devel] [ANN] Geany 1.32 is out!

2017-12-01 Thread Jiří Techet
Hi, I have re-uploaded the macOS installation image for this release. I used an incorrect signing certificate for the original binary and it made macOS warn users upon first launch of the app. I unfortunately didn't see it on my machine because the wrong certificate was in my keychain (noticed by

Re: [Geany-Devel] [Geany-Users] [ANN] Geany 1.33 is out!

2018-02-25 Thread Jiří Techet
Hi, just a note the Mac version will be late. The build scripts download some libraries from Sourceforge which currently doesn't allow wget downloads and returns the following: We're sorry -- the Sourceforge site is currently in Disaster Recovery mode, and currently requires the use of

Re: [Geany-Devel] [ANN] Geany 1.34 is out!

2018-12-16 Thread Jiří Techet
I've just uploaded the macOS binary here: https://download.geany.org/geany-1.34_osx.dmg For this release I had to disable app signing because the app couldn't be started with it on OS X 10.10 for some reason. This means that after installing the app you will have to right-click its icon in the

[Geany-Devel] Re: How to generate geany.txt HTML with meson?

2023-02-10 Thread Jiří Techet via Devel
Hi Nick, doesn't meson -Dhtml-docs=enabled builddir do the job? You can find all the Geany's configuration options in https://github.com/geany/geany/blob/master/meson_options.txt Cheers, Jiri On Fri, Feb 10, 2023 at 7:09 PM Nick Treleaven via Devel < devel@lists.geany.org> wrote: > Hi all,