diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 570c88537..8b24fec68 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -90,7 +90,7 @@ Releases are published from `main` with npm Trusted Publishing. ## Reporting issues -You can report issues on our [bug tracker](https://github.com/react-native-community/react-native-svg/issues). Please +You can report issues on our [bug tracker](https://github.com/software-mansion/react-native-svg/issues). Please search for existing issues and follow the issue template when opening one. ## License diff --git a/RNSVG.podspec b/RNSVG.podspec index 6f3abc336..0b4bd85ef 100644 --- a/RNSVG.podspec +++ b/RNSVG.podspec @@ -13,7 +13,7 @@ Pod::Spec.new do |s| s.license = package['license'] s.homepage = package['homepage'] s.authors = 'Horcrux Chen' - s.source = { :git => 'https://github.com/react-native-community/react-native-svg.git', :tag => "v#{s.version}" } + s.source = { :git => 'https://github.com/software-mansion/react-native-svg.git', :tag => "v#{s.version}" } s.source_files = 'apple/**/*.{h,m,mm}' s.ios.exclude_files = '**/*.macos.{h,m,mm}' s.tvos.exclude_files = '**/*.macos.{h,m,mm}' diff --git a/USAGE.md b/USAGE.md index 6e9b21557..0804f5d0e 100644 --- a/USAGE.md +++ b/USAGE.md @@ -2,7 +2,7 @@ Here's a simple example. To render output like this: -![SVG example](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/svg.png) +![SVG example](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/svg.png) Use the following code: @@ -385,7 +385,7 @@ Colors set in the Svg element are inherited by its children: ``` -![Pencil](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/pencil.png) +![Pencil](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/pencil.png) Code explanation: @@ -411,7 +411,7 @@ The element is used to create a rectangle and variations of a rectangle s ``` -![Rect](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/rect.png) +![Rect](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/rect.png) Code explanation: @@ -429,7 +429,7 @@ The element is used to create a circle: ``` -![Rect](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/circle.png) +![Rect](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/circle.png) Code explanation: @@ -456,7 +456,7 @@ An ellipse is closely related to a circle. The difference is that an ellipse has ``` -![Rect](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/ellipse.png) +![Rect](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/ellipse.png) Code explanation: @@ -475,7 +475,7 @@ The element is an SVG basic shape, used to create a line connecting two p ``` -![Rect](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/line.png) +![Rect](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/line.png) Code explanation: @@ -499,7 +499,7 @@ The element is used to create a graphic that contains at least three s ``` -![Rect](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/polygon.png) +![Rect](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/polygon.png) Code explanation: @@ -520,7 +520,7 @@ The element is used to create any shape that consists of only straigh ``` -![Rect](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/polyline.png) +![Rect](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/polyline.png) Code explanation: @@ -555,7 +555,7 @@ The following commands are available for path data: ``` -![Rect](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/path.png) +![Rect](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/path.png) ## Text @@ -576,7 +576,7 @@ The element is used to define text. ``` -![Text](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/text.png) +![Text](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/text.png) ## TSpan @@ -609,7 +609,7 @@ The element is used to draw multiple lines of text in SVG. Rather than h ``` -![TSpan](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/tspan.png) +![TSpan](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/tspan.png) ## TextPath @@ -634,7 +634,7 @@ In addition to text drawn in a straight line, SVG also includes the ability to p ``` -![TextPath](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/text-path.png) +![TextPath](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/text-path.png) ## G @@ -654,7 +654,7 @@ The element is a container used to group other SVG elements. Transformations ``` -![G](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/g.png) +![G](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/g.png) ## Use @@ -682,7 +682,7 @@ Before the element can be referenced, it must have an ID set on it via its i The element specifies where to show the reused shapes via its x and y props. Notice that the shapes inside the element are located at 0,0. That is done because their position is added to the position specified in the element. -![use](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/use.png) +![use](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/use.png) ## Symbol @@ -708,7 +708,7 @@ The SVG element is used to define reusable symbols. The shapes nested i ``` -![Symbol](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/symbol.png) +![Symbol](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/symbol.png) ## Defs @@ -750,7 +750,7 @@ The element allows a raster image to be included in an Svg component. ``` -![Image](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/image.png) +![Image](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/image.png) ## ClipPath @@ -800,7 +800,7 @@ The SVG element defines a clipping path. A clipping path is used/refe ``` -![ClipPath](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/clip-path.png) +![ClipPath](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/clip-path.png) ## LinearGradient @@ -832,7 +832,7 @@ Code explanation: - The color range for a gradient can be composed of two or more colors. Each color is specified with a tag. The offset prop is used to define where the gradient color begin and end - The fill prop links the ellipse element to the gradient -![LinearGradient](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/lineargradient.png) +![LinearGradient](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/lineargradient.png) _NOTICE:_ LinearGradient also supports percentage as prop: @@ -877,7 +877,7 @@ Code explanation: - The color range for a gradient can be composed of two or more colors. Each color is specified with a tag. The offset prop is used to define where the gradient color begin and end - The fill prop links the ellipse element to the gradient -![RadialGradient](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/radialgradient.png) +![RadialGradient](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/radialgradient.png) ## Mask @@ -1226,7 +1226,7 @@ You can use these events to provide interactivity to your react-native-svg compo /> ``` -![TouchEvents](https://raw.githubusercontent.com/react-native-community/react-native-svg/master/screenshots/touchevents.gif) +![TouchEvents](https://raw.githubusercontent.com/software-mansion/react-native-svg/master/screenshots/touchevents.gif) For more examples of touch in action, checkout the [TouchEvents.js examples](https://github.com/magicismight/react-native-svg-example/blob/master/examples/TouchEvents.js). diff --git a/package.json b/package.json index cf9523862..0356d3058 100644 --- a/package.json +++ b/package.json @@ -2,10 +2,10 @@ "version": "15.15.5", "name": "react-native-svg", "description": "SVG library for react-native", - "homepage": "https://github.com/react-native-community/react-native-svg", + "homepage": "https://github.com/software-mansion/react-native-svg", "repository": { "type": "git", - "url": "https://github.com/react-native-community/react-native-svg" + "url": "https://github.com/software-mansion/react-native-svg" }, "license": "MIT", "main": "lib/commonjs/index.js",