Release: v1.7.1.0
Finally self-hosted! Migrated from GitHub to my own Forgejo instance here. Full development history, all commits and tags are intact — nothing lost. Future updates will be distributed from here. Welcome to the new home of GolemHelper!
This commit is contained in:
parent
d035d14587
commit
39ca3d919b
2 changed files with 5 additions and 5 deletions
|
|
@ -40,7 +40,7 @@ void Load(AddonAPI* aApi) {
|
|||
|
||||
MapUtils::UpdateQuickAccessVisibility();
|
||||
|
||||
g_api->Log(ELogLevel_INFO, "GolemHelper", "=== GolemHelper v1.7.0.0 Loaded ===");
|
||||
g_api->Log(ELogLevel_INFO, "GolemHelper", "=== GolemHelper v1.7.1.0 Loaded ===");
|
||||
g_api->Log(ELogLevel_INFO, "GolemHelper", "<c=#00ff00>GolemHelper addon</c> loaded successfully!");
|
||||
}
|
||||
|
||||
|
|
@ -67,13 +67,13 @@ extern "C" __declspec(dllexport) AddonDefinition* GetAddonDef() {
|
|||
def.Signature = -424248;
|
||||
def.APIVersion = NEXUS_API_VERSION;
|
||||
def.Name = "GolemHelper";
|
||||
def.Version = { 1, 7, 0, 0 };
|
||||
def.Version = { 1, 7, 1, 0 };
|
||||
def.Author = "Azrub";
|
||||
def.Description = "Automates the process of setting optimal boon and golem configurations in the training area";
|
||||
def.Load = Load;
|
||||
def.Unload = Unload;
|
||||
def.Flags = EAddonFlags_None;
|
||||
def.Provider = EUpdateProvider_GitHub;
|
||||
def.UpdateLink = "https://github.com/Azrub/GolemHelper";
|
||||
def.Provider = EUpdateProvider_Direct;
|
||||
def.UpdateLink = "https://git.azrub.dev/Azrub/GolemHelper/releases/download/latest/GolemHelper.dll";
|
||||
return &def;
|
||||
}
|
||||
|
|
@ -20,7 +20,7 @@ void UIManager::RenderUI() {
|
|||
|
||||
if (ImGui::Begin("GolemHelper", &g_state.showUI, ImGuiWindowFlags_AlwaysAutoResize)) {
|
||||
|
||||
ImGui::TextColored(ImVec4(0.2f, 0.8f, 1.0f, 1.0f), "GolemHelper v1.7.0.0");
|
||||
ImGui::TextColored(ImVec4(0.2f, 0.8f, 1.0f, 1.0f), "GolemHelper v1.7.1.0");
|
||||
ImGui::Separator();
|
||||
|
||||
if (ImGui::BeginTabBar("GolemHelperTabs", ImGuiTabBarFlags_None)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue