Ignore:
Timestamp:
Jan 20, 2013, 12:28:12 PM (12 years ago)
Author:
alloc
Message:

AEI2 0.94:

  • Added context menu item to open Depot page of mod in table
  • Added last-change column to table
Location:
AE/installer2/src/net/oni2/aeinstaller/backend/mods
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • AE/installer2/src/net/oni2/aeinstaller/backend/mods/Mod.java

    r636 r637  
    88import java.io.IOException;
    99import java.io.InputStreamReader;
     10import java.net.URI;
     11import java.net.URISyntaxException;
    1012import java.util.HashSet;
    1113
     
    295297        }
    296298
     299        /**
     300         * @return Depot page URI
     301         */
     302        public URI getUrl() {
     303                if (node == null)
     304                        return null;
     305                if (node.getPath() == null)
     306                        return null;
     307                URI res = null;
     308                try {
     309                        res = new URI(node.getPath());
     310                } catch (URISyntaxException e) {
     311                        e.printStackTrace();
     312                }
     313                return res;
     314        }
     315
    297316        @Override
    298317        public String toString() {
  • AE/installer2/src/net/oni2/aeinstaller/backend/mods/ModManager.java

    r636 r637  
    129129                }
    130130
     131                updateInstalledMods();
     132        }
     133
     134        /**
     135         * Update the list of currently installed mods
     136         */
     137        public void updateInstalledMods() {
    131138                currentlyInstalled = Installer.getInstalledMods();
    132139                if (currentlyInstalled == null)
Note: See TracChangeset for help on using the changeset viewer.