Skip to content

Commit 3b6c76f

Browse files
committed
v0.28.2
2 parents 926e9a1 + 1b82ff1 commit 3b6c76f

File tree

455 files changed

+6032
-4202
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

455 files changed

+6032
-4202
lines changed

CHANGES

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
List of user visible changes between 0.28.1 and 0.28.2 (20140512)
2+
3+
0ac33c7 convert all xtend files to utf-8
4+
5b92d33 gh181 - don't show crash report for execution backends
5+
a3fbc60 gh182 - console title shows if launch mode is "debug"
6+
c8ac625 add "goto matching bracket" command (Ctrl-Shift-P)
7+
94c2a77 add debug printouts for 1353
8+
6e8723b workaround for slow input in console
9+
94ac6d7 allow typespec with specified module
10+
a8ad6ea edoc: properly detect typespec before function
11+
e4c9526 add icons for macros, records
12+
1a145c3 1303 - autodetect source directories
13+
9ea8bab 1300 - builder traverses all source dirs looking for .app.src and modules
114

215
List of user visible changes between 0.28.0 and 0.28.1 (20140506)
316

Vagrantfile

Lines changed: 0 additions & 38 deletions
This file was deleted.

Vagrantfile.pkg

Lines changed: 0 additions & 16 deletions
This file was deleted.

bootstrap.sh

Lines changed: 0 additions & 37 deletions
This file was deleted.

org.erlide.backend/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: org.erlide.backend;singleton:=true
5-
Bundle-Version: 0.24.7.qualifier
5+
Bundle-Version: 0.24.8.qualifier
66
Bundle-ClassPath: .
77
Bundle-Vendor: %providerName
88
Bundle-Localization: plugin

org.erlide.backend/src/org/erlide/backend/EpmdWatchJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Periodically, query epmd to see if there are any new nodes that have been
2121
* registered.
22-
*
22+
*
2323
*/
2424
public class EpmdWatchJob extends Job {
2525

org.erlide.backend/src/org/erlide/backend/api/BackendException.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html
6-
*
6+
*
77
* Contributors:
88
* Eric Merritt
99
*******************************************************************************/
1010
package org.erlide.backend.api;
1111

1212
/**
1313
* Simple top level exception
14-
*
14+
*
1515
* $Revision$ $Date$
16-
*
16+
*
1717
* @author Eric Merritt
1818
*/
1919
public class BackendException extends Exception {
@@ -29,7 +29,7 @@ public BackendException() {
2929

3030
/**
3131
* Constructor with message
32-
*
32+
*
3333
* @param message
3434
* The message to pass up
3535
*/
@@ -39,7 +39,7 @@ public BackendException(final String message) {
3939

4040
/**
4141
* Constructor with message and cause
42-
*
42+
*
4343
* @param message
4444
* The message
4545
* @param cause
@@ -51,7 +51,7 @@ public BackendException(final String message, final Throwable cause) {
5151

5252
/**
5353
* Constructor with cause only
54-
*
54+
*
5555
* @param cause
5656
* The cause.
5757
*/

org.erlide.backend/src/org/erlide/backend/api/IBackend.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ public interface IBackend extends IShutdownCallback, IDisposable, IPluginCodeLoa
2626

2727
boolean isRunning();
2828

29+
boolean isDebugging();
30+
2931
IBackendShell getShell(String string);
3032

3133
void initialize(CodeContext context, Collection<ICodeBundle> collection);

org.erlide.backend/src/org/erlide/backend/api/IBackendListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at
66
* http://www.eclipse.org/legal/epl-v10.html
7-
*
7+
*
88
* Contributors:
99
* Vlad Dumitrescu
1010
*******************************************************************************/

org.erlide.backend/src/org/erlide/backend/console/BackendShell.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ private IoRequest addRequestFromTuple(final OtpErlangObject msg) {
143143
}
144144

145145
private void deleteOldItems() {
146-
// TODO use a configuration for this
147146
final int prevLength = length;
148147
synchronized (requests) {
149148
if (requests.size() > MAX_REQUESTS) {

0 commit comments

Comments
 (0)