Skip to content

Commit 6b22592

Browse files
authored
Preparing new logo for Rector 2.0 πŸ™Š (#2716)
* push 2024-12-04 version * test new logo
1 parent 32eda5e commit 6b22592

9 files changed

Lines changed: 5 additions & 6 deletions

File tree

β€Ž.meta/oss-pledge.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Rector",
33
"description": "Rector is a PHP tool that you can run on any PHP project to get an instant upgrade or automated refactoring. It gives you safety and lightning speed, and helps you with PHP upgrades, framework upgrades, and improving your code quality. Rector is alive thanks to Open Source projects and the developers behind those projects.",
4-
"urlSquareLogoWithBackground": "https://raw.githubusercontent.com/rectorphp/getrector-com/main/public/assets/images/new-logo/rector-square.svg",
4+
"urlSquareLogoWithBackground": "https://raw.githubusercontent.com/rectorphp/getrector-com/main/public/assets/images/new-logo/rector-square.png",
55
"urlLearnMore": "http://getrector.com/blog/rector-is-joining-open-source-pledge",
66
"annualReports": [
77
{
File renamed without changes.
File renamed without changes.
23.9 KB
Loading
103 KB
Loading
105 KB
Loading

β€Žresources/views/_snippets/menu.blade.phpβ€Ž

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@
99

1010
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
1111
<ul class="navbar-nav me-auto text-start text-md-center">
12-
<li class="nav-item me-0 me-md-5 mb-3 mb-md-0" id="top_right_logo">
13-
<a href="{{ action(\App\Controller\HomepageController::class) }}">
14-
<img src="/assets/images/logo/rector-white.svg" alt="">
12+
<li class="nav-item me-0 me-md-3 mb-1 mb-md-0" id="top_right_logo"><a href="{{ action(\App\Controller\HomepageController::class) }}">
13+
<img src="/assets/images/new-logo/rector-with-name-white.png" alt="">
1514
</a>
1615
</li>
1716

β€Žsrc/Enum/Design.phpβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ final class Design
1717
/**
1818
* @var string
1919
*/
20-
public const SOCIAL_RECTOR_LOGO = 'https://getrector.com/assets/images/logo/rector/rector-no_frame_vector_for_circles.png';
20+
public const SOCIAL_RECTOR_LOGO = 'https://getrector.com/assets/images/new-logo/rector-square.png';
2121
}

β€Žsrc/Thumbnail/ThumbnailGenerator.phpβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function createFont(string $fontFilePath, string $color, int $fontSize):
3838

3939
public function addRectorLogo(ImageInterface $image): void
4040
{
41-
$rectorLogoImage = $this->imagine->open(__DIR__ . '/../../public/assets/images/logo/rector.png');
41+
$rectorLogoImage = $this->imagine->open(__DIR__ . '/../../public/assets/images/new-logo/rector-square.png');
4242
$rectorLogoImage->resize(new Box(716 * .75, 175 * .75));
4343

4444
$image->paste($rectorLogoImage, new Point(1400, 100));

0 commit comments

Comments
Β (0)