Skip to content

Commit 1366db0

Browse files
committed
plugin: update repo metadata for new org
1 parent 17fe8f2 commit 1366db0

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11

22
# The Node.js for Mobile Apps React Native plugin
33

4-
## Reporting Issues
5-
6-
We have a [central repo](https://github.com/janeasystems/nodejs-mobile/issues) where we manage all the issues related to Node.js for Mobile Apps, including issues specific to this plugin. Please, report your issue [there](https://github.com/janeasystems/nodejs-mobile/issues).
7-
84
## Installation
95

106
`$ npm install nodejs-mobile-react-native --save`
@@ -67,7 +63,7 @@ Node modules can be added to the project using `npm install` inside `nodejs-asse
6763

6864
On Linux and macOS, there is support for building modules that contain native code.
6965

70-
The plugin automatically detects native modules inside your `nodejs-project` folder by searching for `.gyp` files. It's recommended to have the build prerequisites mentioned in `nodejs-mobile` for [Android](https://github.com/janeasystems/nodejs-mobile#prerequisites-to-build-the-android-library-on-linux-ubuntudebian) and [iOS](https://github.com/janeasystems/nodejs-mobile#prerequisites-to-build-the-ios-framework-library-on-macos). For Android it's also recommended that you set the `ANDROID_NDK_HOME` environment variable in your system.
66+
The plugin automatically detects native modules inside your `nodejs-project` folder by searching for `.gyp` files. It's recommended to have the build prerequisites mentioned in `nodejs-mobile` for [Android](https://github.com/nodejs-mobile/nodejs-mobile#prerequisites-to-build-the-android-library-on-linux-ubuntudebian) and [iOS](https://github.com/nodejs-mobile/nodejs-mobile#prerequisites-to-build-the-ios-framework-library-on-macos). For Android it's also recommended that you set the `ANDROID_NDK_HOME` environment variable in your system.
7167

7268
Building native modules for Android can take a long time, since it depends on building a standalone NDK toolchain for each required architecture. The resulting `.node` binaries are then included in the final application in a separate asset path for each architecture and the correct one will be chosen at runtime.
7369

@@ -200,7 +196,7 @@ The following methods can be called from the Node javascript code through the `r
200196

201197
> `rn_bridge.channel.send(...msg)` is equivalent to `rn_bridge.channel.post('message', ...msg)`. It is maintained for backward compatibility purposes.
202198
203-
> The `rn_bridge.channel` object inherits from [Node's `EventEmitter` class](https://github.com/janeasystems/nodejs-mobile/blob/9e90dd8c14fce5b047aa16d00e22a8ef44222a99/lib/events.js), with `emit` removed and `post` and `send` added.
199+
> The `rn_bridge.channel` object inherits from [Node's `EventEmitter` class](https://github.com/nodejs-mobile/nodejs-mobile/blob/9e90dd8c14fce5b047aa16d00e22a8ef44222a99/lib/events.js), with `emit` removed and `post` and `send` added.
204200
205201
### rn_bridge.channel.on(event, callback)
206202

@@ -334,4 +330,4 @@ module.exports = {
334330

335331
## Changelog
336332

337-
Releases are documented in [CHANGELOG.md](https://github.com/janeasystems/nodejs-mobile-react-native/blob/unstable/CHANGELOG.md)
333+
Releases are documented in [CHANGELOG.md](https://github.com/nodejs-mobile/nodejs-mobile-react-native/blob/unstable/CHANGELOG.md)

ios/RNNodeJsMobile.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
isa = PBXProject;
107107
attributes = {
108108
LastUpgradeCheck = 0830;
109-
ORGANIZATIONNAME = "Janea Systems";
109+
ORGANIZATIONNAME = "Node.js Mobile Contributors";
110110
TargetAttributes = {
111111
58B511DA1A9E6C8500147676 = {
112112
CreatedOnToolsVersion = 6.1.1;

nodejs-mobile-react-native.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Pod::Spec.new do |s|
77
s.version = package['version']
88
s.summary = package['description']
99
s.license = package['license']
10-
s.source = { :git => 'https://github.com/JaneaSystems/nodejs-mobile-react-native.git', :tag => 'v#{s.version}' }
10+
s.source = { :git => 'https://github.com/nodejs-mobile/nodejs-mobile-react-native.git', :tag => 'v#{s.version}' }
1111
s.authors = package['author']
1212
s.homepage = package['homepage']
1313
s.platform = :ios, '9.0'

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"homepage": "https://code.janeasystems.com/nodejs-mobile",
1919
"repository": {
2020
"type": "git",
21-
"url": "https://github.com/janeasystems/nodejs-mobile-react-native"
21+
"url": "https://github.com/nodejs-mobile/nodejs-mobile-react-native"
2222
},
2323
"bugs": {
24-
"url": "https://github.com/janeasystems/nodejs-mobile/issues"
24+
"url": "https://github.com/nodejs-mobile/nodejs-mobile/issues"
2525
},
2626
"peerDependencies": {
2727
"react-native": ">=0.60.0"

0 commit comments

Comments
 (0)