Skip to content

Commit

Permalink
Mythic v0.4.5 | "Silver Chariot"
Browse files Browse the repository at this point in the history
  • Loading branch information
vapidinfinity committed Jan 31, 2025
1 parent badde14 commit 1a6faea
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Mythic.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@
);
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/Mythic/legendary/_internal";
MACOSX_DEPLOYMENT_TARGET = 14.0;
MARKETING_VERSION = "0.4.4-dirty";
MARKETING_VERSION = "0.4.5-dirty";
PRODUCT_BUNDLE_IDENTIFIER = xyz.blackxfiied.Mythic;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -885,7 +885,7 @@
);
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/Mythic/legendary/_internal";
MACOSX_DEPLOYMENT_TARGET = 14.0;
MARKETING_VERSION = 0.4.4;
MARKETING_VERSION = 0.4.5;
PRODUCT_BUNDLE_IDENTIFIER = xyz.blackxfiied.Mythic;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
45 changes: 45 additions & 0 deletions Mythic/WhatsNewCollection.swift
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,51 @@ extension MythicApp: WhatsNewCollectionProvider {
action: .openURL(.init(string: "https://github.com/MythicApp/Mythic/releases/tag/v0.4.4"))
)
)

WhatsNew(
version: "0.4.5",
title: "What's new in Mythic",
features: [
.init(
image: .init(
systemName: "ladybug",
foregroundColor: .red
),
title: "Bug Fixes & Performance Improvements",
subtitle: "Back to just the usual. 🙏🏾"
),
.init(
image: .init(
systemName: "person.badge.shield.exclamationmark",
foregroundColor: .orange
),
title: "Added fallback signin view support",
subtitle: "Users can now sign into Epic Games accounts through third parties by using the fallback signin view."
),
.init(
image: .init(
systemName: "progress.indicator",
foregroundColor: .purple
),
title: "Immediate game library population",
subtitle: "Mythic's game library will now immediately populate upon signing in."
),
.init(
image: .init(image: {
Image("HarmonyIcon")
.resizable()
.scaledToFit()
}),
title: "Stay tuned! 👀",
subtitle: "Something's coming to Mythic."
)
],
primaryAction: .init(),
secondaryAction: .init(
title: "Learn more",
action: .openURL(.init(string: "https://github.com/MythicApp/Mythic/releases/tag/v0.4.5"))
)
)
}
}

Expand Down

0 comments on commit 1a6faea

Please sign in to comment.