- 18 Agu, 2014 1 kayıt (commit)
-
-
Colomban Wendling yazdı
-
- 17 Agu, 2014 2 kayıt (commit)
-
-
Colomban Wendling yazdı
-
James Lownie yazdı
-
- 16 Agu, 2014 2 kayıt (commit)
-
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
Don't use the $LINGUAS at configure time to set ALL_LINGUAS, and let the translations Makefile properly honor the $LINGUAS itself, which it already does better than we do, cleanly ignoring translations it doesn't know. If we do set ALL_LINGUAS=$LINGUAS, it will result in a build failure if we do not have a translation for some of the language(s) specified in $LINGUAS, and would make it impossible to build other languages without re-configuring. So, just drop that part and let the build-time support kick in. Closes #507.
-
- 14 Agu, 2014 1 kayıt (commit)
-
-
Colomban Wendling yazdı
Patch partly from Yosef Or Boczko, thanks. Closes #959.
-
- 13 Agu, 2014 1 kayıt (commit)
-
-
Colomban Wendling yazdı
-
- 12 Agu, 2014 8 kayıt (commit)
-
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
Closes #1062.
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
`entries_modified` global is only used by on_name_entry_changed() and on_entries_changed(), both of which are only ever called from project_new() scope -- which already initializes this variable.
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
- 11 Agu, 2014 3 kayıt (commit)
-
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
Having add_input_widgets() didn't really make the code any simpler, rather obfuscating it a little.
-
Colomban Wendling yazdı
-
- 10 Agu, 2014 6 kayıt (commit)
-
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
Use gtk_dialog_run() to run the key input dialog, which is modal anyway. This avoids having to pass the label and the iter around for the dialog response callback to have them, as they now only are used directly in the function setting them in the first place.
-
Colomban Wendling yazdı
This however doesn't get rid of any of the global data itself, it only pack it in a struct and passes pointer to this struct around instead of accessing the global whenever possible.
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
- 09 Agu, 2014 4 kayıt (commit)
-
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
- 07 Agu, 2014 2 kayıt (commit)
-
-
Frank Lanitz yazdı
-
Colomban Wendling yazdı
Apparently the ::unrealize symbol is sent too late, after we destroyed the widget and freed the GeanyDocument, and some signals like ::focus-in-event can still be fired on the widget after that. So, properly use the ::destroy signal that is supposed to be fired when others should release references to that instance.
-
- 03 Agu, 2014 7 kayıt (commit)
-
-
Colomban Wendling yazdı
Properly skip parentheses around an rvalue, and then properly recognize the surrounded value. This allows to properly recognize e.g. rvalue `({...})` as an object, or `(function(){})` as a function. As the implementation is tolerant regarding garbage after the statement, function expressions called straight away (`(function(){})()`) are implicitly supported. This however removes support for the following invalid JavaScript syntax that was previously supported as a function/method declaration: var func = () {} This syntax is not present in the ECMA standard nor is supported by popular JavaScript engines. See: * http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf section 13, "Function Definition" * http://ecma262-5.com/ELS5_HTML.htm#Section_13 * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions_and_function_scope#Defining_functions
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Matthew Brush yazdı
Just cleaning up last commit.
-
Matthew Brush yazdı
Mostly gets rid of re-drawing issues, however is not great.
-
- 02 Agu, 2014 3 kayıt (commit)
-
-
Dominic Hopf yazdı
Fix typo in documentation
-
Philipp Wiesemann yazdı
-
Nick Treleaven yazdı
-