Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Feature Request 💡
url: https://github.com/software-mansion-labs/react-native-rich-text-editor/discussions/new?category=ideas
url: https://github.com/software-mansion/react-native-enriched/discussions/new?category=ideas
about: If you have a feature request, please create a new discussion on GitHub.
- name: Discussions on GitHub 💬
url: https://github.com/software-mansion-labs/react-native-rich-text-editor/discussions
url: https://github.com/software-mansion/react-native-enriched/discussions
about: If this library works as promised but you need help, please ask questions there.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ The [example app](/example/) demonstrates usage of the library. You need to run

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.

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`.
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`.

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`.
To edit the Java or Kotlin files, open `example/android` in Android studio and find the source files at `react-native-enriched` under `Android`.

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

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

```sh
Running "ReactNativeRichTextEditorExample" with {"fabric":true,"initialProps":{"concurrentRoot":true},"rootTag":1}
Running "EnrichedTextInputExample" with {"fabric":true,"initialProps":{"concurrentRoot":true},"rootTag":1}
```

Note the `"fabric":true` and `"concurrentRoot":true` properties.
Expand Down
2 changes: 1 addition & 1 deletion ReactNativeEnriched.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Pod::Spec.new do |s|
s.authors = package["author"]

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

s.source_files = "ios/**/*.{h,m,mm,cpp}"
s.private_header_files = "ios/**/*.h"
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@
],
"repository": {
"type": "git",
"url": "git+https://github.com/software-mansion-labs/react-native-enriched.git"
"url": "git+https://github.com/software-mansion/react-native-enriched.git"
},
"author": "Software Mansion <contact@swmansion.com> (https://swmansion.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/software-mansion-labs/react-native-enriched/issues"
"url": "https://github.com/software-mansion/react-native-enriched/issues"
},
"homepage": "https://github.com/software-mansion-labs/react-native-enriched#readme",
"homepage": "https://github.com/software-mansion/react-native-enriched#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
Expand Down
Loading