Okay, instead of a marquee I've implemented a click-to-advance screen for critical updates. The mod is now completely usable
I hope :P
I hope :P
While this is a decent idea, it doesn't fulfill the purpose of this mod. The purpose is to make sure that users know that they have an out of date version and that it could be world-breaking. We made this because of the drama over @Reika's update checker, and thus tried to make it fulfill both the purposes he made his for and still be user-friendly. Another thing that we thought was important was extensibility. All the mods can generate their remote and local data however they want, we just collect it and display it to the user. That is why we chose not to go the database and user-maintained route. However, there will be a web app (which @trajing should be making at some points) to make it easier for modders to host their remote information.Disclaimer: I haven't read the entire thread, but as I have a full concept of a version checker which I either wanted to build or publish the concept on, well here it goes:
The Version checker consists of the mod it self, which can run on server and or client side, a database on the web and a web interface.
The process could look like this:
As imagined the database behind this is being generated and filled by the users of this mod. There is no need to parse any curse page, forum threads.. Everything is user maintained.
- collect mod information (unique mod id, md5sum, mod version)
- send the collected information to the web server
- web server will respond with information as follows (1. amount outdated mods, 2. versions behind overall, custom link to webpage)
- the customized web page has been generated using the data provided by the mod. This page contains:
- a list of all mods separated by
- up to date
- minor update
- major update
- a link to the download page (user created)
- a report button to report dead links + suggestion box for the new mod location
- possibility to comment (trajing: "Don't udpate to this version, it will break your.. wait for the next one, issue already fixed in dev..")
- report button of non available versions
On top, further stats about version usage can be generated.
As, a callback is never liked if hidden, I would suggest a start up dialog asking the user if he wants to receive update notices and agrees to the callback.
You might think that this system won't work as most users won't go out and look for new version. But I have seen this work quite well on other platforms. Let me know what you think.
ok, I see. I'm sure this could merged, but if you follow a totally different approachWhile this is a decent idea, it doesn't fulfill the purpose of this mod. The purpose is to make sure that users know that they have an out of date version and that it could be world-breaking. We made this because of the drama over @Reika's update checker, and thus tried to make it fulfill both the purposes he made his for and still be user-friendly. Another thing that we thought was important was extensibility. All the mods can generate their remote and local data however they want, we just collect it and display it to the user. That is why we chose not to go the database and user-maintained route. However, there will be a web app (which @trajing should be making at some points) to make it easier for modders to host their remote information.
Quick reconsidering question, how does that not comply with the way I described? From what I read it would even encourage users and mod devs more to flag versions as "please update" or whatever.The purpose is to make sure that users know that they have an out of date version and that it could be world-breaking.
The first two are done. However the last one is harder to implement. Technically it can already be done with the current setup if the modder only puts the recommended versionAs a user and or modpack author, what I mainly want is, to everything at one place, not needing to spend a lot of time finding the proper downloads (also consider the inexperience users that mainly come across outdated rehosting ) And most importantly, I don't wanna run into game breaking bugs which 1000 people before me already experienced, hence the version comments.
For multiple reasons.Quick reconsidering question, how does that not comply with the way I described? From what I read it would even encourage users and mod devs more to flag versions as "please update" or whatever.
I could add that functionality in .5 seconds...which can easily be fixed with a flag like stable: true or something along those lines.
I also haven't been thinking of adding more flags, any that yall would like to see?...which can easily be fixed with a flag like stable: true or something along those lines.
Yeah, I get it. Although I do have an idea...For my defense, I didn't know you were already working on it, not to think about it being nearly done
So I said this right? I just had a marvelous idea. So here is how it would go. You would build your system as a mod (which modders would opt into), then use the info from your system to make IUpdateables or FetchedUpdateables to display to the user with UpToDatebuilding it with mod ids and only collecting those doesn't allow the modder to choose their own method of data collection. Technically, your way is been already possible with the current mod because a modder could plug into our system with yours
Could ofc be included in the callback from the web server.Does not force users to be notified of which mods are out of date (due to link to be clicked)
This is related to the "comment" feature. Users warning other's about difficulties/bugs..You don't need to know which mods are up to date
doesn't need to be "only". I see a big barrier here and that is to get mod authors to support it. As you will never be able to make it a bare minimum standard, a user ruled system would dominate (especially if active/supportive mod authors can overrule them)only collecting those doesn't allow the modder to choose their own method of data collection
Yeah, but you didn't specify thatCould ofc be included in the callback from the web server.
Nice idea, but still possible with the current system, just need to add the "stable" flagThis is related to the "comment" feature. Users warning other's about difficulties/bugs..
That is the hardest thing here; however, I believe that a user ruled system doesn't help the critical issue at the center of this. Also, I believe that I may be able to get a few of the bigger modders on board, which then makes getting to "critical mass" where a lot of people start using it so more use it much easierdoesn't need to be "only". I see a big barrier here and that is to get mod authors to support it. As you will never be able to make it a bare minimum standard, a user ruled system would dominate (especially if active/supportive mod authors can overrule them)
This is also why I said that if you or someone else wanted to implement this system as an addon to UpToDate it would be completely possible and fairly cool.doesn't need to be "only"
*grumbles*
Technically it is already released, but that was sorta preliminary stuff, an alpha if you willThe mod is getting ready for an actual release. We fixed tons of minor bugs, did some optimization, added some null checks and opened the mod for deeper interaction. For example, SquidAPI can now parse the remote information with my formatting, and send it to UpToDate for informing the user. Earlier, I had to use UpToDate's YAML parser, which required me to maintain two remote files, one for my own update checker and one for UpToDate. Now I can use the same file for both