Skip to content
This repository has been archived by the owner on Jul 22, 2021. It is now read-only.

Commit

Permalink
Merge branch 'v8/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Sadler committed Oct 14, 2020
2 parents 040cb33 + 07f2090 commit fa9a5ee
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
Binary file added Builds/MegaNavV8_8.1.2.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions Builds/NuGet/AaronSadler.MegaNavV8.Web.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>AaronSadler.MegaNavV8.Web</id>
<version>8.1.1</version>
<version>8.1.2</version>
<title>Umbraco.MegaNavV8.Web</title>
<authors>Aaron Sadler, Callum Whyte</authors>
<owners>Aaron Sadler, Callum Whyte</owners>
Expand All @@ -12,7 +12,7 @@
<icon>MegaNavV8-Logo.png</icon>
<summary>A flexible, draggable link picker for constructing site navigation menus, big or small, in Umbraco</summary>
<description>A flexible, draggable link picker for constructing site navigation menus, big or small, in Umbraco</description>
<releaseNotes><![CDATA[Breaking Changes: Updated namespaces to align with current project name, Updated the project alias to align with the current project name]]></releaseNotes>
<releaseNotes><![CDATA[Fixed issue where a new mega nav requires as string, but an object is passed. - Pull Request #13, Thanks auroris!]]></releaseNotes>
<copyright>Copyright 2020</copyright>
<tags>umbraco, umbraco-cms, MegaNav, MegaNav-V8</tags>
<dependencies>
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.

## [8.1.2] - 2020-10-02
### Fixed
Fixed issue where a new mega nav requires as string, but an object is passed. - Pull Request #13, Thanks auroris!

## [8.1.1] - 2020-10-02
### Fixed
Included correct DLLs
Expand Down
2 changes: 1 addition & 1 deletion TestSite/App_Data/packages/createdPackages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="1" version="8.1.1" url="https://github.com/AaronSadlerUK/Umbraco.MegaNavV8" name="MegaNavV8" packagePath="~/media/created-packages/MegaNavV8_8.1.1.zip" iconUrl="https://raw.githubusercontent.com/AaronSadlerUK/Umbraco.MegaNavV8/master/Builds/MegaNavV8-Logo.png" umbVersion="8.6.0" packageGuid="5fd927ea-0974-4f9e-b899-5e55c3829728" view="">
<package id="1" version="8.1.2" url="https://github.com/AaronSadlerUK/Umbraco.MegaNavV8" name="MegaNavV8" packagePath="~/media/created-packages/MegaNavV8_8.1.2.zip" iconUrl="https://raw.githubusercontent.com/AaronSadlerUK/Umbraco.MegaNavV8/master/Builds/MegaNavV8-Logo.png" umbVersion="8.6.0" packageGuid="5fd927ea-0974-4f9e-b899-5e55c3829728" view="">
<license url="http://opensource.org/licenses/MIT"><![CDATA[MIT License]]></license>
<author url="https://aaronsadler.dev"><![CDATA[Aaron Sadler, Callum Whyte]]></author>
<contributors>
Expand Down
2 changes: 1 addition & 1 deletion TestSite/App_Plugins/MeganavV8/Js/meganavv8.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
model.target.anchor = (model.target.anchor.indexOf('=') === -1 ? '#' : '?') + model.target.anchor;
}
if (model.target.udi) {
meganavV8Resource.getById(model.target.udi, { cultureName: $routeParams.cculture ? $routeParams.cculture : $routeParams.mculture })
meganavV8Resource.getById(model.target.udi, $routeParams.cculture ? $routeParams.cculture : $routeParams.mculture)
.then(function (response) {
// merge metadata
angular.extend(model.target, response.data);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
model.target.anchor = (model.target.anchor.indexOf('=') === -1 ? '#' : '?') + model.target.anchor;
}
if (model.target.udi) {
meganavV8Resource.getById(model.target.udi, { cultureName: $routeParams.cculture ? $routeParams.cculture : $routeParams.mculture })
meganavV8Resource.getById(model.target.udi, $routeParams.cculture ? $routeParams.cculture : $routeParams.mculture)
.then(function (response) {
// merge metadata
angular.extend(model.target, response.data);
Expand Down

0 comments on commit fa9a5ee

Please sign in to comment.