ESOUI

ESOUI (https://www.esoui.com/forums/index.php)
-   Minion (https://www.esoui.com/forums/forumdisplay.php?f=183)
-   -   Minion "this is what we use" suggestion (https://www.esoui.com/forums/showthread.php?t=9153)

MadDragon 05/21/20 04:11 PM

Minion "this is what we use" suggestion
 
Would it be possible to have Minion output an HTML or other formatted document with all the add-ons we use. For those of us who want to publish which addons we use. So name of addon, link to its website, etc. Pretty much what we see on the Minion addon page.

Minion could of course add a "managed by Minion" with a link to the software.

Instead of me having to labouriously type everything in manually...

Baertram 05/22/20 03:31 AM

Minion.xml already is there.
In your users folder -> .minion

But you shouldn't change it! Else your installed addondata might be corrupt.
So backup the file before opening it!

It contains the games you have installed/Added
e.g.
Code:

<game-config game-id="ESO" scannable="true"/>
The game-id is the unique idnetifier you need to search for in the line that looks like this to get the valid "game" where the addons are installed:

Code:

<game addon-path="QzpcVXNlcnNccHppZWdcRG9jdW1lbnRzXEVsZGVyIFNjcm9sbHMgT25saW5lXGxpdmVcQWRkT25z" auto-update="false" display-name="Elder Scrolls Online" game-id="ESO" unique-game-id="ESO-1">
<addons>

This line is the "headline" of the installed addons FOR the game with the id game-id shown in Minion.

The addons for that game are listed then following to the <addons> opening tag:
e.g.
Code:

<addon md5="e12b62b9c9a781078af64a19a1a7d51d" ui-version="2.1" uid="477">
<dirs>
<dir>AddonProfiles</dir>
</dirs>
</addon>

<addon md5="165aa56ee2ed332ab0ff56157c7f22b2" ui-version="0.5a" uid="1012">
<dirs>
<dir>AFK</dir>
</dirs>
</addon>

Means the addon Addonprofiles is instaleld with version 2.1
and AFK with version 0.5a

You could use this file, parse it via xml parsing tools and dump your needed data.

You can use these website to load the xml file:
https://countwordsfree.com/xmlviewer
https://codebeautify.org/xmlviewer
And then activate the "tree mode view" so you are able to see the addons more easily.

The 2nd link provides a download as CSV file.
You'll get a list with the addons like this in the csv:
Code:

dir,AddonProfiles
dir,AFK
dir,Alchemist
dir,DialogImportanceKbd
dir,FCONotes
dir,FixWeaponSwapEffects
dir,FoundryTacticalCombat
dir,GuildBankTwiddler
dir,KhrillCraftingPostit

So you could open the file via Excel or any other tool like Google Spreadsheet and copy&paste the entries to share themw ith your friends.
Only the version number is missing there in the same line.


All times are GMT -6. The time now is 04:54 PM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2014 - 2022 MMOUI