Skip to content

Commit a4369f1

Browse files
committed
Release 1.4.3
1 parent 2c5a532 commit a4369f1

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<artifactId>CodeGlance</artifactId>
44
<groupId>net.vektah</groupId>
55
<name>CodeGlance</name>
6-
<version>1.4.2</version>
6+
<version>1.4.3</version>
77
<packaging>jar</packaging>
88

99
<repositories>

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CodeGlance [![Build Status](https://travis-ci.org/Vektah/CodeGlance.png?branch=m
22
==========
33

44
Plugin Repository: http://plugins.jetbrains.com/plugin/7275
5-
Latest build: http://public.vektah.net/codeglance/net/vektah/CodeGlance/1.4.2/CodeGlance-1.4.2.jar
5+
Latest build: http://public.vektah.net/codeglance/net/vektah/CodeGlance/1.4.3/CodeGlance-1.4.3.jar
66

77
Intelij plugin that displays a zoomed out overview or minimap similar to the one found in Sublime into the editor pane. The minimap allows for quick scrolling letting you jump straight to sections of code.
88

src/main/java/net/vektah/codeglance/CodeGlancePlugin.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@
2626
package net.vektah.codeglance;
2727

2828
import com.intellij.openapi.components.ProjectComponent;
29+
import com.intellij.openapi.components.ServiceManager;
2930
import com.intellij.openapi.diagnostic.Logger;
3031
import com.intellij.openapi.fileEditor.FileEditorManagerListener;
3132
import com.intellij.openapi.project.Project;
33+
import net.vektah.codeglance.config.ConfigService;
3234
import net.vektah.codeglance.render.TaskRunner;
3335
import org.jetbrains.annotations.NotNull;
3436

@@ -48,6 +50,7 @@ public CodeGlancePlugin(Project project) {
4850
}
4951

5052
public void initComponent() {
53+
ServiceManager.getService(ConfigService.class).getState().disabled = false;
5154
runnerThread.start();
5255
project.getMessageBus().connect().subscribe(FileEditorManagerListener.FILE_EDITOR_MANAGER, injector);
5356
logger.debug("CodeGlance initialized");

src/main/resources/META-INF/plugin.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin url="https://github.com/Vektah/CodeGlance">
22
<id>net.vektah.codeglance</id>
33
<name>CodeGlance</name>
4-
<version>1.4.2</version>
4+
<version>1.4.3</version>
55
<vendor email="[email protected]" url="https://github.com/Vektah/CodeGlance">Vektah</vendor>
66

77
<description>
@@ -10,6 +10,12 @@
1010
</description>
1111

1212
<change-notes><![CDATA[
13+
<h3>1.4.3</h3>
14+
<ul>
15+
<li>Fixed a memory leak</li>
16+
<li>Reduced the total memory used to about half</li>
17+
<li>Lots of dead bugs.</li>
18+
</ul>
1319
<h3>1.4.2</h3>
1420
<ul>
1521
<li>Bugfix: Disable retina scaling. This should fix some of the current retina issues.</li>

0 commit comments

Comments
 (0)