Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LÖVE 11 fixes #589

Merged
merged 21 commits into from
Aug 9, 2024
Merged

LÖVE 11 fixes #589

merged 21 commits into from
Aug 9, 2024

Conversation

qixils
Copy link
Collaborator

@qixils qixils commented Nov 6, 2023

  • Check for remaining conversions from isDirectory and fix them
  • Disable letterboxing by default
  • Fix Android scaling issue
  • Fix color-sensitive slope tileset issues
  • Fix color-sensitive debris tileset issues
  • Update game icon to use modern mario palette
  • Fix Luigi hat colors?? CNR
  • Unchangeable character colors still?? CNR
  • Also loading with incorrect colors. Affects highly custom characters like Kirby.
  • Text color copying wrong colors
  • pairs issues
  • Audio quality regression? [Windows] Audio quality regression on LÖVE 11.3+ love2d/love#2091
  • Dialog text defaults to black instead of white

    After looking at the code in dialogbox.lua (and testing the code snippet to make sure), it re-normalizes the default white color, which is already manually normalized

Closes #595
Closes #611
Closes #612
Closes #617
Closes #618
Closes #619
Closes #621
Closes #622
Probably closes #606

@qixils
Copy link
Collaborator Author

qixils commented Dec 13, 2023

Not updating to 11.5 atm due to love2d/love-android#258 as well as likely slow updates to makelove

@alesan99 alesan99 added the new feature New feature or request label May 7, 2024
@qixils qixils marked this pull request as ready for review August 8, 2024 22:49
may be necessary in the future but lua already reliably uses ipairs order for array-like tables, and some objects tables actually aren't array-like so the change may not always be safe. the only safe ipairs-based solution would be to iterate over the entire ipairs, then check if its size was equal to the table size, and if not return pairs. but that's dumb and again, not necessary currently, though may become necessary should lua's promise that the pairs sort order is undetermined ever become true for arrays
@alesan99 alesan99 merged commit 23e4403 into alesan99:master Aug 9, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment