8954 Commits

Author SHA1 Message Date
Enrico Tröger
2d9f97debd Post release version bump
Say hello to Geany 1.32 "Bemos"!
2017-07-16 15:29:55 +02:00
Enrico Tröger
4af55534c5 Set release date 2017-07-16 12:58:13 +02:00
Enrico Tröger
30f23bb847 Add recently merged PRs to NEWS 2017-07-15 12:57:19 +02:00
Enrico Tröger
e185f4784f Merge pull request #1536 from vfaronov/fix-color-chooser
Fix converting color to hex for insertion
2017-07-15 12:37:12 +02:00
Vasiliy Faronov
7027377998 Update HTML keywords (#1530)
* Add newly standardized HTML elements to filetypes.html

To enable highlighting them as keywords in HTML documents, add
the following elements defined in W3C HTML 5.1
(https://www.w3.org/TR/html51/fullindex.html#index-elements):

- menuitem
- picture
- rb
- rtc
- template

as well as the following elements defined in WHATWG HTML Living Standard
(https://html.spec.whatwg.org/multipage/indices.html#elements-3):

- math
- slot
- svg

* Add newly standardized HTML attributes to filetypes.html

To enable highlighting them as keywords in HTML documents, add
30 attributes defined in W3C HTML 5.1
(https://www.w3.org/TR/html51/fullindex.html#attributes-table)
and a further 15 attributes defined in the WHATWG HTML Living Standard
(https://html.spec.whatwg.org/multipage/indices.html#attributes-3).

* Sort the list of HTML keywords
2017-07-12 09:44:53 +10:00
Colomban Wendling
71b8fea91d Update NEWS 2017-07-10 18:49:21 -07:00
Vasiliy Faronov
4f1b2a0313 Fix converting color to hex for insertion
Fixes #1527.

In win32_show_color_dialog, utils_scale_round is not necessary at all
because Get{R,G,B}Value [1] already return 0..255, which we can immediately
render as hex.

[1] https://msdn.microsoft.com/en-us/library/windows/desktop/dd144923.aspx
2017-07-08 18:46:01 +03:00
Frank Lanitz
35a5d457f4 Update of Lithuanian translation 2017-07-02 18:49:29 +02:00
Frank Lanitz
1d100ae457 Update of Japanese translation 2017-07-02 18:49:29 +02:00
Yan Pashkovsky
4406ccf970 Cmake and Csharp Keywords (#1315)
* cmake cs keywords

* cs and cmake keywords update

c sharp keywords https://msdn.microsoft.com/en-us/library/x53a06bb.aspx

* reviewed cmake keywords

reviewed cmake keywords according to https://cmake.org/cmake/help/v3.0/manual/cmake-commands.7.html

* public private interface

* cmake alphabetical kws

* comments
2017-06-27 17:15:30 +10:00
Frank Lanitz
174fac750c Update po-files for string freeze of Geany 1.31 2017-06-25 11:02:09 +02:00
Giorgioggì
fbe6106216 Fix comment/uncomment keyboard shortcut for Arduino filetype (#1510) 2017-06-23 18:52:43 +02:00
Samsul Ma'arif
1305b43a98 Update Indonesian translation (#1501)
Signed-off-by: Samsul Ma'arif <hay@samsul.web.id>
2017-05-25 10:20:15 +02:00
Colomban Wendling
8425371477 Haxe: Update keywords (#1216)
Update keywords with https://haxe.org/manual/expression.html#keywords.

`trace` is kept although it's not a keyword, because it was already
there and http://try.haxe.org/ highlights it identically to some other
keywords.
2017-05-02 13:46:28 +10:00
Vasiliy Faronov
fefc3a51b9 Explain the behavior of search keybindings regarding word boundaries (#1478)
Fixes #1467.
2017-05-02 08:42:59 +10:00
Jacob H. Pratt
9f4407ca29 Add require_relative in ruby syntax highlighting (#1472) 2017-04-29 11:20:38 +10:00
Vasiliy Faronov
dbcf456031 Update HACKING (#1479)
* Update obsolete references to GLib 2.27/28 in HACKING

Fixes #1476.

* Replace obsolete gcc -W option with -Wextra in HACKING

According to gcc --help=warnings, -W is a deprecated option
and -Wextra should be used instead.
2017-04-25 18:09:40 +10:00
yurayko
c296efed64 fix typo in russian translation (#1474) 2017-04-23 19:07:29 +02:00
Colomban Wendling
6f692112e3 C: Fix line continuation handling (#1370)
Escaped newlines were properly handled inside preprocessor directives,
but not otherwise.

Seeing `continue` here suggests the code used to work a long time ago
but some loop refactoring broke it, as now it would not stay in the
loop unless in a preprocessor directive.  Or maybe it only ever worked
for preprocessor directives, and the `continue` was superfluous?

Fixes #1370.
2017-04-20 16:57:02 +10:00
Jiří Techet
2707006286 Fix crash when plugin_set_key_group() is called several times by plugins (#1426)
When plugin calls plugin_set_key_group() several times for the same
group (when creating keybindings dynamically and needs to reset them),
it crashes with the current code the second time it gets called.

The reason is that group->plugin_keys is an array into which entries of
group->key_items point and when calling

g_ptr_array_set_size(group->key_items, 0);

it calls free_key_binding() for every item - when these items are
deallocated by g_free(group->plugin_keys) previously, calls of
free_key_binding() reference an invalid memory.

Just first resizing group->key_items (and calling free_key_binding() for
its items) and freeing group->plugin_keys afterwards fixes the problem.
2017-04-15 20:48:03 +10:00
Nick Treleaven
5539c3f908 Update status bar after clicking detect indent type menu item 2017-04-12 09:05:56 +01:00
Baurzhan Muftakhidinov
2386153df4 Fix the typo in Kazakh translation (#1447) 2017-03-27 17:37:16 +02:00
Robert Antoni Buj Gelonch
d34ebce039 Update Catalan translators (#1440) 2017-03-22 11:18:16 +01:00
A. Tombs
33762f5225 Add parfor to Matlab keyword list (#1021)
Add parfor to Matlab keyword list

Add `parfor` to the list of keywords to be highlighted in Matlab script sources. `parfor` is a Matlab keyword that can be used in place of `for` to achieve parallel processing.
2017-03-22 10:06:47 +10:00
Robert Antoni Buj Gelonch
06f70e5b78 Catalan translation: use unique accelerator keys for menus (#1434) 2017-03-19 18:58:51 +01:00
Frank Lanitz
6e1a1633b5 Update bugtracker URL to github 2017-03-19 18:57:38 +01:00
Frank Lanitz
4f388e515c Backmerge bugfix release branch 1.30 from 1.30.1 to master 2017-03-19 18:52:45 +01:00
Colomban Wendling
46812c47fb Fix scripts/set-release-date when LC_TIME is set
We actually need to override LC_TIME if it is set, so use LC_ALL which
overrides everything rather than LANG that is used as a fallback.
2017-03-19 18:20:53 +01:00
Colomban Wendling
a1929f1c80 Set release date 2017-03-19 18:16:55 +01:00
Frank Lanitz
0dd13069a0 Merge pull request #1433 from b4n/po/copyright-years
Fix copyright years translations
2017-03-18 20:55:31 +01:00
Colomban Wendling
79f9a716c2 Unfuzzy strings that were only marked as such because of years update 2017-03-18 20:17:47 +01:00
Colomban Wendling
def32abfed Fixup copyright years translations 2017-03-18 20:02:49 +01:00
Colomban Wendling
1aa82c3e6e Add a script to fixup copyright years translations 2017-03-18 20:02:45 +01:00
Frank Lanitz
aada81e8ca Update NEWS and cleanup a unneeded fuzzy string inside Catalan translation 2017-03-18 17:44:52 +01:00
Robert Antoni Buj Gelonch
231e29c79e Update Catalan translation (#1432) 2017-03-18 17:43:12 +01:00
Robert Antoni Buj Gelonch
be91746d7e Update Catalan translation (#1432) 2017-03-18 17:42:34 +01:00
Frank Lanitz
28b046722a Update NEWS for 1.30.1 for backported translations 2017-03-17 23:05:19 +01:00
Frank Lanitz
6e0e6a4aab Update of Greek translation 2017-03-17 23:01:09 +01:00
Frank Lanitz
b4eb662b82 Small update of German translation 2017-03-17 23:00:56 +01:00
Frank Lanitz
8d88401292 Update of Spanish translation 2017-03-17 23:00:46 +01:00
Andrej Herceg
ec1bde008d Update of Slovak translation (#1424) 2017-03-17 23:00:32 +01:00
Colomban Wendling
420c109609 Update NEWS 2017-03-17 20:44:06 +01:00
Colomban Wendling
03ee2e2b00 GTK: Fix popup positioning on monitors not positioned at 0,0
Fixes #1422.

X-Scintilla-Bug-URL: https://sourceforge.net/p/scintilla/bugs/1920/
X-Scintilla-Commit-ID: 8e0cb37c4972cd66b33293b88031acf453685cfd
2017-03-17 20:20:42 +01:00
Colomban Wendling
2414029727 Bump version in preparation for 1.30.1 2017-03-17 20:19:56 +01:00
Frank Lanitz
ffb71f95b3 Update of Greek translation 2017-03-17 15:56:00 +01:00
Colomban Wendling
7514212d32 GTK: Fix popup positioning on monitors not positioned at 0,0
Fixes #1422.

X-Scintilla-Bug-URL: https://sourceforge.net/p/scintilla/bugs/1920/
X-Scintilla-Commit-ID: 8e0cb37c4972cd66b33293b88031acf453685cfd
2017-03-17 13:59:48 +01:00
Frank Lanitz
2a2b8d11b8 Small update of German translation 2017-03-15 15:42:04 +01:00
Frank Lanitz
709acc0be2 Update of Spanish translation 2017-03-13 10:52:31 +01:00
Andrej Herceg
994cb4797d Update of Slovak translation (#1424) 2017-03-06 20:01:24 +01:00
Colomban Wendling
3303bde758 Post release version bump
Say hello to Geany 1.31 "Trevin"!
2017-03-05 16:17:03 +01:00