Thread overview
Rename sloppy "Install .exe"
Sep 04, 2018
Tourist
Sep 06, 2018
0xEAB
Sep 06, 2018
Bauss
Sep 06, 2018
Mike Parker
Sep 06, 2018
Mike Parker
Sep 06, 2018
bauss
September 04, 2018
The "Install .exe" on the main page looks sloppy to me. My brain wants to read it as "Install.exe" and wonders why there's a space before the dot. What the author actually meant is probably "Installation executable".

That's "The Button" on the main D page, so I suggest we use a better title. How about "Download for Windows"? https://i.imgur.com/T5jdh7J.png
September 06, 2018
On Tuesday, 4 September 2018 at 16:59:38 UTC, Tourist wrote:
> The "Install .exe" on the main page looks sloppy to me. My brain wants to read it as "Install.exe" and wonders why there's a space before the dot.


Well, if one visits the site sending a GNU/Linux user-agent, there will be those two buttons instead:

 - Install .deb
 - Install .rpm

And that's why it shows "Install .exe" on for Windows users.
September 06, 2018
On Thursday, 6 September 2018 at 01:25:51 UTC, 0xEAB wrote:
> On Tuesday, 4 September 2018 at 16:59:38 UTC, Tourist wrote:
>> The "Install .exe" on the main page looks sloppy to me. My brain wants to read it as "Install.exe" and wonders why there's a space before the dot.
>
>
> Well, if one visits the site sending a GNU/Linux user-agent, there will be those two buttons instead:
>
>  - Install .deb
>  - Install .rpm
>
> And that's why it shows "Install .exe" on for Windows users.

Still better as Installation Executable or at the very least no space.
September 06, 2018
On Thursday, 6 September 2018 at 05:07:16 UTC, Bauss wrote:
> On Thursday, 6 September 2018 at 01:25:51 UTC, 0xEAB wrote:
>> On Tuesday, 4 September 2018 at 16:59:38 UTC, Tourist wrote:
>>> The "Install .exe" on the main page looks sloppy to me. My brain wants to read it as "Install.exe" and wonders why there's a space before the dot.
>>
>>
>> Well, if one visits the site sending a GNU/Linux user-agent, there will be those two buttons instead:
>>
>>  - Install .deb
>>  - Install .rpm
>>
>> And that's why it shows "Install .exe" on for Windows users.
>
> Still better as Installation Executable or at the very least no space.

I did a quick dig through Chrome Dev Tools and found the button text is generated in a javascript file. Easy enough to change:

https://github.com/dlang/dlang.org/pull/2464

I'll check back on it later when the tests have finished to make sure it rendered properly.
September 06, 2018
On Thursday, 6 September 2018 at 05:47:56 UTC, Mike Parker wrote:

> I'll check back on it later when the tests have finished to make sure it rendered properly.

And I just realized it won't render properly because I overlooked one line. Bah.
September 06, 2018
On Thursday, 6 September 2018 at 05:50:15 UTC, Mike Parker wrote:
> On Thursday, 6 September 2018 at 05:47:56 UTC, Mike Parker wrote:
>
>> I'll check back on it later when the tests have finished to make sure it rendered properly.
>
> And I just realized it won't render properly because I overlooked one line. Bah.

Your solution was so much better than anything suggested here!