Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: codingmaniac/GtkSharp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: develop
Choose a base ref
...
head repository: GtkSharp/GtkSharp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: develop
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jul 25, 2025

  1. Fixed native-sized int marshalling

    g_markup_escape_text:
    ```
    gchar*
    g_markup_escape_text (
      const gchar* text,
      gssize length
    )
    ```
    * gssize length: int -> IntPtr
    
    g_file_get_contents(_utf8):
    ```
    gboolean
    g_file_get_contents (
      const gchar* filename,
      gchar** contents,
      gsize* length,
      GError** error
    )
    ```
    * gsize length: int -> UIntPtr
    * lib GObject -> GLib
    * free memory of contents
    zii-dmg committed Jul 25, 2025
    Configuration menu
    Copy the full SHA
    17512f6 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2025

  1. Merge pull request GtkSharp#458 from zii-dmg/marshal-int-fix

    Fixed native-sized int marshalling
    lytico authored Aug 19, 2025
    Configuration menu
    Copy the full SHA
    c01f5f9 View commit details
    Browse the repository at this point in the history
Loading