Commit f59b00d211e0b533558e87f9951942558598ddf7

Authored by Elodie Bourrec
1 parent 2962b20d
Exists in master

Version 2.6.12

Correcting Load local catalog to read the 5th column and put /
bin/Osp_Editor_2.6.12.jar 0 → 100644
No preview for this file type
src/osp/ui/OSPE_AboutBoxPanel.java
... ... @@ -23,7 +23,7 @@ public class OSPE_AboutBoxPanel extends JDialog {
23 23 /** Product name */
24 24 private String product = "OSP Editor";
25 25 /** Current version */
26   - private String version = "version 2.6.11 - June 27th 2019";
  26 + private String version = "version 2.6.12 - June 27th 2019";
27 27 /** Copyright information */
28 28 private String copyright = "Copyright (c)";
29 29 /** Comments */
... ...
src/osp/ui/OSPE_LoadLocalObjectsCat.java
... ... @@ -104,7 +104,7 @@ public boolean loadLocalObjectsCat(File catFile)
104 104 while (lineBreaker.hasNext() && i<5)
105 105 {
106 106 tab[i] = lineBreaker.next();
107   - temp=temp+"\\t"+tab[i];
  107 + temp=temp+" / "+tab[i];
108 108 i++;
109 109 }
110 110  
... ...