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

Initial conversion to objc2 #30

Merged
merged 19 commits into from
Sep 11, 2023
Merged

Initial conversion to objc2 #30

merged 19 commits into from
Sep 11, 2023

Commits on Aug 1, 2023

  1. Use objc2

    madsmtm committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    f7aa824 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2023

  1. Replace objc_id

    madsmtm committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    2c246a1 View commit details
    Browse the repository at this point in the history
  2. Remove sel_impl import

    madsmtm committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    b4719f7 View commit details
    Browse the repository at this point in the history
  3. Fix add_method calls

    madsmtm committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    86d3eeb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    420b6bf View commit details
    Browse the repository at this point in the history
  5. Fix Encode impl

    madsmtm committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    f765f3d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c94e4cc View commit details
    Browse the repository at this point in the history
  7. Use immutable reference in a few places where now necessary

    See madsmtm/objc2#150 for a bit of background
    madsmtm committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    6aa8b8a View commit details
    Browse the repository at this point in the history
  8. Add a few Send + Sync bounds where examples require it

    This is something we'll need to look into properly
    madsmtm committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    bf787e0 View commit details
    Browse the repository at this point in the history
  9. Use &'static Class instead of *const Class

    Safer and more ergonomic. Also required for `msg_send_id!` macro
    madsmtm committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    c7f2194 View commit details
    Browse the repository at this point in the history
  10. Use msg_send_id! and rc::Id

    madsmtm committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    c1f01ef View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    320c2ee View commit details
    Browse the repository at this point in the history
  12. Replace BOOL with Bool when declaring delegates

    This makes cacao compile on Aarch64 again
    madsmtm committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    d7e9cfa View commit details
    Browse the repository at this point in the history
  13. Remove a few impossible to use correctly into_inner functions

    These consumed `self`, and hence also dropped `Id` variable that was responsible for keeping the returned pointer alive
    madsmtm committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    cc633da View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    ce86530 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    50fc368 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    db7b3d8 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    a34de5f View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    4c2e5d0 View commit details
    Browse the repository at this point in the history