Skip to content

Commit

Permalink
Added a coming soon label and updated the changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
SMJSGaming committed Jun 22, 2024
1 parent 89c2c83 commit cd52290
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
# GDIntercept Changelog

## v0.1.2-alpha.3 (2024-06-20) - Bugfix Update
## v0.2.0-alpha2 (2024-06-22) - Optimizations, QOL and Redesign

- Added a direct link to the Geode settings menu
- Fixed a ton of issues
- Optimized the JSON parser
- Made theme selecting easier
- Added an option to log requests

## v0.1.2-alpha.1 (2024-06-20) - Bugfix Update

- Fixed some bugs with the parsing of the response data
- Fixed some UI bugs
- Added better MacOS support

## v0.1.1-alpha.2 (2024-06-20) - Compatibility Update
## v0.1.1-alpha.1 (2024-06-20) - Compatibility Update

- Made the mod compatible with other mods on the menu layer
- Added MacOS support
Expand Down
5 changes: 4 additions & 1 deletion src/scenes/InterceptPopup.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#include "InterceptPopup.hpp"
#include "Geode/cocos/touch_dispatcher/CCTouchDispatcher.h"

float InterceptPopup::uiWidth = 500;

Expand Down Expand Up @@ -105,9 +104,13 @@ BorderFix* InterceptPopup::setupSettings() {
const float width = InterceptPopup::uiWidth - xPosition - InterceptPopup::uiPadding;
CCScale9Sprite* settingsBg = CCScale9Sprite::create("square02b_001.png");
BorderFix* settings = BorderFix::create(settingsBg, LIGHTER_BROWN_4B, { width, InterceptPopup::infoRowHeight }, padding);
CCLabelBMFont* settingsLabel = CCLabelBMFont::create("Coming Soon...", "bigFont.fnt");

settingsLabel->setScale(0.5f);
settingsLabel->setPosition(settingsBg->getContentSize() / 2);
settings->setPosition({ xPosition, this->getComponentYPosition(0, InterceptPopup::infoRowHeight) });
settingsBg->setColor(LIGHT_BROWN_3B);
settingsBg->addChild(settingsLabel);
m_mainLayer->addChild(settings);

return settings;
Expand Down

0 comments on commit cd52290

Please sign in to comment.