-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/code-cleaning
- Loading branch information
Showing
19 changed files
with
1,219 additions
and
425 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
November 2014 | ||
* Added the "external directory" feature | ||
* Added find tag by name | ||
* Added ignored file patterns | ||
* Performance improvements in tag generation using updated Geany API | ||
* Automatic tag generation for projects with less than 500 files (configurable) | ||
* Follow active editor on by default | ||
* Treat empty "file patterns" in project properties as * (everything) | ||
* New toolbar icons | ||
* Fixed missing icons under Windows (thanks to Enrico) | ||
* Lots of minor iprovements, bugfixes (and probably new bug introductions) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,17 +23,14 @@ | |
#include <sys/time.h> | ||
#include <string.h> | ||
|
||
#ifdef HAVE_CONFIG_H | ||
#include "config.h" | ||
#endif | ||
#include <geanyplugin.h> | ||
|
||
#include "gproject-project.h" | ||
#include "gproject-sidebar.h" | ||
#include "gproject-menu.h" | ||
|
||
PLUGIN_VERSION_CHECK(221) | ||
PLUGIN_SET_INFO(_("GProject"), | ||
PLUGIN_VERSION_CHECK(214) | ||
PLUGIN_SET_INFO("GProject", | ||
_("Glob-pattern-based project management plugin for Geany."), | ||
VERSION, | ||
"Jiri Techet <[email protected]>") | ||
|
@@ -51,9 +48,8 @@ static void on_doc_open(G_GNUC_UNUSED GObject * obj, G_GNUC_UNUSED GeanyDocument | |
{ | ||
g_return_if_fail(doc != NULL && doc->file_name != NULL); | ||
|
||
/* tags of open files managed by geany*/ | ||
if (gprj_project_is_in_project(doc->file_name)) | ||
gprj_project_remove_file_tag(doc->file_name); | ||
gprj_project_remove_single_tm_file(doc->file_name); | ||
|
||
gprj_sidebar_update(FALSE); | ||
} | ||
|
@@ -77,7 +73,7 @@ static void on_doc_close(G_GNUC_UNUSED GObject * obj, GeanyDocument * doc, | |
/* tags of open files managed by geany - when the file gets closed, | ||
* we should take care of it */ | ||
if (gprj_project_is_in_project(doc->file_name)) | ||
gprj_project_add_file_tag(doc->file_name); | ||
gprj_project_add_single_tm_file(doc->file_name); | ||
|
||
gprj_sidebar_update(FALSE); | ||
} | ||
|
@@ -194,3 +190,9 @@ void plugin_cleanup(void) | |
gprj_menu_cleanup(); | ||
gprj_sidebar_cleanup(); | ||
} | ||
|
||
|
||
void plugin_help (void) | ||
{ | ||
utils_open_browser (DOCDIR "/" PLUGIN "/README"); | ||
} |
Oops, something went wrong.