Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

How to get your game running in the itch app Sticky

A topic by Amos created Dec 17, 2015 Views: 18,417 Replies: 49
Viewing posts 7 to 26 of 29 · Next page · Previous page · First page · Last page

My game has separate packages for 32-bit and 64-bit Linux distributions. Currently Itch app always installs the 32-bit version, even on 64-bit Linux.

Does the Itch app simply install the first Linux package it sees or is there some logic to determine the correct one?

There is no special 32/64-bit logic for now, I opted against adding heuristics for that and rather, wait for backend support instead to properly tag builds.

(+1)

I made a package for Linux according to itch guidelines, i.e. two versions of executable (x64, x86) and a `launch` bash script which selects a version and sets appropriate LD_LIBRARY_PATH and things. However it's not easy for some users to run it: the problem is that they don't use itch app, they download & unpack .zip manually, and they don't or cannot use command line. So they cannot run the script in Ubuntu: double click just opens it in text editor, despite that it has executable permission. And I don't even see any way to run a bash script in Ubuntu's graphical shell, without touching command line. There's no 'run' context menu command or something like this. I don't want to force users to use command line, what else I can do? :)

Yep, that's the way most Linux distributions behave and it's been annoying third-party developers for years now :(

The only option that I know of is to provide a .desktop file, which will appear as a shortcut and is double-clickable to launch the game. Absolute/relative paths may be an issue there though :(

(1 edit)

Thanks for reminding me about .desktop files! Indeed relative paths seem to be not working at all, but there's a workaround (thanks to this SO answer), use %k in Exec line of .desktop file to get path to .desktop file itself, and than extract directory name:

Exec=bash -c "$(dirname %k)/launch"

.desktop file is also better than bare bash script because it may be displayed with custom icon, and even localized name.

UPDATE about icon: looks like relative-path icon is not possible. This time really :(

(1 edit)

I have a simple prototype game using luxe engine, html export (https://jonathanhirz.itch.io/prototype-top-down-sh...) that won't launch in the itch app. It says WebGL is required to run. Game runs fine in Safari (I'm on macOS 10.12.1), so it looks like the browser the app uses doesn't have WebGL yet? Any ideas on how to fix this?


//edit - I realized this is because WebGL doesn't work on Chrome on my computer, and I think the itch app uses Chrome somehow. I guess it's up to the end user to get WebGL working on their computer then?

(+1)

That's right, the itch app uses the same engine as Chrome/Chromium - which is usually pretty good at getting WebGL running, at least on Windows/macOS, I'm surprised it doesn't seem to work with your system, maybe it's a bug on their end?

We keep in sync with Electron, which keeps in sync with Chromium, regularly, so if it gets fixed upstream, itch will get the fix as well!

how can i open a file game

I have a WebGL game made with Unity that run on a Chrome browser - but not on itch.io app.

Can you post a link to your game?

https://epiplon.itch.io/resume?secret=6D8buWk1xiK7...

(+1)

Is the issue that it doesn't install? Games in draft are not yet supported by the itch app, see https://github.com/itchio/itch/issues/1080 - the problem will go away as soon as you publish the game.

(+1)

Actually, I didn't bothered hitting the install button. Since it's a WebGL game, I thought that it would run on the app in the same fashion as the browser by displaying a rectangle with the game. =P

Now that the game is installed, it's working normally.

How do I select more than one file for download on the app?

Currently I have a demo and full price version (in draft). The app gives me a choice but it doesn't allow me to select both and / or I don't know how to select both. Then after installing the one there is no way I can get back to a place where I can select the other again - I have to uninstall whichever one I chose to be given the choice again.

Since my demo is different to my main game I foresee people will want both - the demo is a 1 hour game in itself. And I want to tell them how to do that in my download instructions, but I can't figure out if that's possible or how to do that myself. Is it possible?

Deleted 7 years ago
(+1)

I guess that you will have to speak to the dev and it's not an issue on the platform app.

(1 edit)

how do i do that?

(1 edit)

Hi. It seems .exe files which require admin rights dont work. I always get an error when I try to launch it (reported on github already a while ago for app "Antares"). Is it possible to change/fix this? Other .exe files work fine, it seems its the admin thing (exe has a shield icon). :-/

https://github.com/itchio/itch...

(+1)

I replied on the github issue directly.

Thanks! :)

Thanks!!!

(1 edit)

I have the .exe and dll and data files zip up into a folder and uploaded it and it still says that there is nothing available for download but the download will work for the app. Is there something I am missing?

Joseph, that's probably why :)

Question:

Our latest game, built in Clickteam Fusion 2.5, is having trouble launching from the itch app. The setup file we're distributing is built with the in-engine Install Creator, which I guess isn't recognized by the itch app yet. Is there a way to make the itch app extract certain files contained in a ZIP to other directories, say, a subdirectory in AppData, or am I looking at changing my setup file into an InnoSetup executable?

ClickTeam's Install Creator is not supported (and won't be) because it doesn't allow silent installs.

I heavily recommend using butler to upload your game - the itch docs have everything you need to get started:

I have a WebGL games made with Unity that run on a Chrome browser - but not on itch.io app.

https://budlog.itch.io/dynamica-realtime

https://budlog.itch.io/dynamica

(+1)

It seems to work fine in the beta:

Can you confirm it does for you too?

You can download the beta here: https://fasterthanlime.itch.io/install-kitch

Thanks. It is working fine with beta.

Hi! Is it possible to add already downloaded games to the app? If it is, how do I do it? 
I don't want to lose my progress in the games but having them automatically updated sounds great... :)

It's not possible at the moment.

You can try asking the dev where the save-games are and then download the game via the desktop application again and transfer your save games over, then uninstall the existing non-itch install.

(+1)

I ended up doing that in the end so everything is fine now. Thanks for your suggestion! ^^

Hello; I'd like to request that devs uploading games to itch be automatically linked to the QuickStart Guide so that they can support their games in the itch.io desktop application.  Having to poke each and every dev to do so is a bit troublesome on my end.

If it were me, I'd go so far as to making it mandatory (like how Steam makes compatibility with their client be mandatory for sale), however I understand itch likes to suggest rather than strong-arm so that's up to how admins wanna do it.

Viewing posts 7 to 26 of 29 · Next page · Previous page · First page · Last page