From da8ec5d4277ff614bd862df5669e38bc4c63aa29 Mon Sep 17 00:00:00 2001 From: Atul R Date: Sun, 11 Aug 2019 22:39:27 +0200 Subject: [PATCH] Update links to new nodegui org --- .github/FUNDING.yml | 2 +- README.md | 12 ++++++------ docs/README.md | 2 +- docs/api/QtEnums.md | 2 +- docs/development/setting-up.md | 2 +- docs/react/README.md | 2 +- docs/react/about.md | 2 +- docs/tutorial/application-architecture.md | 2 +- examples/calculator/README.md | 7 +++---- extras/legal/logo/thanks.md | 4 ++-- 10 files changed, 18 insertions(+), 19 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 41d7b0873..6fc205f6a 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,6 +1,6 @@ # These are supported funding model platforms -github: [master-atul] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +# github: [master-atul] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] patreon: # Replace with a single Patreon username open_collective: # Replace with a single Open Collective username ko_fi: atul94 # Replace with a single Ko-fi username diff --git a/README.md b/README.md index d9e3f22ec..12276b735 100644 --- a/README.md +++ b/README.md @@ -2,19 +2,19 @@ A cross platform library to build native desktop apps. Based on Qt5. -logo +logo ## How does it look?
-demo_linux -demo_win -demo_mac +demo_linux +demo_win +demo_mac
**More screenshots?** -[See examples](https://github.com/master-atul/nodegui/tree/master/examples/) +[See examples](https://github.com/nodegui/nodegui/tree/master/examples/) ## Features @@ -41,7 +41,7 @@ Looking to contribute? If you wish to implement a new widget/add more features a Contributing developer docs link: -https://github.com/master-atul/nodegui/tree/master/docs/development +https://github.com/nodegui/nodegui/tree/master/docs/development ## Building diff --git a/docs/README.md b/docs/README.md index c99d5b6cb..314456c1e 100644 --- a/docs/README.md +++ b/docs/README.md @@ -6,7 +6,7 @@ - [About NodeGui](tutorial/about.md) - [React Desktop](react/README.md) -- [Examples](https://github.com/master-atul/nodegui/tree/master/examples) +- [Examples](https://github.com/nodegui/nodegui/tree/master/examples) - [FAQ](faq.md) - [Setting up the Development Environment](tutorial/development-environment.md) - [Setting up macOS](tutorial/development-environment.md#setting-up-macos) diff --git a/docs/api/QtEnums.md b/docs/api/QtEnums.md index 8d676b225..1ee590203 100644 --- a/docs/api/QtEnums.md +++ b/docs/api/QtEnums.md @@ -2,7 +2,7 @@ For a complete list of Enums that we can use from Javascript see file -Qt enums: [`src/lib/QtEnums/index.ts`](https://github.com/master-atul/nodegui/blob/master/src/lib/QtEnums/index.ts) in the NodeGui repo. +Qt enums: [`src/lib/QtEnums/index.ts`](https://github.com/nodegui/nodegui/blob/master/src/lib/QtEnums/index.ts) in the NodeGui repo. All the enums in this file can be imported directly from `@nodegui/@nodegui`. diff --git a/docs/development/setting-up.md b/docs/development/setting-up.md index 109337c74..215df87e5 100644 --- a/docs/development/setting-up.md +++ b/docs/development/setting-up.md @@ -48,4 +48,4 @@ If you want to run with your own version of Qt make sure to pass qt_home_dir var `yarn rebuild:addon [--qt_home_dir=/path/to/qt]` -[qode_setup]: https://github.com/master-atul/qode +[qode_setup]: https://github.com/nodegui/qode diff --git a/docs/react/README.md b/docs/react/README.md index 0d2aeb316..4259a8eac 100644 --- a/docs/react/README.md +++ b/docs/react/README.md @@ -1,7 +1,7 @@ # React Desktop - [About React Desktop](react/about.md) -- [Examples](https://github.com/master-atul/react-desktop/tree/master/examples) +- [Examples](https://github.com/nodegui/react-desktop/tree/master/examples) - [Setting up the Development Environment](tutorial/development-environment.md) - [Creating your First App](react/first-app.md) - [Hello World](react/first-app.md#Hello-World) diff --git a/docs/react/about.md b/docs/react/about.md index cf414d152..116ce2d71 100644 --- a/docs/react/about.md +++ b/docs/react/about.md @@ -1,6 +1,6 @@ # About React Desktop -[React Desktop](https://github.com/master-atul/react-desktop) is an open source library for building cross-platform desktop applications with React and CSS like styling. React Desktop is a custom react renderer for [NodeGui](https://github.com/master-atul/nodegui). React Desktop combines the power and flexibility of React with ease of NodeJs and maturity of Qt5. With React desktop you can build native desktop applications which are underneath Qt applications. This means you could in theory use all of Qt's Gui APIs in Javascript. +[React Desktop](https://github.com/nodegui/react-desktop) is an open source library for building cross-platform desktop applications with React and CSS like styling. React Desktop is a custom react renderer for [NodeGui](https://github.com/nodegui/nodegui). React Desktop combines the power and flexibility of React with ease of NodeJs and maturity of Qt5. With React desktop you can build native desktop applications which are underneath Qt applications. This means you could in theory use all of Qt's Gui APIs in Javascript. As React Native was an improvement over Cordova based applications in Mobile app development with web technologies, React Desktop aims to achieve the same with respect to Electron and other chromium based cross platform Gui solutions. React Desktop wants to incorporate everything that is good about Electron: The ease of development, freedom of styling, Native APIs, great documentation, etc. At the same time it aims to be memory and CPU efficient. diff --git a/docs/tutorial/application-architecture.md b/docs/tutorial/application-architecture.md index 4b03f4547..909179de8 100644 --- a/docs/tutorial/application-architecture.md +++ b/docs/tutorial/application-architecture.md @@ -34,7 +34,7 @@ So inorder to make both NodeJs and Qt work together we need to find a way to mer Qode is a lightly modified fork of Node.js that merges Node's event loop with Qt's event loop. The idea of merging event loops is inspired by Electron and [other](https://github.com/yue) Gui libraries developed by [zcbenz (Cheng Zhao)](https://github.com/zcbenz). It has been detailed in a post here: [Electron internals](https://electronjs.org/blog/electron-internals-node-integration). Hence, we reused the logic from electron to achieve smooth integration between Qt and NodeJs. The idea is to release a corresponding Qode binary for every NodeJs version that comes out after Node v12.6. -The source code of Qode can be found [here](https://github.com/master-atul/qode). +The source code of Qode can be found [here](https://github.com/nodegui/qode). _\*PS: Qode is a fork of [Yode](https://github.com/yue/yode)_ diff --git a/examples/calculator/README.md b/examples/calculator/README.md index 3405d2263..448523708 100644 --- a/examples/calculator/README.md +++ b/examples/calculator/README.md @@ -6,16 +6,15 @@ This example showcases how to build a basic calculator clone. **Linux** -demo_linux +demo_linux **Windows** -demo_win +demo_win **Mac:** -demo_mac - +demo_mac To run the demo: diff --git a/extras/legal/logo/thanks.md b/extras/legal/logo/thanks.md index 1c902006c..dd7ccacf7 100644 --- a/extras/legal/logo/thanks.md +++ b/extras/legal/logo/thanks.md @@ -1,13 +1,13 @@ # Logo -logo +logo Special thanks to the Noun Project for the logo. The logo used for NodeGui project is a modified version of art: + ``` Siberian Husky by Vishwas Shetty from the Noun Project. ``` The original can be found here: https://thenounproject.com/term/husky/214148/ -