@JakobDev
Copy link
Contributor

They more I think about the new tag, the more some cases become a problem. Here are a few things:

The documentation says, that always in a recommends tag means, that the App can run without Internet, but with a degraded experience. But what does that mean? Let's take a look at 2 examples:

  1. A Browser. It can be used to open local Files like saved Websites, PDF or other stuff. So it can be used offline for that case. But most people will use it the open Websites, which is the reason why Browsers exists and needs Internet. So is this just a degraded experience or need always be put in requires?
  2. A App that allows to open files on the Internet and allow things like installing Plugins from the Internet. Is this already a degraded experience?

The documentation has this example:

<!-- the software explicitly supports running offline (but may also be able to use online features) -->
<supports>
  <internet>offline-only</internet>
</supports>

So it can be run offline, but has some online features. But the documentation also contains this example:

<!-- can work without the internet, but with a degraded experience -->
<recommends>
  <internet>always</internet>
</recommends>

Both say technically that the App can run without Internet, but a few features are missing. So what's the exactly difference?

While talking about offline-only: According to the documentation, it means in a supports tag, as learned above, that you can the App without Internet, but some Features are not working. When you put it in a requires tag, it means that the App has no only Features at all. But what does it mean when you put it in a recommends tag?

Last but not least: What does it mean, when you put always or first-run in a supports tag?

Sorry that I came with this after release I just thought about this now.