MiSTer-devel / MiSTerConfigurator

Tool for configuring MiSTer.ini, downloading cores and extras
GNU General Public License v3.0
7 stars 3 forks source link

StartIndex #1

Open edison658 opened 4 years ago

edison658 commented 4 years ago

Hi,

Recently I get a StartIndex error can not be less than zero. MiSTerConfigurator does not work anymore.

TIA

ozdemir-mehmet commented 4 years ago

This due to the Mister Wiki page changing and some of the divs this program is scraping having have changed. If you want a quick hack download the source and update

const String strMiSTerWikiURL = "https://github.com/MiSTer-devel/Main_MiSTer/wiki/";

TO: const String strMiSTerWikiURL = "https://web.archive.org/web/20191130101149/https://github.com/MiSTer-devel/Main_MiSTer/wiki";

in ConfigurationForm.cs

I'm working on fixing this, so far I have most stuff working other downloading the arcade cores. Since the Arcade cores have moved to another page it will require some refactoring.

ozdemir-mehmet commented 4 years ago

Kinda hackey but it works. I'll do a bit more testing and see if can clean up a bit.

image