We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cf8941 commit d5eb3fcCopy full SHA for d5eb3fc
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "wh3mm",
3
"productName": "wh3mm",
4
- "version": "1.25.1",
+ "version": "1.26.0",
5
"description": "WH3 Mod Manager",
6
"main": ".webpack/main",
7
"scripts": {
src/index.ts
@@ -337,6 +337,10 @@ const getAllMods = async (mainWindow: BrowserWindow) => {
337
})
338
.on("unlink", async (path) => {
339
onPackDeleted(path);
340
+ })
341
+ .on("change", async (path) => {
342
+ onPackDeleted(path);
343
+ onNewPackFound(path);
344
});
345
}
346
};
0 commit comments