Skip to content
This repository was archived by the owner on Dec 13, 2021. It is now read-only.

Commit e0ab92a

Browse files
committed
Migration to UMCO
- Updated the GitHub repo URL (in various files) - Updated API keys in appveyor config - Updated copyright and credits - Removed the Ditto-specific private MyGet feed (we should be promoting the Umbraco Community feed)
1 parent 391cd1c commit e0ab92a

File tree

8 files changed

+21
-29
lines changed

8 files changed

+21
-29
lines changed

LICENSE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
The MIT License (MIT)
22

3-
Copyright © 2014 Umbrella Inc, Our Umbraco and other contributors
3+
Copyright © 2018 UMCO, Our Umbraco and other contributors
4+
Copyright © 2014 Umbrella Inc
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy of
67
this software and associated documentation files (the "Software"), to deal in

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<img height="100" src="docs/assets/img/ditto.png" style="margin-bottom: 20px" alt="Ditto logo" title="Ditto">
22

3-
[![Build status](https://img.shields.io/appveyor/ci/leekelleher/umbraco-ditto.svg)](https://ci.appveyor.com/project/leekelleher/umbraco-ditto)
3+
[![Build status](https://img.shields.io/appveyor/ci/UMCO/umbraco-ditto.svg)](https://ci.appveyor.com/project/UMCO/umbraco-ditto)
44
[![Documentation Status](https://readthedocs.org/projects/umbraco-ditto/badge/?version=latest)](https://readthedocs.org/projects/umbraco-ditto/?badge=latest)
55
[![NuGet release](https://img.shields.io/nuget/v/Our.Umbraco.Ditto.svg)](https://www.nuget.org/packages/Our.Umbraco.Ditto)
66
[![Our Umbraco project page](https://img.shields.io/badge/our-umbraco-orange.svg)](https://our.umbraco.org/projects/developer-tools/ditto)
@@ -40,25 +40,26 @@ Anyone and everyone is welcome to contribute. Please take a moment to review the
4040
Have a question?
4141

4242
* [Ditto Forum](http://our.umbraco.org/projects/developer-tools/ditto/ditto-feedback/) on Our Umbraco
43-
* [Raise an issue](https://github.com/leekelleher/umbraco-ditto/issues) on GitHub
43+
* [Raise an issue](https://github.com/umco/umbraco-ditto/issues) on GitHub
4444

4545

4646
## Ditto Team
4747

4848
* [Lee Kelleher](https://github.com/leekelleher)
4949
* [Matt Brailsford](https://github.com/mattbrailsford)
50-
* [James Jackson-South](https://github.com/JimBobSquarePants)
5150

5251
### Special thanks
5352

5453
* Thanks to [Darren Ferguson](https://github.com/darrenferguson) for inspiration in his article "[Mapping Umbraco content to POCOs for strongly typed views](http://24days.in/umbraco/2013/mapping-content-to-pocos/)" on the [24 days in Umbraco](http://24days.in/umbraco/) advent calender.
5554
* Thanks to [Jeavon Leopold](https://github.com/Jeavon) for being a rockstar and adding AppVeyor support.
5655
* Thanks to [Hendy Racher](https://github.com/Hendy) for testing and contributions.
5756
* Thanks to [Jamie Pollock](https://github.com/jamiepollock) for continued support, feedback and encouragement.
57+
* Special thanks to [James Jackson-South](https://github.com/JimBobSquarePants) for all the stellar contributions.
5858

5959

6060
## License
6161

62-
Copyright &copy; 2014 Umbrella Inc, Our Umbraco and [other contributors](https://github.com/leekelleher/umbraco-ditto/graphs/contributors)
62+
Copyright &copy; 2018 UMCO, Our Umbraco and [other contributors](https://github.com/umco/umbraco-ditto/graphs/contributors)
63+
Copyright &copy; 2014 Umbrella Inc
6364

6465
Licensed under the [MIT License](LICENSE.md)

appveyor.yml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,30 +23,20 @@ artifacts:
2323
- path: artifacts\*.zip
2424

2525
deploy:
26-
# MyGet (Ditto feed) Deployment for builds & releases
27-
- provider: NuGet
28-
server: https://www.myget.org/F/umbraco-ditto/
29-
symbol_server: https://www.myget.org/F/umbraco-ditto/symbols/api/v2/package
30-
api_key:
31-
secure: Q1/4K8VSwr7BjwmKDTef8y5lOc7S+jK9ELuWy67y6OVRpjxmnF9M3Gfs1kT+ir8x
32-
artifact: /.*\.nupkg/
33-
on:
34-
branch: develop
35-
3626
# MyGet (Umbraco Community feed) Deployment for builds & releases
3727
- provider: NuGet
3828
server: https://www.myget.org/F/umbraco-packages/
39-
symbol_server: https://www.myget.org/F/umbraco-packages/symbols/api/v2/package
29+
symbol_server: https://nuget.symbolsource.org/MyGet/umbraco-packages
4030
api_key:
41-
secure: Q1/4K8VSwr7BjwmKDTef8y5lOc7S+jK9ELuWy67y6OVRpjxmnF9M3Gfs1kT+ir8x
31+
secure: 36/Ax5O+e6wENlhoTwgvoEBZV3FG4XjF429SNTej2qsGTAL+cdfA1kT/tm1St8vx
4232
artifact: /.*\.nupkg/
4333
on:
4434
branch: develop
4535

4636
# GitHub Deployment for releases
4737
- provider: GitHub
4838
auth_token:
49-
secure: pEozEGTqJutQwOidJU6BTB+Ix0NV4vrUnomhfeqheVz4RNwfxjEYLoqR4XabhlPz
39+
secure: yDxrRTveSScJA35MQTOaLYVjoPKFKl2bHBkG+JMZjiN0r7AfuUCxVU3CgW8Imu4h
5040
artifact: /.*\.zip/ # upload all Zip packages to release assets
5141
draft: false
5242
prerelease: false
@@ -58,7 +48,7 @@ deploy:
5848
- provider: NuGet
5949
server:
6050
api_key:
61-
secure: CGzDKxw4QI/z2VSe9ceiYlIabqGXHolgBgVNWWZjVAJ2V5WLF11IFdlp9r5Qp+Sw
51+
secure: 0+oAleUTnr9UuJrhLW5rphRR+QGz00XX1Ui3k5kwyr2kUdEamiQ3F+gW0q8MJbDT
6252
artifact: /.*\.nupkg/
6353
on:
6454
branch: master

build/package.proj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@
2020
<MinUmbracoVersion>7.3.2</MinUmbracoVersion>
2121
<Readme>Ditto - the friendly POCO mapper for Umbraco</Readme>
2222
<AuthorName>Lee Kelleher, Matt Brailsford, James Jackson-South</AuthorName>
23-
<AuthorUrl>https://github.com/leekelleher/umbraco-ditto/graphs/contributors</AuthorUrl>
23+
<AuthorUrl>https://github.com/umco/umbraco-ditto/graphs/contributors</AuthorUrl>
2424
<PackageLicenseName>MIT license</PackageLicenseName>
2525
<PackageLicenseUrl>http://opensource.org/licenses/MIT</PackageLicenseUrl>
26-
<ProjectUrl>https://github.com/leekelleher/umbraco-ditto</ProjectUrl>
26+
<ProjectUrl>https://github.com/umco/umbraco-ditto</ProjectUrl>
2727
</PropertyGroup>
2828

2929
<!-- NUGET ONLY PROPERTIES -->
3030
<PropertyGroup>
3131
<PackageId>Our.Umbraco.Ditto</PackageId>
3232
<NuGetPackageName>Ditto for Umbraco</NuGetPackageName>
33-
<Copyright>Copyright &#169; 2014 Umbrella Inc Ltd, Our Umbraco and other contributors</Copyright>
34-
<Owners>Umbrella Inc Ltd</Owners>
35-
<IconUrl>https://raw.githubusercontent.com/leekelleher/umbraco-ditto/master/docs/assets/img/logo.png</IconUrl>
33+
<Copyright>Copyright &#169; 2014 UMCO, Umbrella Inc Ltd, Our Umbraco and other contributors</Copyright>
34+
<Owners>UMCO</Owners>
35+
<IconUrl>https://raw.githubusercontent.com/umco/umbraco-ditto/master/docs/assets/img/logo.png</IconUrl>
3636
<Tags>umbraco poco mapping strongly-typed</Tags>
3737
<Language>en-GB</Language>
3838
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Ditto is a lightweight view-model mapper for Umbraco. It offers a simple solutio
55

66
## Where can I get it?
77

8-
Ditto can be installed from either [Our Umbraco](https://our.umbraco.org/projects/developer-tools/ditto/) or [NuGet package](https://www.nuget.org/packages/Our.Umbraco.Ditto) repositories, or build manually from the [source-code](https://github.com/leekelleher/umbraco-ditto).
8+
Ditto can be installed from either [Our Umbraco](https://our.umbraco.org/projects/developer-tools/ditto/) or [NuGet package](https://www.nuget.org/packages/Our.Umbraco.Ditto) repositories, or build manually from the [source-code](https://github.com/umco/umbraco-ditto).
99

1010
For further details, please see our [installation](install) guide, then read the [getting started](getting-started) section.
1111

1212
## How can I get help?
1313

14-
For quick questions, give [Gitter](https://gitter.im/leekelleher/umbraco-ditto) a try. For more detailed questions, head over to [Our Umbraco forum](https://our.umbraco.org/projects/developer-tools/ditto/ditto-feedback/). Finally, for bugs, issues or feature requests, create a [GitHub Issue](https://github.com/leekelleher/umbraco-ditto/issues).
14+
For quick questions, give [Gitter](https://gitter.im/leekelleher/umbraco-ditto) a try. For more detailed questions, head over to [Our Umbraco forum](https://our.umbraco.org/projects/developer-tools/ditto/ditto-feedback/). Finally, for bugs, issues or feature requests, create a [GitHub Issue](https://github.com/umco/umbraco-ditto/issues).
1515

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If you prefer, you can compile Ditto yourself, you'll need:
2828
To clone it locally run the following git commands:
2929

3030
```bash
31-
git clone https://github.com/leekelleher/umbraco-ditto.git umbraco-ditto
31+
git clone https://github.com/umco/umbraco-ditto.git umbraco-ditto
3232
cd umbraco-ditto
3333
.\build.cmd
3434
```

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
site_name: Ditto
22

3-
repo_url: https://github.com/leekelleher/umbraco-ditto/tree/develop/docs
3+
repo_url: https://github.com/umco/umbraco-ditto/tree/develop/docs
44

55
pages:
66
- 'Introduction': 'index.md'

tests/Our.Umbraco.Ditto.Tests/Issue177Tests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Our.Umbraco.Ditto.Tests
55
{
66
/// <remarks>
77
/// Unit-test to verify an issue - as outlined in #177
8-
/// https://github.com/leekelleher/umbraco-ditto/issues/177
8+
/// https://github.com/umco/umbraco-ditto/issues/177
99
/// When a property is marked as `virtual`, it becomes lazy-loaded,
1010
/// and not accessible by other properties on the model.
1111
/// </remarks>

0 commit comments

Comments
 (0)