Re: [Github-comments] [geany/geany] Update link to GTK+3 bundle for test builds to self-hosted version (#1931)

2018-09-21 Thread Colomban Wendling
Merged #1931 into master. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/1931#event-1859686116

Re: [Github-comments] [geany/geany] Build: Could not resolve host: win32builder.gnome.org (#1930)

2018-09-21 Thread Colomban Wendling
Closed #1930 via #1931. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/1930#event-1859686127

[Github-comments] [geany/geany-plugins] GeanyVC: support subversion authenticated commit (#777)

2018-09-21 Thread andrewhotlab
I just started to use Geany, coming from Bluefish... it's really a great tool and I wish to tank everyone contributing! I only noticed a problem when I try commit to a Subversion repository which needs the user to be authenticated. No problem wen I commit to a repository which does not require

Re: [Github-comments] [geany/geany-plugins] GeanyLua: glspi_keycmd.h: added "Strip Trailing Spaces" (#759)

2018-09-21 Thread Colomban Wendling
Merged #759 into master. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/759#event-1859655846

Re: [Github-comments] [geany/geany] Update link to GTK+3 bundle for test builds to self-hosted version (#1931)

2018-09-21 Thread Colomban Wendling
I restarted PR builds that were failing, they should be back we relevant results soon. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/1931#issuecomment-423471721

Re: [Github-comments] [geany/geany-plugins] GeanyLua: update for new Scintilla 3.10 (#776)

2018-09-21 Thread Skif-off
@b4n Thank you for PR! I also did it two-three of weeks ago and got the same changes. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/776#issuecomment-423516667

Re: [Github-comments] [geany/geany] Extending the function of "Open selected file" (#1959)

2018-09-21 Thread Skif-off
Why not use GeanPy, Peasy or GeanyLua? And OS will do everything itself... -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/1959#issuecomment-423521325

[Github-comments] [geany/geany-plugins] GeanyLua: update for new Scintilla 3.10 (#776)

2018-09-21 Thread Colomban Wendling
@Skif-off could you take a look, as you seem to be interested in GeanyLua? This change is required for GeanyLua to build against current Geany master. I'm not sure of the implication of the changes in messages arguments, but this is a GeanyLua API break as well so it might be alright anyway.

Re: [Github-comments] [geany/geany-plugins] GeanyVC: support subversion authenticated commit (#777)

2018-09-21 Thread andrewhotlab
I guess that in order to achieve this, the plugin should start managing interactive usage... or it would be solved by getting the error code which is returned if unauthorized (1) and try again by asking username/password to the user and issuing the command `svn commit --user USERNAME --passwd

Re: [Github-comments] [geany/geany-plugins] GeanyVC: support subversion authenticated commit (#777)

2018-09-21 Thread Colomban Wendling
Can't username and password be set somewhere in a SVN configuration file? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/issues/777#issuecomment-423577652

Re: [Github-comments] [geany/geany-plugins] GeanyLua: update for new Scintilla 3.10 (#776)

2018-09-21 Thread Colomban Wendling
Merged #776 into master. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/776#event-1860240801

Re: [Github-comments] [geany/geany-plugins] GeanyVC: support subversion authenticated commit (#777)

2018-09-21 Thread Colomban Wendling
GeanyVC uses the real `svn` commands under the hood, so it should be possible to get this to work. I am not knowledgeable about SVN authenticated commits; what would you do to get this to work on the command line? GeanyVC uses `svn commit --non-interactive -m "MESSAGE" FILE_LIST` -- You are

Re: [Github-comments] [geany/geany-plugins] GeanyVC: support subversion authenticated commit (#777)

2018-09-21 Thread Colomban Wendling
@elextr the command is not run in a TTY, there's no way for the user to interact -- or that would be on the terminal from which Geany was launched at best, if stdin was inherited. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on

Re: [Github-comments] [geany/geany-plugins] GeanyVC: support subversion authenticated commit (#777)

2018-09-21 Thread elextr
Can't you just remove the `--non-interactive` to have svn prompt for credentials? By the nature of an IDE Geany is totally insecure, better to have handle usernames and passwords. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on

Re: [Github-comments] [geany/geany-plugins] GeanyVC: support subversion authenticated commit (#777)

2018-09-21 Thread elextr
ok, well, might as well just configure `--username` and `--passwd` on the commands, oh wait, its not configurable :( -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Github-comments] [geany/geany] Extending the function of "Open selected file" (#1959)

2018-09-21 Thread elextr
If its a directory I would have thought you would want to open the Geany file chooser, not an external application. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Github-comments] [geany/geany] Extending the function of "Open selected file" (#1959)

2018-09-21 Thread VictorelPetrovich
What about variant A. I suggested? Isn't it too basic and simple to require separate plugin? For example, to open a folder: - "Open selected file" already can tell if the when the string selected/under cursor is a directory - in Preferences-> Tools -> Tools paths , add another field for the

Re: [Github-comments] [geany/geany-plugins] GeanyVC: support subversion authenticated commit (#777)

2018-09-21 Thread andrewhotlab
Not in the SVN working directory, but `svn` can save user credentials under several files in the `~/.subversion/auth` directory tree. However I guess it might be tricky to parse them all and get the right credentials to use for the current working directory commit. Moreover, to save subversion