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: nodegui/react-nodegui
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.13.0
Choose a base ref
...
head repository: nodegui/react-nodegui
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.14.0
Choose a head ref
  • 8 commits
  • 82 files changed
  • 5 contributors

Commits on Oct 14, 2021

  1. Fix Image.src on Windows when it is a local file (#363)

    `new URL("C:\path\filename.png")`
    is treated as a valid URL, which it is not. `phin` subsequently tries
    to fetch it, but `phin` and `centra` only supports http and https anyway.
    Therefore `isValidUrl` will check also the protocol.
    NinZine authored Oct 14, 2021
    Configuration menu
    Copy the full SHA
    0574712 View commit details
    Browse the repository at this point in the history
  2. Add List and ListItem using QListWidget and QListWidgetItem (#…

    …364)
    
    ```
    <List>
      <ListItem text="NodeGui is great" />
      <ListItem text="This item has a child">
        <View>
          <Text>Hello World</Text>
        </View>
      </ListItem>
    </List>
    ```
    NinZine authored Oct 14, 2021
    Configuration menu
    Copy the full SHA
    45ccc31 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2022

  1. Fix react conflicting peer dependency with react-reconciler (#365)

    Reverting back to `react@^16.x.x`. `react-reconciler` should be
    updated separately so that it can safely be used with `react@17.x.x`.
    
    When installing `react-nodegui` as a dependency. It will yield a
    warning:
    ```
    npm WARN ERESOLVE overriding peer dependency
    npm WARN While resolving: react-reconciler@0.25.1
    npm WARN Found: react@17.0.2
    npm WARN node_modules/react
    npm WARN   react@"^17.0.2" from the root project
    npm WARN   1 more (@nodegui/react-nodegui)
    npm WARN
    npm WARN Could not resolve dependency:
    npm WARN peer react@"^16.13.1" from react-reconciler@0.25.1
    npm WARN node_modules/react-reconciler
    npm WARN   react-reconciler@"^0.25.1" from @nodegui/react-nodegui@0.13.0
    npm WARN   node_modules/@nodegui/react-nodegui
    npm WARN
    npm WARN Conflicting peer dependency: react@16.14.0
    npm WARN node_modules/react
    npm WARN   peer react@"^16.13.1" from react-reconciler@0.25.1
    npm WARN   node_modules/react-reconciler
    npm WARN     react-reconciler@"^0.25.1" from @nodegui/react-nodegui@0.13.0
    npm WARN     node_modules/@nodegui/react-nodegui
    ```
    NinZine authored Jul 7, 2022
    Configuration menu
    Copy the full SHA
    730caa3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2e6ac23 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2022

  1. upgrade module to work with latest nodegui (0.57.1) (#376)

    * upgrade module to work with nodegui 0.57.1
    
    * fix external docs links
    
    * fix layout function calls in conditions
    
    * fix layout get/set on RNView
    
    * fix centralWidget check on RNWindow
    KaMeHb-UA authored Oct 4, 2022
    Configuration menu
    Copy the full SHA
    742540a View commit details
    Browse the repository at this point in the history
  2. add KaMeHb-UA as a contributor for code (#377)

    * update README.md [skip ci]
    
    * update .all-contributorsrc [skip ci]
    
    Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
    allcontributors[bot] authored Oct 4, 2022
    Configuration menu
    Copy the full SHA
    87391a3 View commit details
    Browse the repository at this point in the history
  3. 0.13.1

    a7ul committed Oct 4, 2022
    Configuration menu
    Copy the full SHA
    fbf720b View commit details
    Browse the repository at this point in the history
  4. 0.14.0

    a7ul committed Oct 4, 2022
    Configuration menu
    Copy the full SHA
    cc6bedc View commit details
    Browse the repository at this point in the history
Loading