Changeset 8849


Ignore:
Timestamp:
2004-12-17T15:52:02+13:00 (19 years ago)
Author:
mdewsnip
Message:

Ooops... forgot to update the CURRENT_CONFIGURATION_VERSION string when I changed the version in classes/xml/config.xml.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/Configuration.java

    r8686 r8849  
    7171    static public String GS3_CONFIG_XML = "config3.xml";
    7272
    73     static final private String CURRENT_CONFIGURATION_VERSION = "2.52a";
     73    static final private String CURRENT_CONFIGURATION_VERSION = "2.52b";
    7474    /** The name of the root element of the subtree containing gatherer configuration options. This is required as the document itself may contain several other subtrees of settings (such as in the case of a '.col' file). */
    7575    static final private String GATHERER_CONFIG = "GathererConfig";
     
    159159        String configuration_version = configuration_element.getAttribute(StaticStrings.VERSION_ATTRIBUTE);
    160160        if (!configuration_version.equals(CURRENT_CONFIGURATION_VERSION)) {
    161         // !!! JOptionPane.showMessageDialog(Gatherer.g_man, Dictionary.get("Configuration.Obsolete_Config"), Dictionary.get("Configuration.Obsolete_Config_Title"), JOptionPane.ERROR_MESSAGE);
     161        JOptionPane.showMessageDialog(Gatherer.g_man, Dictionary.get("Configuration.Obsolete_Config"), Dictionary.get("Configuration.Obsolete_Config_Title"), JOptionPane.ERROR_MESSAGE);
    162162        File backup = new File(config_xml_file.getAbsolutePath() + ".bak");
    163163        config_xml_file.renameTo(backup);
Note: See TracChangeset for help on using the changeset viewer.