Skip to content

Commit 3364b20

Browse files
author
Andreas Gullberg Larsen
authored
README: Update links with new angularsen username
1 parent ea2130a commit 3364b20

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[![Build status](https://ci.appveyor.com/api/projects/status/f8qfnqd7enkc6o4k?svg=true)](https://ci.appveyor.com/project/anjdreas/unitsnet) [![Join the chat at https://gitter.im/UnitsNet/Lobby](https://badges.gitter.im/UnitsNet/Lobby.svg)](https://gitter.im/UnitsNet/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2-
[![Flattr this git repo](https://button.flattr.com/flattr-badge-large.png)](https://flattr.com/submit/auto?fid=g37dpx&url=https://github.com/anjdreas/UnitsNet/&title=Units.NET&language=en-US&tags=github&category=software)
1+
[![Build status](https://ci.appveyor.com/api/projects/status/f8qfnqd7enkc6o4k?svg=true)](https://ci.appveyor.com/project/angularsen/unitsnet) [![Join the chat at https://gitter.im/UnitsNet/Lobby](https://badges.gitter.im/UnitsNet/Lobby.svg)](https://gitter.im/UnitsNet/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2+
[![Flattr this git repo](https://button.flattr.com/flattr-badge-large.png)](https://flattr.com/submit/auto?fid=g37dpx&url=https://github.com/angularsen/UnitsNet/&title=Units.NET&language=en-US&tags=github&category=software)
33

44
Units.NET
55
===
@@ -13,7 +13,7 @@ Installing
1313
---
1414
Run the following command in the [Package Manager Console](http://docs.nuget.org/docs/start-here/using-the-package-manager-console) or go to the [NuGet site](https://www.nuget.org/packages/UnitsNet/) for the complete relase history.
1515

16-
![Install-Package UnitsNet](https://raw.githubusercontent.com/anjdreas/UnitsNet/master/Docs/Images/install_package_unitsnet.png "Install-Package UnitsNet")
16+
![Install-Package UnitsNet](https://raw.githubusercontent.com/angularsen/UnitsNet/master/Docs/Images/install_package_unitsnet.png "Install-Package UnitsNet")
1717

1818
Build Targets:
1919
* .NET Standard 1.0
@@ -23,7 +23,7 @@ Build Targets:
2323
Overview
2424
---
2525
* [508 units in 48 unit classes](UnitsNet/GeneratedCode/Enums) generated from [JSON](UnitsNet/UnitDefinitions/) by [Powershell scripts](UnitsNet/Scripts)
26-
* [Over 1000 unit tests](https://ci.appveyor.com/project/anjdreas/unitsnet) on conversions and localizations
26+
* [Over 1000 unit tests](https://ci.appveyor.com/project/angularsen/unitsnet) on conversions and localizations
2727
* Immutable structs that implement IEquatable, IComparable
2828
* [Static typing](#static-typing) to avoid ambiguous values or units
2929
* [Operator overloads](#operator-overloads) for arithmetic on quantities
@@ -32,7 +32,7 @@ Overview
3232
* [Example: Creating a unit converter app](#example-app)
3333
* [Precision and accuracy](#precision)
3434
* [Serializable with JSON.NET](#serialization)
35-
* Extensible with [custom units](https://github.com/anjdreas/UnitsNet/wiki/Extending-with-Custom-Units)
35+
* Extensible with [custom units](https://github.com/angularsen/UnitsNet/wiki/Extending-with-Custom-Units)
3636
* [Contribute](#contribute) if you are missing some units
3737
* [Continuous integration](#ci) posts status reports to pull requests and commits
3838
* [Who are using this?](#who-are-using)
@@ -120,7 +120,7 @@ RotationalSpeedUnit.RevolutionPerMinute == RotationalSpeed.ParseUnit("r/min");
120120

121121
<a name="example-app"></a>Example: Creating a unit converter app
122122
---
123-
*TODO: Add actual sample app and link to it here with screenshot. See [#274](https://github.com/anjdreas/UnitsNet/issues/274) for details.*
123+
*TODO: Add actual sample app and link to it here with screenshot. See [#274](https://github.com/angularsen/UnitsNet/issues/274) for details.*
124124

125125
This example shows how you can create a dynamic unit converter, where the user selects the quantity to convert, such as `Length` or `Mass`, then selects to convert from `Meter` to `Centimeter` and types in a value for how many meters.
126126

@@ -144,12 +144,12 @@ Units.NET was intended for convenience and ease of use, not highly accurate conv
144144

145145
The tests accept an error up to 1E-5 for most units added so far. Exceptions include units like Teaspoon, where the base unit cubic meter is a lot bigger. In many usecases this is sufficient, but for others this may be a showstopper and something you need to be aware of.
146146

147-
For more details, see [Precision](https://github.com/anjdreas/UnitsNet/wiki/Precision).
147+
For more details, see [Precision](https://github.com/angularsen/UnitsNet/wiki/Precision).
148148

149149

150150
<a name="serialization"></a>Serialization
151151
---
152-
* `UnitsNet.Serialization.JsonNet` ([nuget](https://www.nuget.org/packages/UnitsNet.Serialization.JsonNet), [src](https://github.com/anjdreas/UnitsNet/tree/master/UnitsNet.Serialization.JsonNet), [tests](https://github.com/anjdreas/UnitsNet/tree/master/UnitsNet.Serialization.JsonNet.Tests)) for JSON.NET
152+
* `UnitsNet.Serialization.JsonNet` ([nuget](https://www.nuget.org/packages/UnitsNet.Serialization.JsonNet), [src](https://github.com/angularsen/UnitsNet/tree/master/UnitsNet.Serialization.JsonNet), [tests](https://github.com/angularsen/UnitsNet/tree/master/UnitsNet.Serialization.JsonNet.Tests)) for JSON.NET
153153

154154
**Important!**
155155
We cannot guarantee backwards compatibility, although we will strive to do that on a "best effort" basis and bumping the major nuget version when a change is necessary.
@@ -159,9 +159,9 @@ The base unit of any unit should be be treated as volatile as we have changed th
159159

160160
<a name="contribute"></a>Want To Contribute?
161161
---
162-
This project is still early and many units and conversions are not yet covered. If you are missing something, please help by contributing or [ask for it](https://github.com/anjdreas/UnitsNet/issues) by creating an issue.
162+
This project is still early and many units and conversions are not yet covered. If you are missing something, please help by contributing or [ask for it](https://github.com/angularsen/UnitsNet/issues) by creating an issue.
163163

164-
Please read the wiki on [Adding a New Unit](https://github.com/anjdreas/UnitsNet/wiki/Adding-a-New-Unit).
164+
Please read the wiki on [Adding a New Unit](https://github.com/angularsen/UnitsNet/wiki/Adding-a-New-Unit).
165165

166166
Generally adding a unit involves adding or modifying `UnitsNet\UnitDefinitions\*.json` files and running `generate-code.bat` to regenerate the source code and test code stubs, then manually implementing the new unit conversion constants in the test code.
167167

@@ -171,14 +171,14 @@ Generally adding a unit involves adding or modifying `UnitsNet\UnitDefinitions\*
171171

172172
<a name="ci"></a>Continuous Integration
173173
---
174-
[AppVeyor](https://ci.appveyor.com/project/anjdreas/unitsnet) performs the following:
174+
[AppVeyor](https://ci.appveyor.com/project/angularsen/unitsnet) performs the following:
175175
* Build and test all branches
176176
* Build and test pull requests, notifies on success or error
177177
* Deploy nugets on master branch, if nuspec versions changed
178178

179179
<a name="who-are-using"></a>Who are Using This?
180180
---
181-
It would be awesome to know who are using this library. If you would like your project listed here, [create an issue](https://github.com/anjdreas/UnitsNet/issues) or edit the [README.md](https://github.com/anjdreas/UnitsNet/edit/master/README.md) and send a pull request. Max logo size is `300x35 pixels` and should be in `.png`, `.gif` or `.jpg` formats.
181+
It would be awesome to know who are using this library. If you would like your project listed here, [create an issue](https://github.com/angularsen/UnitsNet/issues) or edit the [README.md](https://github.com/angularsen/UnitsNet/edit/master/README.md) and send a pull request. Max logo size is `300x35 pixels` and should be in `.png`, `.gif` or `.jpg` formats.
182182

183183
![Motion Catalyst logo](http://swingcatalyst.s3.amazonaws.com/images/logos/MotionCatalyst_greenblack_35p.png "Motion Catalyst logo")
184184

0 commit comments

Comments
 (0)