Skip to content

Commit

Permalink
Release version 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sato942 committed Aug 28, 2024
1 parent b47c38d commit 71eb618
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 1 deletion.
32 changes: 32 additions & 0 deletions .pkgmeta
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package-as: BeaconChecker

enable-nolib-creation: no

externals:
libs/LibStub:
url: https://repos.curseforge.com/wow/libstub/trunk
libs/CallbackHandler-1.0:
url: https://repos.curseforge.com/wow/callbackhandler/trunk
libs/AceAddon-3.0:
url: https://repos.curseforge.com/wow/ace3/trunk/AceAddon-3.0
libs/AceConfig-3.0:
url: https://repos.curseforge.com/wow/ace3/trunk/AceConfig-3.0
libs/AceConsole-3.0:
url: https://repos.curseforge.com/wow/ace3/trunk/AceConsole-3.0
libs/AceDB-3.0:
url: https://repos.curseforge.com/wow/ace3/trunk/AceDB-3.0
libs/AceEvent-3.0:
url: https://repos.curseforge.com/wow/ace3/trunk/AceEvent-3.0
libs/AceGUI-3.0:
url: https://repos.curseforge.com/wow/ace3/trunk/AceGUI-3.0
libs/LibDataBroker-1.1:
url: https://github.com/tekkub/libdatabroker-1-1.git
libs/LibDBIcon-1.0:
url: https://repos.curseforge.com/wow/libdbicon-1-0/trunk/LibDBIcon-1.0

optional-dependencies:
- tomtom

manual-changelog: CHANGELOG.txt

license-output: LICENSE.txt
2 changes: 1 addition & 1 deletion BeaconChecker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ local AceAddon = LibStub("AceAddon-3.0")
local AceConfig = LibStub("AceConfig-3.0")
local AceConfigDialog = LibStub("AceConfigDialog-3.0")
local AceDB = LibStub("AceDB-3.0")

local ADDON_VERSION = "@project-version@"
local BeaconChecker = AceAddon:NewAddon(addonName, "AceConsole-3.0", "AceEvent-3.0")

-- Quest Data
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Version 0.2 (2023-MM-DD)
- Major UI Overhaul: Replaced basic frame with AceGUI for a more polished look
- Added tabbed interface (Weekly Quests, Weekly Elites, World Quests)
- Implemented scrollable content for better handling of long lists
- Enhanced Quest Data: Updated and expanded quest information
- Added achievement tracking for each quest
- Implemented minimap button for quick access
- Added options panel with minimap button toggle
- Improved TomTom Integration
- Refactored code to use AceAddon-3.0 framework
- Implemented event-based updates for real-time quest status changes
- Added color coding for completed/incomplete quests and achievements
- Implemented escape key functionality to close the main window
- Added frame clamping to prevent UI from moving off-screen
- Added placeholder text for upcoming Weekly Elites and World Quests tabs
- Fixed issues with unknown quest locations
- Improved error handling and nil checks
- Optimized frame creation and updates for smoother performance
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 [Your Name]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

0 comments on commit 71eb618

Please sign in to comment.