Thread overview
New forum view mode "narrow-index" is now available
Jun 30, 2022
Ahmet Sait
Jun 30, 2022
user1234
Jun 30, 2022
bauss
Jun 30, 2022
Ahmet Sait
Jun 30, 2022
bauss
Jun 30, 2022
bauss
Jun 30, 2022
Andrej Mitrovic
June 30, 2022

Hi everyone,
There is a new view mode you can check out under settings, designed to be more usable for narrow screens (such as smart phones).
This setting is stored client side as a cookie which means you can use it on your phone without affecting your desktop settings.

Please report any issues you might be having.

Feedback welcome!

June 30, 2022

On Thursday, 30 June 2022 at 07:09:36 UTC, Ahmet Sait wrote:

>

Hi everyone,
There is a new view mode you can check out under settings, designed to be more usable for narrow screens (such as smart phones).
This setting is stored client side as a cookie which means you can use it on your phone without affecting your desktop settings.

Please report any issues you might be having.

Feedback welcome!

Nice, I like it, even on a UHD monitor ;)

June 30, 2022

On Thursday, 30 June 2022 at 07:09:36 UTC, Ahmet Sait wrote:

>

Hi everyone,
There is a new view mode you can check out under settings, designed to be more usable for narrow screens (such as smart phones).
This setting is stored client side as a cookie which means you can use it on your phone without affecting your desktop settings.

Please report any issues you might be having.

Feedback welcome!

Is it possible to have it stored as local storage instead of a cookie?

June 30, 2022

On Thursday, 30 June 2022 at 08:15:05 UTC, bauss wrote:

>

Is it possible to have it stored as local storage instead of a cookie?

I'm not mainly a web dev but what I could gather from this page https://stackoverflow.com/questions/3220660/local-storage-vs-cookies it is accessible from client side JavaScript and not transmitted to the server by default, which is necessary for server to respond with the correct view mode HTML.

June 30, 2022

On Thursday, 30 June 2022 at 08:38:42 UTC, Ahmet Sait wrote:

>

On Thursday, 30 June 2022 at 08:15:05 UTC, bauss wrote:

>

Is it possible to have it stored as local storage instead of a cookie?

I'm not mainly a web dev but what I could gather from this page https://stackoverflow.com/questions/3220660/local-storage-vs-cookies it is accessible from client side JavaScript and not transmitted to the server by default, which is necessary for server to respond with the correct view mode HTML.

Oh, I thought it was just a value that the page reacted upon.

The reason why I think local storage would have been better is because some people might have cookies disabled etc. but local storage is generally always enabled.

June 30, 2022

On Thursday, 30 June 2022 at 09:59:36 UTC, bauss wrote:

>

On Thursday, 30 June 2022 at 08:38:42 UTC, Ahmet Sait wrote:

>

On Thursday, 30 June 2022 at 08:15:05 UTC, bauss wrote:

>

Is it possible to have it stored as local storage instead of a cookie?

I'm not mainly a web dev but what I could gather from this page https://stackoverflow.com/questions/3220660/local-storage-vs-cookies it is accessible from client side JavaScript and not transmitted to the server by default, which is necessary for server to respond with the correct view mode HTML.

Oh, I thought it was just a value that the page reacted upon.

The reason why I think local storage would have been better is because some people might have cookies disabled etc. but local storage is generally always enabled.

Cookies also expires and you may override the expiration put and it might be controlled by organizations etc.

Local storage does not expire.

June 30, 2022

On Thursday, 30 June 2022 at 07:09:36 UTC, Ahmet Sait wrote:

>

Feedback welcome!

Love it! Thank you to everyone involved~