Skip to content

Commit 4f9224d

Browse files
committed
tweak linked proj lazysprite
1 parent 92a1200 commit 4f9224d

4 files changed

Lines changed: 16 additions & 10 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ else()
99
set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64")
1010
endif()
1111

12-
project(AvalancheIndex VERSION 1.2.0)
12+
project(AvalancheIndex VERSION 1.2.1)
1313

1414
file(GLOB_RECURSE SOURCES
1515
src/*.cpp

changelog.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### v1.1.2
2+
##### Patches
3+
4+
#### Changes
5+
- **Tweaked** linked project container in Team Project information pop-up
6+
7+
###### Latest
8+
---
9+
###### Older
10+
111
## v1.2.0
212
#### Team Project pop-up
313

@@ -10,10 +20,6 @@
1020
#### Developers
1121
- **Updated** URLs to use Cubic Studios API endpoints for all web requests
1222

13-
###### Latest
14-
---
15-
###### Older
16-
1723
### v1.1.2
1824
##### Patches
1925

mod.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"id": "cubicstudios.avalancheindex",
1010
"name": "Avalanche Index",
11-
"version": "1.2.0",
11+
"version": "1.2.1",
1212
"developers": [
1313
"Cheeseworks"
1414
],
@@ -18,7 +18,7 @@
1818
"enhancement"
1919
],
2020
"links": {
21-
"source": "https://www.github.com/CubicCommunity/AvalancheIndex/",
21+
"source": "https://github.com/CubicCommunity/AvalancheIndex",
2222
"homepage": "https://avalanche.cubicstudios.xyz/",
2323
"community": "https://www.dsc.gg/cubic"
2424
},

src/headers/src/ProjectInfoPopup.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -699,8 +699,8 @@ ProjectInfoPopup* ProjectInfoPopup::setProject(GJGameLevel* level) {
699699

700700
linkedProjThumb->setPosition(linkedProjClippingNode->getPosition());
701701
linkedProjThumb->ignoreAnchorPointForPosition(false);
702-
linkedProjThumb->setColor({ 250, 250, 250 });
703-
linkedProjThumb->setOpacity(250);
702+
linkedProjThumb->setColor({ 175, 175, 175 });
703+
linkedProjThumb->setOpacity(175);
704704
} else {
705705
AVAL_LOG_ERROR("Failed to load linked project thumbnail: {}", res.unwrapErr());
706706
linkedProjThumb->removeMeAndCleanup();
@@ -749,7 +749,7 @@ ProjectInfoPopup* ProjectInfoPopup::setProject(GJGameLevel* level) {
749749
auto linkedProjLabel = CCLabelBMFont::create("Play Now!", "bigFont.fnt");
750750
linkedProjLabel->setID("label");
751751
linkedProjLabel->setAlignment(CCTextAlignment::kCCTextAlignmentCenter);
752-
linkedProjLabel->setPosition({ linkedProjMenu->getScaledContentWidth() / 2.f, linkedProjMenu->getScaledContentHeight() - 10.f });
752+
linkedProjLabel->setPosition({ linkedProjMenu->getScaledContentWidth() / 2.f, linkedProjMenu->getScaledContentHeight() - 12.5f });
753753
linkedProjLabel->setScale(0.25f);
754754

755755
linkedProjMenu->addChild(linkedProjLabel);

0 commit comments

Comments
 (0)