- 11 Nis, 2014 1 kayıt (commit)
-
-
Colomban Wendling yazdı
-
- 10 Nis, 2014 11 kayıt (commit)
-
-
Enrico Tröger yazdı
-
Enrico Tröger yazdı
-
Pavel Roschin yazdı
-
-
Enrico Tröger yazdı
On Windows we need to change the working directory on startup to not lock the directory Geany was started from (bug #2626124). However we can't change the directory to late in the startup process otherwise plugins maybe unable to load resources from the installation directory. Though we also can't change it too early otherwise opening files given with relative paths in Geany from the command line won't work anymore (bug #3613096). This change should fix both issues by changing the working directory after command line file handling happened and before plugins will be loaded.
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
Although the strings were properly marked for translation, they weren't actually translated because they missed run-time replacement.
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
Update nl.po
-
- 09 Nis, 2014 14 kayıt (commit)
-
-
Colomban Wendling yazdı
-
Peter Scholtens yazdı
First contrib in Github
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
Fix escaping of '-', '<' and '>' characters to properly handle inputs with more than 2 consecutive identical characters of this set.
-
Colomban Wendling yazdı
Fix the bounds checking on included styles only to check for inclusion actually defined styles, not to include random styles based on uninitialized array indices.
-
Colomban Wendling yazdı
A faulty bound checking resulted in reading a byte past the document end, which resulted in Scintilla returning byte 0 because the position was invalid. By adding this NUL byte to the string used to build the body, the body was truncated after the last document byte (as C strings are NUL-terminated), leading to any format structure after it to be missing from the output. This broke HTML and LaTeX export if the last line didn't end with a newline, as the last line's style closing structure were missing.
-
Colomban Wendling yazdı
We used to assume that if the selected text started with "0x" when inserting a color, we had to replace exactly 6 bytes after the "0x" prefix. Although this is generally the case as most color formats use 6 hexadecimal digits, it still would erase either too many or too few characters if actually replacing something shorter (i.e. "0xfff") or longer (i.e. "0xffffffffffff"). It could even partially override multi-byte characters if the 8th byte after the selection start was in the middle of a character, as the length was in bytes and not characters. Fix this by honoring the actual selection end.
-
- 08 Nis, 2014 1 kayıt (commit)
-
-
Colomban Wendling yazdı
-
- 07 Nis, 2014 1 kayıt (commit)
-
-
Frank Lanitz yazdı
-
- 06 Nis, 2014 4 kayıt (commit)
-
-
Enrico Tröger yazdı
As suggested by a preprocessor warning from winsock2.h (i686-w64-mingw32/include/winsock2.h:15:2: warning: #warning Please include winsock2.h before windows.h).
-
Enrico Tröger yazdı
-
Enrico Tröger yazdı
It seems this header is necessary on Windows 7 or newer gcc versions (not sure which one requires it) but according to the docs, it is necessary anyways.
-
gymka yazdı
-
- 02 Nis, 2014 8 kayıt (commit)
-
-
Colomban Wendling yazdı
-
SiegeLord yazdı
-
SiegeLord yazdı
Also, made it compile again.
-
SiegeLord yazdı
-
SiegeLord yazdı
-
SiegeLord yazdı
Also, make them compile again with the Rust compiler.
-
SiegeLord yazdı
New Rust syntax.
-
SiegeLord yazdı
Previously, things like: struct Foo { #[bar] baz: int } or struct Foo { #![bar] baz: int } would horribly confuse the parser and prevent proper parsing of the rest of the file.
-