Add a button that simply copies a text based list of mods in a pack so it can be shared easily. Would be useful for detailing the contents of custom profiles without having to share a full export of the pack.
for game or mod suggestions go to our discord
This board is being moderated, if you wish for your idea(s) to go public, please consider the following:
If your idea already exists, vote for it, this will increase the chances for the idea to become reality. Duplicate ideas only split and lower votes
This board is for new ideas and feature suggestions, for technical issues or bug reports, visit/contact CurseForge Support
This ensures that the idea is accessible to a wider audience and makes it easier for others to understand and vote for the idea
Any ideas posted with foul language will not be published and get deleted
Avoid posting 'lists' of different ideas, we won't be able to address them with a proper status and they will get less votes from others, each idea should have its own post
Posts with multiple ideas can not be merged and prevent us from opening these posts for upvotes
As it still seems to be for future consideration and I don't know if you've found a simplistic solution in the meantime, I'll leave a comment about what I do in this situation.
I use command prompt to generate the list. It's a simple one-liner that is very effective! Here's how to use it and what it does:
Go to the folder containing your mods.
Click on the address bar, replace the whole path with "cmd", press enter.
This opens a command prompt directly to that folder.
You can either create a text file from the list, or copy it directly to clipboard:
dir /b > list.txt
(creates a text file with all the files within the folder)
dir /b | clip
(does the same thing as above, but puts the output in your clipboard)
Here's what the command does:
dir /b
: Lists files and directories in bare format (without additional details like file size, date, etc.).> list.txt
: Creates a text file in your folder called "list", and places the output into this text file.| clip
: Pipes the output of thedir /b
command into the clipboard, so you can paste it wherever you need.