Skip to content

Commit d0c5aaa

Browse files
committed
fix jfPasswords
1 parent 61820f9 commit d0c5aaa

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

projects/jfpasswords/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<property name="src" location="src"/>
77
<property name="build" location="classes"/>
88
<property name="classpath" location="javaforce.jar"/>
9-
<property name="version" value="0.16"/>
9+
<property name="version" value="0.17"/>
1010

1111
<import file="../../base.xml"/>
1212

@@ -45,7 +45,7 @@
4545

4646
<!-- sudo ant install -->
4747
<target name="install" description="install files">
48-
48+
4949
<copy file="${app}.jar" todir="/usr/share/java"/>
5050
<copy file="${app}.desktop" todir="/usr/share/applications"/>
5151
<copy file="${app}.png" todir="/usr/share/icons/hicolor/48x48/apps"/>

projects/jfpasswords/src/PasswordsApp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
public class PasswordsApp extends javax.swing.JFrame implements ActionListener {
1313

14-
private String version = "0.16";
14+
private String version = "0.17";
1515

1616
/**
1717
* Creates new form PasswordsApp

projects/jfpasswords/wix32.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3-
<Product Id="*" UpgradeCode="{2DE2BA57-E4DA-4F80-BF66-4A9E55476F42}" Version="0.16" Language="1033" Name="jfPasswords" Manufacturer="Peter Quiring">
3+
<Product Id="*" UpgradeCode="{2DE2BA57-E4DA-4F80-BF66-4A9E55476F42}" Version="0.17" Language="1033" Name="jfPasswords" Manufacturer="Peter Quiring">
44
<Package InstallerVersion="300" Compressed="yes" InstallScope="perMachine"/>
55
<Media Id="1" Cabinet="files.cab" EmbedCab="yes" />
66
<UIRef Id="WixUI_Minimal" />

projects/jfpasswords/wix64.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3-
<Product Id="*" UpgradeCode="{2DE2BA57-E4DA-4F80-BF66-4A9E55476F42}" Version="0.16" Language="1033" Name="jfPasswords" Manufacturer="Peter Quiring">
3+
<Product Id="*" UpgradeCode="{2DE2BA57-E4DA-4F80-BF66-4A9E55476F42}" Version="0.17" Language="1033" Name="jfPasswords" Manufacturer="Peter Quiring">
44
<Package InstallerVersion="300" Compressed="yes" InstallScope="perMachine" Platform="x64"/>
55
<Media Id="1" Cabinet="files.cab" EmbedCab="yes" />
66
<UIRef Id="WixUI_Minimal" />

src/javaforce/XML.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ private XMLTagPart readtag() {
275275
quote2 = !quote2;
276276
}
277277
if (ch == '\'' && !quote2) {
278-
quote1 = !quote1;
278+
// quote1 = !quote1;
279279
}
280280
if (!quote1 && !quote2) {
281281
if (ch == '/') {
@@ -312,7 +312,7 @@ private XMLTagPart readtag() {
312312
quote2 = !quote2;
313313
}
314314
if (ch == '\'' && !quote2) {
315-
quote1 = !quote1;
315+
// quote1 = !quote1;
316316
}
317317
tag.content += ch;
318318
continue;

0 commit comments

Comments
 (0)