Add configs and data for Godot 2.0

- Fix the "no changes" message being visible in a wrong context.
This commit is contained in:
Yuri Sizov
2023-03-24 16:32:21 +01:00
parent 344593e855
commit 7513823aaf
13 changed files with 105 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
{
"name": "2.0.1",
"ref": "2.0.1-stable",
"from_ref": "2.0-stable",
"article": "https://godotengine.org/article/updates-on-the-release-cycle-and-godot-2-0-1/",
"releases": [
{
"name": "stable",
"ref": "2.0.1-stable",
"from_ref": "2.0-stable",
"article": "https://godotengine.org/article/updates-on-the-release-cycle-and-godot-2-0-1/"
}
]
}

View File

@@ -0,0 +1,15 @@
{
"name": "2.0.2",
"ref": "2.0.2-stable",
"from_ref": "2.0.1-stable",
"article": "https://godotengine.org/article/maintenance-release-godot-2-0-2/",
"releases": [
{
"name": "stable",
"ref": "2.0.2-stable",
"from_ref": "2.0.1-stable",
"article": "https://godotengine.org/article/maintenance-release-godot-2-0-2/"
}
]
}

View File

@@ -0,0 +1,15 @@
{
"name": "2.0.3",
"ref": "2.0.3-stable",
"from_ref": "2.0.2-stable",
"article": "https://godotengine.org/article/maintenance-release-godot-2-0-3/",
"releases": [
{
"name": "stable",
"ref": "2.0.3-stable",
"from_ref": "2.0.2-stable",
"article": "https://godotengine.org/article/maintenance-release-godot-2-0-3/"
}
]
}

View File

@@ -0,0 +1,15 @@
{
"name": "2.0.4.1",
"ref": "2.0.4.1-stable",
"from_ref": "2.0.4-stable",
"article": "https://godotengine.org/article/maintenance-release-godot-2-0-4/",
"releases": [
{
"name": "stable",
"ref": "2.0.4.1-stable",
"from_ref": "2.0.4-stable",
"article": "https://godotengine.org/article/maintenance-release-godot-2-0-4/"
}
]
}

View File

@@ -0,0 +1,15 @@
{
"name": "2.0.4",
"ref": "2.0.4-stable",
"from_ref": "2.0.3-stable",
"article": "https://godotengine.org/article/maintenance-release-godot-2-0-4/",
"releases": [
{
"name": "stable",
"ref": "2.0.4-stable",
"from_ref": "2.0.3-stable",
"article": "https://godotengine.org/article/maintenance-release-godot-2-0-4/"
}
]
}

View File

@@ -0,0 +1,15 @@
{
"name": "2.0",
"ref": "2.0-stable",
"from_ref": "1.1-stable",
"article": "https://godotengine.org/article/godot-engine-reaches-2-0-stable/",
"releases": [
{
"name": "stable",
"ref": "2.0-stable",
"from_ref": "1.1-stable",
"article": "https://godotengine.org/article/godot-engine-reaches-2-0-stable/"
}
]
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -303,10 +303,18 @@ export default class ChangesList extends LitElement {
@modechange="${this._onModeChanged}"
></gr-changes-toolbar>
${(this._filtered_pulls.length === 0 ? html`
${(this._viewMode === "pulls" && this._filtered_pulls.length === 0 ? html`
<span class="version-changes-empty">This version contains no new changes.</span>
` : null)}
${(this._viewMode === "commits" && this._filtered_commits.length === 0 ? html`
<span class="version-changes-empty">This version contains no new commits.</span>
` : null)}
${(this._viewMode === "authors" && this._filtered_authors.length === 0 ? html`
<span class="version-changes-empty">This version contains no contributors.</span>
` : null)}
${this._viewMode === "pulls" ? this._filtered_pulls.map((item) => {
const pull = item.pull;
const cherrypick_pull = item.cherrypick_pull;