-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change: put the result of every version on its own page
- Loading branch information
Showing
36 changed files
with
361 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<div id="section-full"> | ||
<div class="section-header"> | ||
<h3>Survey Result Summary - {{ page.name }}</h3> | ||
</div> | ||
<div class="section-item"> | ||
<div class="content"> | ||
<p> | ||
Below is the summary of the survey results from {{ page.start_date }} to {{ page.end_date }} for {{ page.version }}. | ||
</p> | ||
|
||
<p> | ||
The following statistics are based on "seconds played". | ||
That is to say, if a setting was "true" for 100 seconds of play-time and "false" for 200 seconds of play-time, it would be 33% true and 66% false. | ||
This is to avoid biasing the results towards shorter games. | ||
<br /> | ||
Worded differently, the following statistics are not counting how often something was used, but how long it was used for. | ||
</p> | ||
|
||
<p> | ||
Be mindful that these numbers are only based on those people willing to send us survey results. | ||
It might not be representative of the entire OpenTTD player base. | ||
</p> | ||
|
||
<p> | ||
Entries listed as "(other)" are the collection of all values lower than 0.1% of the total. | ||
</p> | ||
|
||
{% assign versions = site.data.summaries[page.year][page.week] %} | ||
{% assign version = versions[page.version] %} | ||
{% assign seconds = version.summary.seconds | times: 1.0 %} | ||
|
||
<p> | ||
We received surveys for a total of <b>{{ version.summary.seconds | divided_by: 3600 | round: 2 }} hours</b> of games played, over a total of <b>{{ version.summary.ids }} games</b>. | ||
This is an average of {{ seconds | divided_by: version.summary.ids | divided_by: 3600 | round: 2 }} hours per game. | ||
</p> | ||
|
||
<table class="summary-table"> | ||
{% for summary in version %} | ||
{% if summary[0] == "summary" %}{% continue %}{% endif %} | ||
<tr id="{{ summary[0] }}" class="setting"> | ||
<th colspan="3"> | ||
<a href="#{{ summary[0] }}">{{ summary[0] }}</a> | ||
</th> | ||
</tr> | ||
{% for line in summary[1] %} | ||
{% assign percentage = line[1] | divided_by: seconds | percentage %} | ||
<tr> | ||
<td style="width: 40px;"></td> | ||
<td><pre>{{ line[0] }}</pre></td> | ||
{% if percentage == "0.0" %} | ||
<td style="text-align: right;"><0.1%</td> | ||
{% else %} | ||
<td style="text-align: right;">{{ percentage }}%</td> | ||
{% endif %} | ||
</tr> | ||
{% endfor %} | ||
{% endfor %} | ||
</table> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 01 - jgrpp-0.56.2 | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk01" | ||
version: "jgrpp-0.56.2" | ||
start_date: "2024-01-01" | ||
end_date: "2024-01-07" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 02 - jgrpp-0.56.2 | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk02" | ||
version: "jgrpp-0.56.2" | ||
start_date: "2024-01-08" | ||
end_date: "2024-01-14" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 03 - jgrpp-0.56.2 | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk03" | ||
version: "jgrpp-0.56.2" | ||
start_date: "2024-01-15" | ||
end_date: "2024-01-21" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 03 - vanilla-master | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk03" | ||
version: "vanilla-master" | ||
start_date: "2024-01-15" | ||
end_date: "2024-01-21" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 04 - jgrpp-0.56.2 | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk04" | ||
version: "jgrpp-0.56.2" | ||
start_date: "2024-01-22" | ||
end_date: "2024-01-28" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 04 - vanilla-master | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk04" | ||
version: "vanilla-master" | ||
start_date: "2024-01-22" | ||
end_date: "2024-01-28" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 05 - 14.0-beta1 | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk05" | ||
version: "14.0-beta1" | ||
start_date: "2024-01-29" | ||
end_date: "2024-02-04" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 05 - jgrpp-0.56.2 | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk05" | ||
version: "jgrpp-0.56.2" | ||
start_date: "2024-01-29" | ||
end_date: "2024-02-04" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 05 - vanilla-master | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk05" | ||
version: "vanilla-master" | ||
start_date: "2024-01-29" | ||
end_date: "2024-02-04" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 06 - 14.0-beta2 | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk06" | ||
version: "14.0-beta2" | ||
start_date: "2024-02-05" | ||
end_date: "2024-02-11" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 06 - 14.0-beta3 | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk06" | ||
version: "14.0-beta3" | ||
start_date: "2024-02-05" | ||
end_date: "2024-02-11" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 06 - jgrpp-0.56.2 | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk06" | ||
version: "jgrpp-0.56.2" | ||
start_date: "2024-02-05" | ||
end_date: "2024-02-11" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 06 - jgrpp-0.57.1 | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk06" | ||
version: "jgrpp-0.57.1" | ||
start_date: "2024-02-05" | ||
end_date: "2024-02-11" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 06 - vanilla-master | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk06" | ||
version: "vanilla-master" | ||
start_date: "2024-02-05" | ||
end_date: "2024-02-11" | ||
layout: "summary" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 2024 - Week 07 - 14.0-beta3 | ||
active_nav: summaries | ||
year: "2024" | ||
week: "wk07" | ||
version: "14.0-beta3" | ||
start_date: "2024-02-12" | ||
end_date: "2024-02-18" | ||
layout: "summary" | ||
--- |
Oops, something went wrong.