Skip to content

Commit

Permalink
V1.0.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
amirdeljouyi committed Jan 16, 2021
1 parent 7972a17 commit 63de6ce
Show file tree
Hide file tree
Showing 45 changed files with 81 additions and 193 deletions.
26 changes: 22 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,33 @@ You can use the update site through the `Help->Install new software` menu in Ecl
[https://icelyframework.github.io/icely-activity-storming/updates/](https://icelyframework.github.io/icely-activity-storming/updates/)

### Using Standalone as Package
To use Icely Activity Storming as standlone package, JARs are available from Maven Central. to use Icely Activity Storming JAR from your `pom.xml`:
(In Progress)

To use Icely Activity Storming as standlone package, JARs are available from Github Packages.

Example using Maven:
```xml
<dependencies>
...
<dependency>
<groupId>com.github.icelyframework.activitystorming</groupId>
<artifactId>com.github.icelyframework.activitystorming</artifactId>
<version>1.0.1</version>
</dependency>
...
</dependencies>
```

Example using Gradle Groovy:
```groovy
dependencies {
implementation 'com.github.icelyframework.activitystorming:com.github.icelyframework.activitystorming:1.0.1'
}
```
## Development (In Progress)

## ☑ Roadmap
If you want to see a new feature feel free to create a new Issue. Here are some features which are either underway or planned:

- [ ] Deploy To Maven Central
- [x] Deploy To Github Packages

If you'd like to give any of these a shot feel free to contribute.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="com.github.icelyframework.activitystorming.feature"
label="Icely Activity Storming"
version="1.0.0"
version="1.0.1"
provider-name="Icely Framework Labs">

<description url="https://github.com/IcelyFramework/icely-activity-storming">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.icelyframework.activitystorming</groupId>
<artifactId>features</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</parent>

<artifactId>com.github.icelyframework.activitystorming.feature</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion features/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.icelyframework.activitystorming</groupId>
<artifactId>activitystorming.parent</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</parent>

<modules>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.github.icelyframework.activitystorming.diagram; singleton:=true
Bundle-Version: 1.0.0
Bundle-Version: 1.0.1
Bundle-ClassPath: .
Bundle-Activator: com.github.icelyframework.activitystorming.diagram.part.ActivitystormingDiagramEditorPlugin
Bundle-Vendor: %providerName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@

<extension point="org.eclipse.team.core.fileTypes" id="repo-ftype">
<?gmfgen generated="true"?>
<fileTypes type="text" extension="activitystorming_diagram"/>
<fileTypes type="text" extension="gctstorm"/>
</extension>

<extension point="org.eclipse.emf.ecore.extension_parser" id="resource-factory">
<?gmfgen generated="true"?>
<parser
type="activitystorming_diagram"
type="gctstorm"
class="org.eclipse.gmf.runtime.emf.core.resources.GMFResourceFactory">
</parser>
</extension>
Expand All @@ -24,7 +24,7 @@
id="com.github.icelyframework.activitystorming.diagram.part.ActivitystormingDiagramEditorID"
name="%editorName"
icon="icons/obj16/ActivitystormingDiagramFile.gif"
extensions="activitystorming_diagram"
extensions="gctstorm"
default="true"
class="com.github.icelyframework.activitystorming.diagram.part.ActivitystormingDiagramEditor"
matchingStrategy="com.github.icelyframework.activitystorming.diagram.part.ActivitystormingMatchingStrategy"
Expand Down Expand Up @@ -1151,7 +1151,7 @@
<or>
<and>
<instanceof value="org.eclipse.core.resources.IFile"/>
<test property="org.eclipse.core.resources.extension" value="activitystorming_diagram"/>
<test property="org.eclipse.core.resources.extension" value="gctstorm"/>
</and>
<instanceof value="com.github.icelyframework.activitystorming.diagram.navigator.ActivitystormingAbstractNavigatorItem"/>
<adapt type="org.eclipse.gmf.runtime.notation.View">
Expand All @@ -1174,7 +1174,7 @@
<or>
<and>
<instanceof value="org.eclipse.core.resources.IFile"/>
<test property="org.eclipse.core.resources.extension" value="activitystorming_diagram"/>
<test property="org.eclipse.core.resources.extension" value="gctstorm"/>
</and>
<instanceof value="com.github.icelyframework.activitystorming.diagram.navigator.ActivitystormingAbstractNavigatorItem"/>
</or>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<parent>
<groupId>com.github.icelyframework.activitystorming</groupId>
<artifactId>plugins</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</parent>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,7 @@ public void init(IWorkbench workbench, IStructuredSelection selection) {
* @generated
*/
public void addPages() {
diagramModelFilePage = new ActivitystormingCreationWizardPage("DiagramModelFile", getSelection(), //$NON-NLS-1$
"activitystorming_diagram"); //$NON-NLS-1$
diagramModelFilePage = new ActivitystormingCreationWizardPage("DiagramModelFile", getSelection(), "gctstorm"); //$NON-NLS-1$ //$NON-NLS-2$
diagramModelFilePage.setTitle(Messages.ActivitystormingCreationWizard_DiagramModelFilePageTitle);
diagramModelFilePage.setDescription(Messages.ActivitystormingCreationWizard_DiagramModelFilePageDescription);
addPage(diagramModelFilePage);
Expand All @@ -115,7 +114,7 @@ public void addPages() {
public void setVisible(boolean visible) {
if (visible) {
String fileName = diagramModelFilePage.getFileName();
fileName = fileName.substring(0, fileName.length() - ".activitystorming_diagram".length()); //$NON-NLS-1$
fileName = fileName.substring(0, fileName.length() - ".gctstorm".length()); //$NON-NLS-1$
setFileName(ActivitystormingDiagramEditorUtil.getUniqueFileName(getContainerFullPath(), fileName,
"activitystorming")); //$NON-NLS-1$
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ public ActivitystormingNewDiagramFileWizard(URI domainModelURI, EObject diagramR
throw new IllegalArgumentException("Unsupported URI: " + domainModelURI); //$NON-NLS-1$
}
myFileCreationPage.setContainerFullPath(filePath);
myFileCreationPage.setFileName(
ActivitystormingDiagramEditorUtil.getUniqueFileName(filePath, fileName, "activitystorming_diagram")); //$NON-NLS-1$
myFileCreationPage
.setFileName(ActivitystormingDiagramEditorUtil.getUniqueFileName(filePath, fileName, "gctstorm")); //$NON-NLS-1$

diagramRootElementSelectionPage = new DiagramRootElementSelectionPage(
Messages.ActivitystormingNewDiagramFileWizard_RootSelectionPageName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public boolean test(Object receiver, String method, Object[] args, Object expect
return false;
}
URIEditorInput editorInput = (URIEditorInput) receiver;
return "activitystorming_diagram".equals(editorInput.getURI().fileExtension()); //$NON-NLS-1$
return "gctstorm".equals(editorInput.getURI().fileExtension()); //$NON-NLS-1$
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,10 @@ public final boolean provides(IOperation operation) {
*/
protected boolean provides(CreateViewForKindOperation op) {
/*
if (op.getViewKind() == Node.class)
return getNodeViewClass(op.getSemanticAdapter(), op.getContainerView(), op.getSemanticHint()) != null;
if (op.getViewKind() == Edge.class)
return getEdgeViewClass(op.getSemanticAdapter(), op.getContainerView(), op.getSemanticHint()) != null;
if (op.getViewKind() == Node.class)
return getNodeViewClass(op.getSemanticAdapter(), op.getContainerView(), op.getSemanticHint()) != null;
if (op.getViewKind() == Edge.class)
return getEdgeViewClass(op.getSemanticAdapter(), op.getContainerView(), op.getSemanticHint()) != null;
*/
return true;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.github.icelyframework.activitystorming.edit;singleton:=true
Automatic-Module-Name: com.github.icelyframework.activitystorming.edit
Bundle-Version: 1.0.0
Bundle-Version: 1.0.1
Bundle-ClassPath: .
Bundle-Activator: com.github.icelyframework.activitystorming.provider.ActivitystormingEditPlugin$Implementation
Bundle-Vendor: %providerName
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#

pluginName = ActivityStorming Edit Support
providerName = https://github.com/IcelyFramework/icely-activitystorming
pluginName = Activitystorming Edit Support
providerName = www.example.org

_UI_CreateChild_text = {0}
_UI_CreateChild_text2 = {1} {0}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<parent>
<groupId>com.github.icelyframework.activitystorming</groupId>
<artifactId>plugins</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</parent>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.github.icelyframework.activitystorming.editor;singleton:=true
Automatic-Module-Name: com.github.icelyframework.activitystorming.editor
Bundle-Version: 1.0.0
Bundle-Version: 1.0.1
Bundle-ClassPath: .
Bundle-Activator: com.github.icelyframework.activitystorming.presentation.ActivitystormingEditorPlugin$Implementation
Bundle-Vendor: %providerName
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#

pluginName = ActivityStorming Editor
providerName = https://github.com/IcelyFramework/icely-activitystorming
pluginName = Activitystorming Editor
providerName = www.example.org

_UI_ActivitystormingEditor_menu = &Activitystorming Editor

Expand Down Expand Up @@ -36,7 +36,7 @@ _UI_ActivitystormingModelWizard_description = Create a new Activitystorming mode
_UI_ActivitystormingEditor_label = Activitystorming Model Editor

_UI_ActivitystormingEditorFilenameDefaultBase = My
_UI_ActivitystormingEditorFilenameExtensions = activitystorming
_UI_ActivitystormingEditorFilenameExtensions = actstorm

_UI_Wizard_label = New

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
id="com.github.icelyframework.activitystorming.presentation.ActivitystormingEditorID"
name="%_UI_ActivitystormingEditor_label"
icon="icons/full/obj16/ActivitystormingModelFile.gif"
extensions="activitystorming"
extensions="actstorm"
class="com.github.icelyframework.activitystorming.presentation.ActivitystormingEditor"
contributorClass="com.github.icelyframework.activitystorming.presentation.ActivitystormingActionBarContributor">
</editor>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<parent>
<groupId>com.github.icelyframework.activitystorming</groupId>
<artifactId>plugins</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</parent>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,8 @@ public ActivitystormingModelWizardInitialObjectCreationPage(String pageId) {
*/
@Override
public void createControl(Composite parent) {
Composite composite = new Composite(parent, SWT.NONE); {
Composite composite = new Composite(parent, SWT.NONE);
{
GridLayout layout = new GridLayout();
layout.numColumns = 1;
layout.verticalSpacing = 12;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.github.icelyframework.activitystorming.tests;singleton:=true
Automatic-Module-Name: com.github.icelyframework.activitystorming.tests
Bundle-Version: 1.0.0
Bundle-Version: 1.0.1
Bundle-ClassPath: .
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<parent>
<groupId>com.github.icelyframework.activitystorming</groupId>
<artifactId>plugins</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</parent>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static void main(String[] args) {
if (args.length == 0) {
System.out.println("Enter a list of file paths or URIs that have content like this:");
try {
Resource resource = resourceSet.createResource(URI.createURI("http:///My.activitystorming"));
Resource resource = resourceSet.createResource(URI.createURI("http:///My.actstorm"));
ActivityDiagram root = ActivitystormingFactory.eINSTANCE.createActivityDiagram();
resource.getContents().add(root);
resource.save(System.out, null);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.github.icelyframework.activitystorming;singleton:=true
Automatic-Module-Name: com.github.icelyframework.activitystorming
Bundle-Version: 1.0.0
Bundle-Version: 1.0.1
Bundle-ClassPath: .
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#

bin.includes = .,\
metamodel/,\
model/,\
META-INF/,\
plugin.xml,\
plugin.properties
Expand Down
Loading

0 comments on commit 63de6ce

Please sign in to comment.