Skip to content

Commit

Permalink
Fix invalid @debug@ check
Browse files Browse the repository at this point in the history
  • Loading branch information
Snakybo committed May 7, 2024
1 parent 627562d commit 9def186
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ The format of this changelog is based on [Keep a Changelog](https://keepachangel
* The MINOR component is used whenever a version has backwards-compatible profile changes. This also indicates that the user can not switch back to a previous MINOR version without using a backup.
* The PATCH component is used for versions that do not contain profile format changes. Users can freely switch between PATCH versions without risk of data loss.

## [Unreleased]

### Fixed

* Fix message about using a development version showing up on non-development versions

## [1.14.7] - 2024-05-01

### Added
Expand Down
4 changes: 2 additions & 2 deletions Clicked/Core/Clicked.lua
Original file line number Diff line number Diff line change
Expand Up @@ -287,10 +287,10 @@ function Clicked:OnInitialize()
end

function Clicked:OnEnable()
---@debug@
--@debug@
local projectUrl = "https://www.curseforge.com/wow/addons/clicked"
print(Addon:AppendClickedMessagePrefix("You are using a development version, download the latest release from " .. projectUrl))
---@end-debug@
--@end-debug@

UpdateEventHooks(self, self.RegisterEvent)
end
Expand Down

0 comments on commit 9def186

Please sign in to comment.