Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)

This is a pretty neat idea - thanks for sharing how you do this.

A little extra thing you can do to make the project feel more blog-like is to change the “Development log” heading on the project page to something like “Blog posts”. It requires some custom CSS, so assuming you have that enabled for your account, you can add this to your project’s CSS:

#devlog h2 {
  visibility: hidden;
}
#devlog h2:before {
  content: "Blog posts";
  visibility: visible;
}
(+1)

Someday we are gonna have the time and energy to do stuff like this and when that day comes? Thanks, friend!