Skip to content

Commit

Permalink
Preparations for 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tobspr committed Jun 4, 2021
1 parent 291614c commit a4b122a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
This is the source code for shapez.io, an open source base building game inspired by Factorio.
Your goal is to produce shapes by cutting, rotating, merging and painting parts of shapes.

- [Trello Board & Roadmap](https://trello.com/b/ISQncpJP/shapezio)
- [Free web version](https://shapez.io)
- [itch.io Page](https://tobspr.itch.io/shapezio)
- [Steam Page](https://steam.shapez.io)
- [Official Discord](https://discord.com/invite/HN7EVzV) <- _Highly recommended to join!_
- [Trello Board & Roadmap](https://trello.com/b/ISQncpJP/shapezio)
- [itch.io Page](https://tobspr.itch.io/shapezio)
- [Free web version](https://shapez.io)

## Reporting issues, suggestions, feedback, bugs

Expand All @@ -35,9 +35,9 @@ Your goal is to produce shapes by cutting, rotating, merging and painting parts

You can use [Gitpod](https://www.gitpod.io/) (an Online Open Source VS Code-like IDE which is free for Open Source) for working on issues and making PRs to this project. With a single click it will start a workspace and automatically:

- clone the `shapez.io` repo.
- install all of the dependencies.
- start `gulp` in `gulp/` directory.
- clone the `shapez.io` repo.
- install all of the dependencies.
- start `gulp` in `gulp/` directory.

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/from-referrer/)

Expand Down
4 changes: 4 additions & 0 deletions src/css/states/main_menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,13 @@

@include S(grid-column-gap, 10px);
display: grid;

&[data-columns="1"] {
grid-template-columns: 1fr;
}
&[data-columns="2"] {
grid-template-columns: 1fr 1fr;
}

.standaloneBanner {
background: rgb(255, 75, 84);
Expand Down
6 changes: 3 additions & 3 deletions src/js/changelog.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
export const CHANGELOG = [
{
version: "1.4.0",
date: "27.05.2021",
date: "04.06.2021",
entries: [
"Belts in blueprints should now always paste correctly",
"You can now clear belts by selecting them, and then pressing 'B'",
"Preparations for the puzzle dlc!",
"You can now clear belts by selecting them and then pressing 'B'",
"Preparations for the <a href='https://store.steampowered.com/app/1625400/shapezio__Puzzle_DLC/' target='_blank'>Puzzle DLC</a>, coming June 22nd!",
],
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/js/states/main_menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export class MainMenuState extends GameState {
</div>
${
!G_WEGAME_VERSION && ((G_IS_STANDALONE && puzzleDlc) || G_IS_DEV)
!G_WEGAME_VERSION && G_IS_STANDALONE && puzzleDlc
? `
<div class="puzzleContainer">
<img class="dlcLogo" src="${cachebust(
Expand Down

0 comments on commit a4b122a

Please sign in to comment.