diff --git a/README.md b/README.md index 67cfc1c..fe3a82b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# Mylyn Gitlab Connector +# Mylyn GitLab Connector -The Mylyn Gitlab Connector allows you to connect Mylyn to your self hosted Gitlab instance in order to manage your issues on Gitlab with your local Eclipse instance. +The Mylyn GitLab Connector allows you to connect Mylyn to your self hosted GitLab instance in order to manage your issues on Gitlab with your local Eclipse instance. ## Features @@ -17,15 +17,15 @@ The Mylyn Gitlab Connector allows you to connect Mylyn to your self hosted Gitla ## Missing features * Password prompt (I just don't know how...) -* Attachments. Downloading attachments should be possible, but is not implemented yet. Uploading attachments doesn't seem to be possible with the current Gitlab API. +* Attachments. Downloading attachments should be possible, but is not implemented yet. Uploading attachments doesn't seem to be possible with the current GitLab API. * Project member management and milestone management. I won't implement this... ## Usage 1. Install the plugin obviously (you can use the http://pweingardt.github.com/mylyn-gitlab update site) -2. Add a new Connector, using the new Gitlab Connector - 1. enter the project URL (something like http(s)://my-gitlab-instance.org/myname/myproject) +2. Add a new Connector, using the new GitLab Connector + 1. enter the project URL (something like `http(s)://my-gitlab-instance.org/myname/myproject`) 2. enter your usename and your password 3. **Do not forget to check the "Save Password" checkbox**. I don't know how to create a password prompt... 3. You can now create queries and issues @@ -46,6 +46,6 @@ Say you want to search for open bugs and features (issues that are either featur ## Known issues -* If you created a new milestone or added a new project member via the web interface, you have to update the repository configuration, so that the connector reloads the project members and milestones. Right click on the gitlab repository in the Task repositories view and click on "Update Repository Configuration". +* If you created a new milestone or added a new project member via the web interface, you have to update the repository configuration, so that the connector reloads the project members and milestones. Right click on the GitLab repository in the Task repositories view and click on "Update Repository Configuration". * Offline mode does not work. * Maven generally. This is my first project using Maven, so it might not work on a different machine diff --git a/de.weingardt.mylyn.gitlab.ui/src/de/weingardt/mylyn/gitlab/ui/Strings.java b/de.weingardt.mylyn.gitlab.ui/src/de/weingardt/mylyn/gitlab/ui/Strings.java index 64c6895..26cc01b 100644 --- a/de.weingardt.mylyn.gitlab.ui/src/de/weingardt/mylyn/gitlab/ui/Strings.java +++ b/de.weingardt.mylyn.gitlab.ui/src/de/weingardt/mylyn/gitlab/ui/Strings.java @@ -16,7 +16,7 @@ public class Strings { public final static String NEW_REPOSITORY = "New repository"; - public final static String SETTINGS_PAGE = "Enter the HTTPS-URL to your Gitlab repository"; + public final static String SETTINGS_PAGE = "Enter the HTTPS-URL to your GitLab repository"; public final static String QUERY_TITLE = "Query title: "; @@ -28,6 +28,6 @@ public class Strings { public final static String QUERY_MILESTONE = "Milestone: "; public final static String QUERY_STATE = "State: "; - public final static String GITLAB_ISSUE = "Gitlab issue"; + public final static String GITLAB_ISSUE = "GitLab issue"; }