Skip to content

Commit de01261

Browse files
committed
Change oxt name to LOTS #442
1 parent 81cf3ae commit de01261

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Diff for: Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ pipeline {
6363
}
6464
}
6565
} else {
66-
archiveArtifacts artifacts: 'oxt/target/WollMux.oxt'
66+
archiveArtifacts artifacts: 'oxt/target/LOTS.oxt'
6767
withMaven(
6868
maven: 'mvn',
6969
mavenLocalRepo: '.repo',

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ git clone https://github.com/LibreOffice/lots.git
5050
mvn clean package
5151
```
5252

53-
The compiled extension can be found at oxt/target/WollMux.oxt
53+
The compiled extension can be found at oxt/target/LOTS.oxt
5454

5555
### Build errors
5656
* **There are files with header to update**: Some of the source files don't have a license header. The header can be updated with:
@@ -61,13 +61,13 @@ mvn license:update-file-header
6161

6262
## Debugging
6363
### External Debugging with Eclipse
64-
WollMux.oxt extension is not installed in LibreOffice, but is loaded from external by starting a debug session in eclipse. There exist an additional extension **WollMux_ButtonsOnly.oxt**, which only contains the toolbars and dialogs. This extension must be installed in LibreOffice. Therefore call
64+
LOTS.oxt extension is not installed in LibreOffice, but is loaded from external by starting a debug session in eclipse. There exist an additional extension **LOTS_ButtonsOnly.oxt**, which only contains the toolbars and dialogs. This extension must be installed in LibreOffice. Therefore call
6565

6666
```
6767
mvn -P ButtonsOnly generate-sources
6868
```
6969

70-
and the extension is build and installed, if the program `unopkg` is availble. Otherwise you have to manually install the extension, which can be found at oxt/target/WollMux_ButtonsOnly.oxt.
70+
and the extension is build and installed, if the program `unopkg` is availble. Otherwise you have to manually install the extension, which can be found at oxt/target/LOTS_ButtonsOnly.oxt.
7171

7272
Activate the maven profile "development" in Project > Properties > Maven > Active Maven Profiles.
7373

Diff for: oxt/pom.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</properties>
1414

1515
<artifactId>wollmux-oxt</artifactId>
16-
<name>WollMux LibreOffice Extension</name>
16+
<name>LOTS Extension</name>
1717

1818
<build>
1919
<testResources>
@@ -108,7 +108,7 @@
108108
<goal>single</goal>
109109
</goals>
110110
<configuration>
111-
<finalName>WollMux</finalName>
111+
<finalName>LOTS</finalName>
112112
<appendAssemblyId>false</appendAssemblyId>
113113
<descriptors>
114114
<descriptor>assembly-oxt.xml</descriptor>
@@ -126,7 +126,7 @@
126126
<phase>prepare-package</phase>
127127
<configuration>
128128
<target>
129-
<copy file="${project.build.directory}/WollMux.zip" tofile="${project.build.directory}/WollMux.oxt" />
129+
<copy file="${project.build.directory}/LOTS.zip" tofile="${project.build.directory}/LOTS.oxt" />
130130
</target>
131131
</configuration>
132132
<goals>
@@ -165,7 +165,7 @@
165165
<echo level="info">unopkg add:</echo>
166166
<mkdir dir="${office.user.profile}" />
167167
<exec executable="${UNO_PATH}/unopkg" failifexecutionfails="false">
168-
<arg line="add -f -env:UserInstallation=file://${office.user.profile} ${project.build.directory}/WollMux.oxt" />
168+
<arg line="add -f -env:UserInstallation=file://${office.user.profile} ${project.build.directory}/LOTS.oxt" />
169169
</exec>
170170
<replaceregexp>
171171
<regexp pattern="&lt;vmParameters xsi:nil=&quot;true&quot;/&gt;" />
@@ -284,7 +284,7 @@
284284
<goal>single</goal>
285285
</goals>
286286
<configuration>
287-
<finalName>WollMux_ButtonsOnly</finalName>
287+
<finalName>LOTS_ButtonsOnly</finalName>
288288
<appendAssemblyId>false</appendAssemblyId>
289289
<descriptors>
290290
<descriptor>assembly-buttons-only.xml</descriptor>
@@ -305,10 +305,10 @@
305305
</goals>
306306
<configuration>
307307
<target>
308-
<move file="${project.build.directory}/WollMux_ButtonsOnly.zip" tofile="${project.build.directory}/WollMux_ButtonsOnly.oxt" />
308+
<move file="${project.build.directory}/LOTS_ButtonsOnly.zip" tofile="${project.build.directory}/LOTS_ButtonsOnly.oxt" />
309309
<echo level="info">unopkg add:</echo>
310310
<exec executable="${UNO_PATH}/unopkg" failifexecutionfails="false">
311-
<arg line="add -f ${project.build.directory}/WollMux_ButtonsOnly.oxt" />
311+
<arg line="add -f ${project.build.directory}/LOTS_ButtonsOnly.oxt" />
312312
</exec>
313313

314314
<tstamp>

0 commit comments

Comments
 (0)