Skip to content

Commit 7456493

Browse files
committed
[2.3] testing build 2.3.0.v20221015-2029
1 parent db36a6f commit 7456493

11 files changed

+33
-14
lines changed

site/updates/index.md

+20-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center"><a href="https://anb0s.github.io/EasyShell"><img src="https://raw.githubusercontent.com/anb0s/EasyShell/main/platform/logo/horizontalversion.svg" alt="EasyShell" height="100px"></a></p>
22

3-
[![Version](https://img.shields.io/github/release/anb0s/EasyShell.svg)](https://github.com/anb0s/EasyShell/releases) [![Issues](https://img.shields.io/github/issues/anb0s/EasyShell.svg)](https://github.com/anb0s/EasyShell/issues) [![Chat @ gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/anb0s/Lobby) [![build](https://github.com/anb0s/EasyShell/actions/workflows/maven.yml/badge.svg)](https://github.com/anb0s/EasyShell/actions/workflows/maven.yml) [![License](https://img.shields.io/badge/License-EPL%202.0-blue.svg)](https://www.eclipse.org/legal/epl-2.0)
3+
[![Version](https://img.shields.io/github/release/anb0s/EasyShell.svg)](https://github.com/anb0s/EasyShell/releases) [![Issues](https://img.shields.io/github/issues/anb0s/EasyShell.svg)](https://github.com/anb0s/EasyShell/issues) [![Chat @ gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/anb0s/Lobby) [![build](https://github.com/anb0s/EasyShell/actions/workflows/pull_request-or-main.yml/badge.svg)](https://github.com/anb0s/EasyShell/actions/workflows/pull_request-or-main.yml) [![License](https://img.shields.io/badge/License-EPL%202.0-blue.svg)](https://www.eclipse.org/legal/epl-2.0)
44

55
This Eclipse plugin allows to open a shell window or file manager from the popup menu in the navigation tree or editor view. Additionally it is possible to run selected file in the shell, copy file or directory path or run user defined external tools. Key shortcuts and multiple selections are also supported!
66

@@ -163,22 +163,35 @@ The following substitution variables are available for building the command:
163163
- ```${easyshell:resource_name}``` = name of file or directory
164164
- ```${easyshell:resource_basename}``` = name of file without extension
165165
- ```${easyshell:resource_extension}``` = extension of file name (without '.')
166-
- ```${easyshell:resource_path}``` = relative path to workspace of file or directory
166+
- ```${easyshell:resource_path}``` = relative path of file or directory (to workspace)
167+
- ```${easyshell:resource_loc_path}``` = relative location path of file or directory (to workspace)
168+
- ```${easyshell:resource_project_path}``` = relative path of file or directory (to project)
169+
- ```${easyshell:resource_project_loc_path}``` = relative location path of file or directory (to project)
167170
- ```${easyshell:resource_line_number}``` = line number (within view or editor)
168-
- ```${easyshell:selected_text_start_line}``` = selected text start line (within view or editor), it's equal to ${easyshell:resource_line_number}
171+
- ```${easyshell:selected_text_start_line}``` = selected text start line (within view or editor), it's equal to ```${easyshell:resource_line_number}```
169172
- ```${easyshell:selected_text_end_line}``` = selected text end line (within view or editor)
170173
- ```${easyshell:selected_text_length}``` = selected text length (within view or editor)
171174
- ```${easyshell:selected_text_offset}``` = selected text offset (within view or editor)
172175
- ```${easyshell:selected_text}``` = selected text (within view or editor)
173176
- ```${easyshell:container_loc}``` = absolute path of file directory or directory itself
174177
- ```${easyshell:container_name}``` = name of file directory or directory itself
175-
- ```${easyshell:container_path}``` = relative path to workspace of file directory or directory itself
176-
- ```${easyshell:parent_loc}``` = absolute path of parent directory, for files it's equal to ${easyshell:container_loc}
177-
- ```${easyshell:parent_name}``` = name of parent directory, for files it's equal to ${easyshell:container_name}
178-
- ```${easyshell:parent_path}``` = relative path to workspace of parent directory, for files it's equal to ${easyshell:container_path}
178+
- ```${easyshell:container_path}``` = relative path of file directory or directory itself (to workspace)
179+
- ```${easyshell:container_loc_path}``` = relative location path of file's parent directory or directory itself (to workspace)
180+
- ```${easyshell:container_project_path}``` = relative path of file's parent directory or directory itself (to project)
181+
- ```${easyshell:container_project_loc_path}``` = relative location path of file's parent directory or directory itself (to project)
182+
- ```${easyshell:parent_loc}``` = absolute path of parent directory, for files it's equal to ```${easyshell:container_loc}```
183+
- ```${easyshell:parent_name}``` = name of parent directory, for files it's equal to ```${easyshell:container_name}```
184+
- ```${easyshell:parent_path}``` = relative path to workspace of parent directory, for files it's equal to ```${easyshell:container_path}```
185+
- ```${easyshell:parent_loc_path}``` = relative location path of parent directory (to workspace); for files it's equal to ```${easyshell:container_loc_path}```
186+
- ```${easyshell:parent_project_path}``` = relative path of parent directory (to project); for files it's equal to ```${easyshell:container_project_path}```
187+
- ```${easyshell:parent_project_loc_path}``` = relative location path of parent directory (to project); for files it's equal to ```${easyshell:container_project_loc_path}```
179188
- ```${easyshell:project_loc}``` = absolute path of project
180189
- ```${easyshell:project_name}``` = name of project
181190
- ```${easyshell:project_path}``` = relative path to workspace of project
191+
- ```${easyshell:project_loc_name}``` = location name (folder) of project
192+
- ```${easyshell:project_parent_loc}``` = absolute path of project's parent
193+
- ```${easyshell:workspace_loc}``` = absolute path of workspace
194+
- ```${easyshell:workspace_loc_name}``` = location name (folder) of workspace
182195
- ```${easyshell:windows_drive}``` = drive letter of file or directory on Windows
183196
- ```${easyshell:qualified_name}``` = full qualified (class) name
184197
- ```${easyshell:line_separator}``` = line separator, e.g. '\\n' (Unix) or '\\r\\n' (Windows)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#Sat Oct 15 20:30:14 UTC 2022
2+
artifact.repository.factory.order=artifacts.xml.xz,artifacts.xml,\!
3+
version=1
4+
metadata.repository.factory.order=content.xml.xz,content.xml,\!

site/updates/testing/2.3/compositeArtifacts.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
<?compositeArtifactRepository version='1.0.0'?>
33
<repository name='EasyShell 2.3' type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1.0.0'>
44
<properties size='2'>
5-
<property name='p2.timestamp' value='1648487840465'/>
5+
<property name='p2.timestamp' value='1665865819805'/>
66
<property name='p2.atomic.composite.loading' value='true'/>
77
</properties>
8-
<children size='5'>
8+
<children size='6'>
99
<child location='2.3.0.v20220115-1548'/>
1010
<child location='2.3.0.v20220319-2249'/>
1111
<child location='2.3.0.v20220327-1248'/>
1212
<child location='2.3.0.v20220327-1630'/>
1313
<child location='2.3.0.v20220328-1717'/>
14+
<child location='2.3.0.v20221015-2029'/>
1415
</children>
1516
</repository>

site/updates/testing/2.3/compositeContent.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
<?compositeMetadataRepository version='1.0.0'?>
33
<repository name='EasyShell 2.3' type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository' version='1.0.0'>
44
<properties size='2'>
5-
<property name='p2.timestamp' value='1648487840471'/>
5+
<property name='p2.timestamp' value='1665865819815'/>
66
<property name='p2.atomic.composite.loading' value='true'/>
77
</properties>
8-
<children size='5'>
8+
<children size='6'>
99
<child location='2.3.0.v20220115-1548'/>
1010
<child location='2.3.0.v20220319-2249'/>
1111
<child location='2.3.0.v20220327-1248'/>
1212
<child location='2.3.0.v20220327-1630'/>
1313
<child location='2.3.0.v20220328-1717'/>
14+
<child location='2.3.0.v20221015-2029'/>
1415
</children>
1516
</repository>
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
build_version_major_minor=2.3
22
build_version_unqualified=2.3.0
3-
build_version_qualifier=v20220328-1717
4-
build_version_full=2.3.0.v20220328-1717
5-
build_version_path=2.3/2.3.0.v20220328-1717
3+
build_version_qualifier=v20221015-2029
4+
build_version_full=2.3.0.v20221015-2029
5+
build_version_path=2.3/2.3.0.v20221015-2029
66
build_version_milestone=8

0 commit comments

Comments
 (0)