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: plusxp/react-nodegui
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
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: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 18 commits
  • 92 files changed
  • 7 contributors

Commits on Mar 26, 2021

  1. Dialog & all its inherited widget added (nodegui#344)

    * Dialog component created & RNView, RNBoxView was tweaked for Dialog
    
    * Added Components:
    - FileDialog
    - InputDialog
    - ProgressDialog
    Edited:
    - demo file for testing the dialogs
    
    * Added Compoents:
    - ColorDialog
    - FontDialog
    Edited:
    - Dialog (for adding some props)
    
    * updated ProgressBar Example
    
    * newly created components were exported
    KRTirtho authored Mar 26, 2021
    Configuration menu
    Copy the full SHA
    fbd6a53 View commit details
    Browse the repository at this point in the history
  2. docs: add KRTirtho as a contributor (nodegui#345)

    * docs: update README.md [skip ci]
    
    * docs: update .all-contributorsrc [skip ci]
    
    Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
    allcontributors[bot] authored Mar 26, 2021
    Configuration menu
    Copy the full SHA
    aa15c9a View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2021

  1. 0.11.0

    a7ul committed Mar 28, 2021
    Configuration menu
    Copy the full SHA
    0515fdb View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2021

  1. Added Table, TableItem & ErrorPrompt (nodegui#347)

    * Dialog component created & RNView, RNBoxView was tweaked for Dialog
    
    * Added Components:
    - FileDialog
    - InputDialog
    - ProgressDialog
    Edited:
    - demo file for testing the dialogs
    
    * Added Compoents:
    - ColorDialog
    - FontDialog
    Edited:
    - Dialog (for adding some props)
    
    * updated ProgressBar Example
    
    * newly created components were exported
    
    * New Components:
    - Table
    - TableItem
    Modified:
    - demo.tsx
    
    !info: Table & TableItem works initially. But some of the functionality need imperative/useRef approach
    
    * finalized Table & TableItem
    
    * Added ErrorPrompt widget & warnings in Table widget
    
    * exported newly created ErrorPrompt & reverted demo to as it was
    
    * Fixed error prompt message not changing dynamically
    KRTirtho authored Apr 6, 2021
    Configuration menu
    Copy the full SHA
    f0feda0 View commit details
    Browse the repository at this point in the history
  2. 0.12.0

    a7ul committed Apr 6, 2021
    Configuration menu
    Copy the full SHA
    8ea6be4 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2021

  1. Configuration menu
    Copy the full SHA
    b478312 View commit details
    Browse the repository at this point in the history
  2. docs: add theLMGN as a contributor for code (nodegui#357)

    * docs: update README.md [skip ci]
    
    * docs: update .all-contributorsrc [skip ci]
    
    Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
    allcontributors[bot] authored Aug 16, 2021
    Configuration menu
    Copy the full SHA
    3fddc1a View commit details
    Browse the repository at this point in the history
  3. bump deps

    a7ul committed Aug 16, 2021
    Configuration menu
    Copy the full SHA
    a841ce4 View commit details
    Browse the repository at this point in the history
  4. 0.13.0

    a7ul committed Aug 16, 2021
    Configuration menu
    Copy the full SHA
    45626c4 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2021

  1. Fix Image.src on Windows when it is a local file (nodegui#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 (n…

    …odegui#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 (node…

    …gui#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) (nodegui#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 (nodegui#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

Commits on Nov 3, 2023

  1. Update README.md

    a7ul authored Nov 3, 2023
    Configuration menu
    Copy the full SHA
    87c8440 View commit details
    Browse the repository at this point in the history
Loading