CrimsonNynja / monster-hunter-DB

database for monster hunter
MIT License
39 stars 9 forks source link

Lowercase icon names #48

Closed Glazelf closed 1 year ago

Glazelf commented 1 year ago

Some icons have their names lowercased incorrectly. Namely (from what I could spot): Kestodon (male and female, Iceborne) Gajau (Iceborne) Teostra (Iceborne) Scalebat (Iceborne)

My git changes don't seem to recognize capitalization changes in filenames so I would make a very ugly fix probably with multiple commits to get around this, so I think it would be better if you fixed this yourself.

CrimsonNynja commented 1 year ago

@Glazelf I would imagine that you are using a mac if you are changing capitalisation and git not recognising the change.

You can force git to recognise this by renaming it using the git mv command

for example git mv ./folder/filename.f ./folder/Filename.f

This is a quirk of the MacOS where it ignores file capitalisation

Glazelf commented 1 year ago

I'm using Windows but I'll try that.