Skip to content

Commit

Permalink
Version 1.0 created
Browse files Browse the repository at this point in the history
  • Loading branch information
FredKruse committed Oct 9, 2024
1 parent 0976386 commit e53f45b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<dependency>
<groupId>org.languagetool</groupId>
<artifactId>languagetool-http-client</artifactId>
<version>${lt-revision}</version>
<version>RELEASE</version>
</dependency>
<dependency>
<groupId>org.openoffice</groupId>
Expand Down Expand Up @@ -170,8 +170,13 @@
</build>

<properties>
<!-- snapshot revision
<revision>1.0-SNAPSHOT</revision>
<lt-revision>6.5-SNAPSHOT</lt-revision>
-->
<!-- release revision -->
<revision>1.0</revision>
<lt-revision>6.5</lt-revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/writingtool/tools/WtOfficeTools.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public enum LoErrorType {
}

public static final String WT_NAME = "WritingTool";
public static final String WT_VERSION = "1.0-SNAPSHOT";
public static final String WT_VERSION = "1.0";
public static final String WT_BUILD_DATE = getClassBuildTime();

public static final String AI_GRAMMAR_CATEGORY = "AI_GRAMMAR_CATEGORY";
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/manifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<manifest:manifest xmlns:manifest="http://openoffice.org/2001/manifest">
<manifest:file-entry manifest:full-path="Addons.xcu"
manifest:media-type="application/vnd.sun.star.configuration-data" />
<manifest:file-entry manifest:full-path="writingtool-1.0-SNAPSHOT.jar"
<manifest:file-entry manifest:full-path="writingtool-1.0.jar"
manifest:media-type="application/vnd.sun.star.uno-component;type=Java" />
<manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-data"
manifest:full-path="Linguistic.xcu" />
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/README.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
WritingTool (a LibreOffice Extension based on LanguageTool)

Copyright (C) 2024 Fred Kruse (https://fk-es.de)
Copyright (C) 2024 Fred Kruse (https://writingtool.org)

See https://fk-es.de for more information
See https://writingtool.org for more information
2 changes: 1 addition & 1 deletion src/main/resources/description.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<description xmlns="http://openoffice.org/extensions/description/2006" xmlns:d="http://openoffice.org/extensions/description/2006" xmlns:xlink="http://www.w3.org/1999/xlink">
<version value="1.0-SNAPSHOT"/>
<version value="1.0"/>
<identifier value="org.openoffice.writingtool.oxt"/>
<dependencies>
<OpenOffice.org-minimal-version d:name="4.1" value="4.1"/>
Expand Down

0 comments on commit e53f45b

Please sign in to comment.