From 4ee5b99631f532fd8c25c5291dcaef4de61de297 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Rom=C3=A1n=20Franco?= Date: Thu, 31 Oct 2024 14:09:18 -0400 Subject: [PATCH 1/5] Update EditLightbox.ascx --- Modules/WillStrohl.LightboxGallery/EditLightbox.ascx | 1 - 1 file changed, 1 deletion(-) diff --git a/Modules/WillStrohl.LightboxGallery/EditLightbox.ascx b/Modules/WillStrohl.LightboxGallery/EditLightbox.ascx index 01bf600..6c709bd 100644 --- a/Modules/WillStrohl.LightboxGallery/EditLightbox.ascx +++ b/Modules/WillStrohl.LightboxGallery/EditLightbox.ascx @@ -1,6 +1,5 @@ <%@ Control Language="vb" AutoEventWireup="false" CodeBehind="EditLightbox.ascx.vb" Inherits="WillStrohl.Modules.Lightbox.EditLightbox" %> <%@ Register TagPrefix="dnn" TagName="Label" Src="~/controls/LabelControl.ascx" %> -<%@ Register TagPrefix="dnn" Namespace="DotNetNuke.Web.UI.WebControls" Assembly="DotNetNuke.Web.Deprecated" %> <%@ Import Namespace="DotNetNuke.Services.Localization" %>
From 667a665b2ca42f60f2d556d81c795cb8e18953f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Rom=C3=A1n=20Franco?= Date: Thu, 31 Oct 2024 14:09:20 -0400 Subject: [PATCH 2/5] Update ViewLightbox.ascx.vb --- Modules/WillStrohl.LightboxGallery/ViewLightbox.ascx.vb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/WillStrohl.LightboxGallery/ViewLightbox.ascx.vb b/Modules/WillStrohl.LightboxGallery/ViewLightbox.ascx.vb index 54819a0..1d0d42d 100644 --- a/Modules/WillStrohl.LightboxGallery/ViewLightbox.ascx.vb +++ b/Modules/WillStrohl.LightboxGallery/ViewLightbox.ascx.vb @@ -50,8 +50,8 @@ Namespace WillStrohl.Modules.Lightbox Private Const ERROR_WRAP As String = "{0}" Private Const EDIT_IMAGE_PATH As String = "/images/edit.gif" Private Const ORDER_IMAGE_PATH As String = "/images/copy.gif" - Private Const IMAGE_TEMPLATE As String = "
  • " - Private Const IMAGE_EDIT_TEMPLATE As String = "
  • {6}
  • " + Private Const IMAGE_TEMPLATE As String = "
  • {4}

  • " + Private Const IMAGE_EDIT_TEMPLATE As String = "
  • {4}

    {6}
  • " Private Const MAX_IMAGE_HEIGHT As Integer = 100 Private p_Albums As LightboxInfoCollection = Nothing From 6cd1d6d36bbff49a316df71d504293225211ccb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Rom=C3=A1n=20Franco?= Date: Thu, 31 Oct 2024 15:31:01 -0400 Subject: [PATCH 3/5] Update ViewLightbox.ascx.vb --- .../ViewLightbox.ascx.vb | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Modules/WillStrohl.LightboxGallery/ViewLightbox.ascx.vb b/Modules/WillStrohl.LightboxGallery/ViewLightbox.ascx.vb index 1d0d42d..2e64522 100644 --- a/Modules/WillStrohl.LightboxGallery/ViewLightbox.ascx.vb +++ b/Modules/WillStrohl.LightboxGallery/ViewLightbox.ascx.vb @@ -237,19 +237,19 @@ Namespace WillStrohl.Modules.Lightbox CleanNameForRel(GalleryName), _ GetImageFileUrl(oImage), _ GetImageFileUrl(oImageThumbnail), _ - objImage.Title, _ - objImage.Description, _ + If(oLightbox.HideTitleDescription, String.Empty, objImage.Title), _ + If(oLightbox.HideTitleDescription, String.Empty, objImage.Description), _ GetImageEditUrl(objImage), _ Me.GetLocalizedString("ImageEdit.Text") _ ) Else - sb.AppendFormat( _ - IMAGE_TEMPLATE, _ - CleanNameForRel(GalleryName), _ - GetImageFileUrl(oImage), _ - GetImageFileUrl(oImageThumbnail), _ - objImage.Title, _ - objImage.Description _ + sb.AppendFormat( + IMAGE_TEMPLATE, + CleanNameForRel(GalleryName), + GetImageFileUrl(oImage), + GetImageFileUrl(oImageThumbnail), + If(oLightbox.HideTitleDescription, String.Empty, objImage.Title), + If(oLightbox.HideTitleDescription, String.Empty, objImage.Description) ) End If From ec095cd214849121fadf1a0c1264fcfa4216fcce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Rom=C3=A1n=20Franco?= Date: Thu, 31 Oct 2024 15:31:05 -0400 Subject: [PATCH 4/5] Update WillStrohl.Modules.Lightbox.vbproj --- .../WillStrohl.Modules.Lightbox.vbproj | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Modules/WillStrohl.LightboxGallery/WillStrohl.Modules.Lightbox.vbproj b/Modules/WillStrohl.LightboxGallery/WillStrohl.Modules.Lightbox.vbproj index 469e822..4097462 100644 --- a/Modules/WillStrohl.LightboxGallery/WillStrohl.Modules.Lightbox.vbproj +++ b/Modules/WillStrohl.LightboxGallery/WillStrohl.Modules.Lightbox.vbproj @@ -315,7 +315,9 @@ - + + Designer + From 36ced59e423abe87a4401098c542ae651c82606c Mon Sep 17 00:00:00 2001 From: Will Strohl Date: Thu, 31 Oct 2024 13:24:45 -0700 Subject: [PATCH 5/5] Updates for the Lightbox Gallery 1.16.0 release --- .../My Project/AssemblyInfo.vb | 4 +- .../WillStrohl.Lightbox.dnn | 10 +-- .../WillStrohl.Lightbox_Symbols.dnn | 4 +- .../releasenotes.txt | 24 ++++++- Modules/WillStrohl.OpenGraph/releasenotes.txt | 72 +++++++++---------- 5 files changed, 66 insertions(+), 48 deletions(-) diff --git a/Modules/WillStrohl.LightboxGallery/My Project/AssemblyInfo.vb b/Modules/WillStrohl.LightboxGallery/My Project/AssemblyInfo.vb index edd07a1..03d9513 100644 --- a/Modules/WillStrohl.LightboxGallery/My Project/AssemblyInfo.vb +++ b/Modules/WillStrohl.LightboxGallery/My Project/AssemblyInfo.vb @@ -30,7 +30,7 @@ Imports System.Runtime.InteropServices ' You can specify all the values or you can default the Build and Revision Numbers ' by using the '*' as shown below: - + - \ No newline at end of file + \ No newline at end of file diff --git a/Modules/WillStrohl.LightboxGallery/WillStrohl.Lightbox.dnn b/Modules/WillStrohl.LightboxGallery/WillStrohl.Lightbox.dnn index f1235de..c6f772e 100644 --- a/Modules/WillStrohl.LightboxGallery/WillStrohl.Lightbox.dnn +++ b/Modules/WillStrohl.LightboxGallery/WillStrohl.Lightbox.dnn @@ -1,6 +1,6 @@  - + Lightbox Gallery This is a lightbox gallery module, written by Will Strohl. Its original purpose was to highlight a few ways that jQuery can be integrated into DNN. It has since become one of the most popular ways to include image galleries into your DNN website.

    ]]> @@ -16,7 +16,7 @@ true - 09.10.00 + 09.11.00 @@ -130,7 +130,7 @@ @@ -217,7 +217,7 @@ WillStrohl.Modules.Lightbox.LightboxController, WillStrohl.Modules.Lightbox [DESKTOPMODULEID] - 01.13.00,01.14.00,01.15.00 + 01.13.00,01.14.00,01.15.00,01.16.00 @@ -225,7 +225,7 @@ WillStrohl.Modules.Lightbox.dll - 01.15.00 + 01.16.00 bin diff --git a/Modules/WillStrohl.LightboxGallery/WillStrohl.Lightbox_Symbols.dnn b/Modules/WillStrohl.LightboxGallery/WillStrohl.Lightbox_Symbols.dnn index d1ff765..b0a6a39 100644 --- a/Modules/WillStrohl.LightboxGallery/WillStrohl.Lightbox_Symbols.dnn +++ b/Modules/WillStrohl.LightboxGallery/WillStrohl.Lightbox_Symbols.dnn @@ -1,7 +1,7 @@  - + Lightbox Gallery Symbols This is a lightbox gallery module, written by Will Strohl. Its original purpose was to highlight a few ways that jQuery can be integrated into DNN. It has since become one of the most popular ways to include image galleries into your DNN website.

    ]]> @@ -17,7 +17,7 @@ True - WillStrohl.Lightbox + WillStrohl.Lightbox diff --git a/Modules/WillStrohl.LightboxGallery/releasenotes.txt b/Modules/WillStrohl.LightboxGallery/releasenotes.txt index d8ec959..3faf128 100644 --- a/Modules/WillStrohl.LightboxGallery/releasenotes.txt +++ b/Modules/WillStrohl.LightboxGallery/releasenotes.txt @@ -15,10 +15,10 @@

    Sponsorship is Powered by GitHub Sponsors and ensures that this project lives and thrives. Please consider contributing any amount.

    THANK YOU to the following rockstars!

    Contributors

    @@ -35,6 +35,24 @@
    +

    Version 01.16.00

    +

    Enhancements

    + +

    Maintenence & Bug Fixes

    +
      +
    • Removed `DotNetNuke.Deprecated` from the DLL references. (No Issue) Thanks, @alejoroman0605!
    • +
    • Resolved bug preventing the setting from showing/hiding titles & descriptions. (No Issue) Thanks, @alejoroman0605!
    • + +
    +
    +

    Version 01.15.00

    Enhancements

      diff --git a/Modules/WillStrohl.OpenGraph/releasenotes.txt b/Modules/WillStrohl.OpenGraph/releasenotes.txt index 20311d8..f81a8e5 100644 --- a/Modules/WillStrohl.OpenGraph/releasenotes.txt +++ b/Modules/WillStrohl.OpenGraph/releasenotes.txt @@ -1,37 +1,37 @@ - -
      -

      Open Graph Protocol Module

      -

      Version 02.01.00

      - -

      The release notes continue after the Sponsors and Code Contributors below.

      - -

      Sponsors

      -

      Open-source is not free. We're so GRATEFUL for the following people/organizations for sponsoring developers to work on this release!

      -

      Sponsorship is Powered by GitHub Sponsors and ensures that this project lives and thrives. Please consider sponsoring any amount.

      -

      THANK YOU to the following rockstars!

      - - -

      Code Contributors

      -

      THANK YOU to the following community members for participating in this release!

      - - -

      Date Released: 10/31/2024

      -
        -
      • ENH: Increased minimum supported version of DNN to DNN Platform 09.11.00, Thanks @alejoroman0605!
      • -
      • ENH: Increased minimum supported version of NewtonSoft.Json to 13.00.03, Thanks @WillStrohl!
      • -
      • BUG: Caching error message always shows (Issue 31), Thanks @alejoroman0605!
      • -
      • BUG: Updated `DotNetNuke.Web` reference to use Nuget instead of a local reference, Thanks @WillStrohl!
      • -
      + +
      +

      Open Graph Protocol Module

      +

      Version 02.01.00

      + +

      The release notes continue after the Sponsors and Code Contributors below.

      + +

      Sponsors

      +

      Open-source is not free. We're so GRATEFUL for the following people/organizations for sponsoring developers to work on this release!

      +

      Sponsorship is Powered by GitHub Sponsors and ensures that this project lives and thrives. Please consider sponsoring any amount.

      +

      THANK YOU to the following rockstars!

      + + +

      Code Contributors

      +

      THANK YOU to the following community members for participating in this release!

      + + +

      Date Released: 10/31/2024

      +
        +
      • ENH: Increased minimum supported version of DNN to DNN Platform 09.11.00, Thanks @alejoroman0605!
      • +
      • ENH: Increased minimum supported version of NewtonSoft.Json to 13.00.03, Thanks @WillStrohl!
      • +
      • BUG: Caching error message always shows (Issue 31), Thanks @alejoroman0605!
      • +
      • BUG: Updated `DotNetNuke.Web` reference to use Nuget instead of a local reference, Thanks @WillStrohl!
      • +
      \ No newline at end of file