Branch: refs/heads/master
Author: Ilario Pierbattista <ulven101(a)gmail.com>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Sat, 08 Jun 2013 12:55:39 UTC
Commit: e949ff8872ca87c9626299ab04260177bad84057
https://github.com/geany/geany/commit/e949ff8872ca87c9626299ab04260177bad84…
Log Message:
-----------
Add "strictfp" Java keyword
Closes #936.
Modified Paths:
--------------
data/filetypes.java
Modified: data/filetypes.java
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -2,7 +2,7 @@
[styling=C]
[keywords]
-primary=abstract assert break case catch class const continue default do else enum extends final finally for future generic goto if implements import inner instanceof interface native new outer package private protected public rest return static super switch synchronized this throw throws transient try var volatile while true false null
+primary=abstract assert break case catch class const continue default do else enum extends final finally for future generic goto if implements import inner instanceof interface native new outer package private protected public rest return static strictfp super switch synchronized this throw throws transient try var volatile while true false null
secondary=boolean byte char double float int long short void
# documentation keywords for javadoc
doccomment=author deprecated exception param return see serial serialData serialField since throws todo version
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Frank Lanitz <flanitz(a)bgc-jena.mpg.de>
Committer: Frank Lanitz <flanitz(a)bgc-jena.mpg.de>
Date: Fri, 07 Jun 2013 09:04:44 UTC
Commit: bc926a3ff02ae1085244d1fc57f0eca2bbbd7dcc
https://github.com/geany/geany/commit/bc926a3ff02ae1085244d1fc57f0eca2bbbd7…
Log Message:
-----------
Update of Italian translation
Modified Paths:
--------------
po/it.po
Modified: po/it.po
3662 files changed, 1913 insertions(+), 1749 deletions(-)
===================================================================
No diff available, check online
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Dimitar Zhekov <dimitar.zhekov(a)gmail.com>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Fri, 07 Jun 2013 04:57:41 UTC
Commit: 42c00f2f508b40c33b838e3cd8b694c1f5abf188
https://github.com/geany/geany/commit/42c00f2f508b40c33b838e3cd8b694c1f5abf…
Log Message:
-----------
sync C++ compiler detection under Windows with the C compiler detection
Modified Paths:
--------------
wscript
Modified: wscript
3 files changed, 2 insertions(+), 1 deletions(-)
===================================================================
@@ -303,9 +303,10 @@ def configure(conf):
def options(opt):
- # Disable MSVC detetion on win32: building Geany with MSVC is currently not supported
+ # Disable MSVC detection on win32: building Geany with MSVC is currently not supported
# If anyone wants to add support for building with MSVC, this hack should be removed.
c_compiler['win32'] = ['gcc']
+ cxx_compiler['win32'] = ['g++']
opt.load('compiler_cc')
opt.load('compiler_cxx')
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Thu, 06 Jun 2013 14:07:08 UTC
Commit: 6b406d04dca1913b93e3031ae8b19a66cef4e80c
https://github.com/geany/geany/commit/6b406d04dca1913b93e3031ae8b19a66cef4e…
Log Message:
-----------
Add a note in the Scintilla update script to add files to the build system
Modified Paths:
--------------
scripts/update-scintilla.sh
Modified: scripts/update-scintilla.sh
2 files changed, 2 insertions(+), 0 deletions(-)
===================================================================
@@ -67,6 +67,8 @@ if git status -unormal -s scintilla | grep '^??'; then
Untracked files above have been introduced by the new Scintilla version and
should be added to version control if appropriate, or removed.
+
+Don't forget to add new files to the build system.
EOF
fi
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).