Skip to content

Commit

Permalink
Corrected the uSync page URL casing (#680)
Browse files Browse the repository at this point in the history
If you click on the project URL when viewing the NuGet package in Visual Studio you get a 404 error.  That's because it's using https://jumoo.co.uk/uSync which doesn't work, the URL needs to be https://jumoo.co.uk/usync (lower case u).  I have therefore updated the URL with the lower case u to fix that.
  • Loading branch information
richarth authored Dec 19, 2024
1 parent 7c666aa commit e27dec1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<PackageIconUrl></PackageIconUrl>
<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://jumoo.co.uk/uSync</PackageProjectUrl>
<PackageProjectUrl>https://jumoo.co.uk/usync</PackageProjectUrl>
<PackageTags>Umbraco</PackageTags>

<RepositoryUrl>https://github.com/KevinJump/uSync8/tree/core/main</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ Database syncing tool for Umbraco

uSync is a Umbraco package that reads and writes your Umbraco settings to and from disk. This allows you to source control and deploy changes you make inside Umbraco.

https://jumoo.co.uk/uSync/
https://jumoo.co.uk/usync/
2 changes: 1 addition & 1 deletion uSync.Backoffice.Assets/App_Plugins/uSync/addons.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"title": "uSync Complete",
"headline": "Get everything with uSync.Complete",
"text": "uSync Complete brings together all the best bits of uSync into one place.",
"link": "https://jumoo.co.uk/uSync/complete/",
"link": "https://jumoo.co.uk/usync/complete/",
"icons": [
{
"icon": "icon-arrow-up",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class uSyncAddOnsElement extends UmbElementMixin(LitElement) {
<div class="cta">
<uui-button
href="https://jumoo.co.uk/uSync/complete/"
href="https://jumoo.co.uk/usync/complete/"
target="_blank"
color="positive"
look="primary"
Expand Down
2 changes: 1 addition & 1 deletion uSync/uSync.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>

<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://jumoo.co.uk/uSync</PackageProjectUrl>
<PackageProjectUrl>https://jumoo.co.uk/usync</PackageProjectUrl>

<PackageTags>umbraco usync umbraco-marketplace</PackageTags>

Expand Down
2 changes: 1 addition & 1 deletion uSync/usync.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">MPL-2.0</license>
<licenseUrl>https://licenses.nuget.org/MPL-2.0</licenseUrl>
<projectUrl>https://jumoo.co.uk/uSync</projectUrl>
<projectUrl>https://jumoo.co.uk/usync</projectUrl>
<description>uSync from Umbraco CMS</description>
<releaseNotes>9.0 - Dotnet core version</releaseNotes>
<copyright>Jumoo @ 2013-2021</copyright>
Expand Down

0 comments on commit e27dec1

Please sign in to comment.