Skip to content

Commit 0c8cc89

Browse files
authored
chore: update links to the repository (#182)
This PR adjusts the links to the repository after moving it to `software-mansion` organization on GitHub as well as updates the example app name where it was previously omitted.
1 parent 8d4de9c commit 0c8cc89

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Feature Request 💡
4-
url: https://github.com/software-mansion-labs/react-native-rich-text-editor/discussions/new?category=ideas
4+
url: https://github.com/software-mansion/react-native-enriched/discussions/new?category=ideas
55
about: If you have a feature request, please create a new discussion on GitHub.
66
- name: Discussions on GitHub 💬
7-
url: https://github.com/software-mansion-labs/react-native-rich-text-editor/discussions
7+
url: https://github.com/software-mansion/react-native-enriched/discussions
88
about: If this library works as promised but you need help, please ask questions there.

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ The [example app](/example/) demonstrates usage of the library. You need to run
2323

2424
It is configured to use the local version of the library, so any changes you make to the library's source code will be reflected in the example app. Changes to the library's JavaScript code will be reflected in the example app without a rebuild, but native code changes will require a rebuild of the example app.
2525

26-
If you want to use Android Studio or XCode to edit the native code, you can open the `example/android` or `example/ios` directories respectively in those editors. To edit the Objective-C or Swift files, open `example/ios/ReactNativeRichTextEditorExample.xcworkspace` in XCode and find the source files at `Pods > Development Pods > @swmansion/react-native-rich-text-editor`.
26+
If you want to use Android Studio or Xcode to edit the native code, you can open the `example/android` or `example/ios` directories respectively in those editors. To edit the Objective-C or Swift files, open `example/ios/EnrichedTextInputExample.xcworkspace` in Xcode and find the source files at `Pods > Development Pods > ReactNativeEnriched`.
2727

28-
To edit the Java or Kotlin files, open `example/android` in Android studio and find the source files at `swmansion-react-native-rich-text-editor` under `Android`.
28+
To edit the Java or Kotlin files, open `example/android` in Android studio and find the source files at `react-native-enriched` under `Android`.
2929

3030
You can use various commands from the root directory to work with the project.
3131

@@ -50,7 +50,7 @@ yarn example ios
5050
To confirm that the app is running with the new architecture, you can check the Metro logs for a message like this:
5151

5252
```sh
53-
Running "ReactNativeRichTextEditorExample" with {"fabric":true,"initialProps":{"concurrentRoot":true},"rootTag":1}
53+
Running "EnrichedTextInputExample" with {"fabric":true,"initialProps":{"concurrentRoot":true},"rootTag":1}
5454
```
5555

5656
Note the `"fabric":true` and `"concurrentRoot":true` properties.

ReactNativeEnriched.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
1111
s.authors = package["author"]
1212

1313
s.platforms = { :ios => min_ios_version_supported }
14-
s.source = { :git => "https://github.com/software-mansion-labs/react-native-rich-text-editor.git", :tag => "#{s.version}" }
14+
s.source = { :git => "https://github.com/software-mansion/react-native-enriched.git", :tag => "#{s.version}" }
1515

1616
s.source_files = "ios/**/*.{h,m,mm,cpp}"
1717
s.private_header_files = "ios/**/*.h"

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@
4848
],
4949
"repository": {
5050
"type": "git",
51-
"url": "git+https://github.com/software-mansion-labs/react-native-enriched.git"
51+
"url": "git+https://github.com/software-mansion/react-native-enriched.git"
5252
},
5353
"author": "Software Mansion <contact@swmansion.com> (https://swmansion.com)",
5454
"license": "MIT",
5555
"bugs": {
56-
"url": "https://github.com/software-mansion-labs/react-native-enriched/issues"
56+
"url": "https://github.com/software-mansion/react-native-enriched/issues"
5757
},
58-
"homepage": "https://github.com/software-mansion-labs/react-native-enriched#readme",
58+
"homepage": "https://github.com/software-mansion/react-native-enriched#readme",
5959
"publishConfig": {
6060
"registry": "https://registry.npmjs.org/"
6161
},

0 commit comments

Comments
 (0)