-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/announcement' into develop
- Loading branch information
Showing
13 changed files
with
246 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
import React from 'react'; | ||
import './styles/Announcement.css'; | ||
|
||
function Announcement() { | ||
return ( | ||
<> | ||
<h1>{`New release: v1.2.0`}</h1> | ||
|
||
<h2>New Features</h2> | ||
<div> | ||
Thanks to a partnership with{' '} | ||
<a href="https://rok.guide" target="_blank" rel="noopener noreferrer"> | ||
rok.guide | ||
</a> | ||
, each commander now has a guide. Clicking on the guide icon next to the | ||
commander name now takes you to the guide for that commander: | ||
</div> | ||
<img | ||
src={`${process.env.PUBLIC_URL}/screenshots/guide.png`} | ||
className="announce-img" | ||
alt="guide" | ||
></img> | ||
|
||
<hr className="announce-hr" /> | ||
|
||
<div> | ||
You can now embed talent builds directly into other websites. If you run | ||
your own website or blog, your talent build can be directly embedded | ||
into your site using an iframe. | ||
<br /> | ||
<br /> | ||
The embedded talent build will be view-only (i.e. talent points cannot | ||
be changed). You can find the embed code in the Share menu: | ||
</div> | ||
<img | ||
src={`${process.env.PUBLIC_URL}/screenshots/embed.png`} | ||
className="announce-img" | ||
alt="guide" | ||
></img> | ||
|
||
<h2>Other Changes</h2> | ||
<ul> | ||
<li>Added Cleopatra to the commander list</li> | ||
<li>Added a share button for Weibo</li> | ||
<li>Removed the commander background image from the info panel</li> | ||
</ul> | ||
|
||
<h2>Bug Fixes</h2> | ||
<ul> | ||
<li>Fixed resolution of images and site logo</li> | ||
</ul> | ||
</> | ||
); | ||
} | ||
|
||
export default Announcement; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.announce-img { | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
margin-top: 10px; | ||
margin-bottom: 15px; | ||
border: 1px solid rgba(0, 0, 0, 1); | ||
} | ||
|
||
.announce-hr { | ||
width: 90%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.