Branch: refs/heads/master
Author: Devyn Collier Johnson <DevynCJohnson(a)Gmail.com>
Committer: Matthew Brush <matt(a)geany.org>
Date: Sun, 20 Dec 2015 01:31:06 UTC
Commit: d1fcd9f2269b33c5f24bb8205b61b16cd4535e4f
https://github.com/geany/geany/commit/d1fcd9f2269b33c5f24bb8205b61b16cd4535…
Log Message:
-----------
Add *.asm51 and *.a51 extensions for 8051 assembly
The *.a51 extension is also used for Adobe Authorware files, but we are
unlikely to ever support those.
Closes #739
Modified Paths:
--------------
data/filetype_extensions.conf
Modified: data/filetype_extensions.conf
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -7,7 +7,7 @@ Abc=*.abc;*.abp;
ActionScript=*.as;
Ada=*.adb;*.ads;
Asciidoc=*.asciidoc;*.adoc;
-ASM=*.asm;
+ASM=*.asm;*.asm51;*.a51;
Batch=*.bat;*.cmd;*.nt;
CAML=*.ml;*.mli;
C=*.c;*.h;*.xpm;
--------------
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: Matthew Brush <matt(a)geany.org>
Date: Sun, 20 Dec 2015 01:08:01 UTC
Commit: 8d643d668880b074e91487ca27056b451f6c6c4c
https://github.com/geany/geany/commit/8d643d668880b074e91487ca27056b451f6c6…
Log Message:
-----------
Fix missing progress bar during build runs
Restore progress bar pulsation while a build is running, as it was lost
by accident in 690cb922be902f023881d455ae0c0a87d1c62170.
Closes #765.
Modified Paths:
--------------
src/build.c
Modified: src/build.c
3 lines changed, 2 insertions(+), 1 deletions(-)
===================================================================
@@ -1160,7 +1160,8 @@ static void build_command(GeanyDocument *doc, GeanyBuildGroup grp, guint cmd, gc
if (cmd_cat != NULL)
g_free(full_command);
build_menu_update(doc);
-
+ if (build_info.pid)
+ ui_progress_bar_start(NULL);
}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).