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

Define PLATFORM and PLATFORM_NUMBER based on the minimum Android SDK Version. #1826

Closed
wants to merge 13 commits into from

Commits on Aug 6, 2024

  1. Configuration menu
    Copy the full SHA
    432f48d View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2024

  1. Configuration menu
    Copy the full SHA
    dae33c0 View commit details
    Browse the repository at this point in the history
  2. Avoid sending JobData back to the main thread.

    The main thread can easily look these up by ID, and in HTML5, sending the full `JobData` can cause errors.
    player-03 committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    bf4711a View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2024

  1. Fix typo.

    player-03 committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    0b83b7d View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

  1. Optimize ThreadPool slightly.

    `__activeThreads` and `__idleThreads` only need to be allocated for multi-threaded pools. Plus, there's no benefit to using a `List` here; we only add to and remove from the end.
    
    And finally, checking `event.job == null` instead of `isOfType()` is faster and avoids an issue in HTML5. Sadly it is less safe, so we might need to revisit it eventually.
    player-03 committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    8f631fe View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. Revert BackgroundWorker to its 8.1.3 version.

    It looks like we'll want to take `BackgroundWorker` in a different direction, so for the moment it's safest not to change anything about it. That way, there's only one historical version to maintain backwards compatibility with.
    player-03 committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    d0cef42 View commit details
    Browse the repository at this point in the history
  2. Revert to Future's behavior from 8.1.3.

    As with `BackgroundWorker`, we're postponing major changes to give us more time to consider.
    player-03 committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    52931a8 View commit details
    Browse the repository at this point in the history
  3. Remove external link.

    While I put a lot of effort into that guide, we're changing several things suddenly, and I don't have time to make sure it's up to date.
    player-03 committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    2866d09 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6873ae1 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2024

  1. Configuration menu
    Copy the full SHA
    cffc42a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1830 from player-03/old_thread_classes

    Restore old `Future` and `BackgroundWorker` behavior.
    player-03 authored Aug 16, 2024
    Configuration menu
    Copy the full SHA
    31700a0 View commit details
    Browse the repository at this point in the history
  3. Fix getContextsDevice on Hashlink

    ACrazyTown authored and joshtynjala committed Aug 16, 2024
    Configuration menu
    Copy the full SHA
    ed05aa2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9dfcf4d View commit details
    Browse the repository at this point in the history