Skip to content

Commit

Permalink
feat: bumping version to 2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lart2150 committed Dec 17, 2023
1 parent e6128b7 commit 06613aa
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ jobs:
ant -noinput -buildfile build.xml
- uses: actions/upload-artifact@v3
with:
name: Package
path: release/kmttg.jar
if-no-files-found: error
20 changes: 0 additions & 20 deletions .project
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,6 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
<dictionary>
<key>LaunchConfigHandle</key>
<value>&lt;project&gt;/.externalToolBuilders/ant builder.launch</value>
</dictionary>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
<dictionary>
<key>LaunchConfigHandle</key>
<value>&lt;project&gt;/.externalToolBuilders/cp.launch</value>
</dictionary>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
Expand Down
12 changes: 10 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<project name="kmttg" basedir="." default="all">
<property name="rversion" value="v2.8-l-pre"/>
<property name="rversion" value="v2.8-l"/>
<tstamp/>
<property name="bversion" value="${DSTAMP}-${TSTAMP}"/>
<property name="lib" value="lib"/>
Expand Down Expand Up @@ -58,7 +58,15 @@
</jar>
</target>
<target name="build" depends="create">
<javac includeantruntime="false" debug="true" debuglevel="${debuglevel}" destdir="bin" source="${source}" target="${target}">
<javac
includeantruntime="false"
debug="true"
debuglevel="${debuglevel}"
destdir="bin"
source="${source}"
target="${target}"
>
<!-- to better test java 8 compatability bootclasspath="C:\Program Files\Eclipse Adoptium\jdk-8.0.362.9-hotspot\jre\lib\rt.jar" -->
<src path="src"/>
<classpath refid="main.classpath"/>
<compilerarg value="-Xlint:deprecation" />
Expand Down
2 changes: 1 addition & 1 deletion src/com/tivo/kmttg/main/config.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import com.tivo.kmttg.httpserver.kmttgServer;

public class config {
public static String kmttg = "kmttg v2.8-l-pre";
public static String kmttg = "kmttg v2.8-l";

// encoding related
public static String encProfDir = "";
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.7-l
v2.8-l

0 comments on commit 06613aa

Please sign in to comment.