mirror of
https://github.com/godotengine/godot-interactive-changelog.git
synced 2025-12-31 01:49:28 +03:00
Add config and data for 4.1-dev4
This commit is contained in:
@@ -379,18 +379,18 @@ class DataProcessor {
|
||||
}
|
||||
|
||||
consumeOldLog() {
|
||||
this.log = this.oldData.log;
|
||||
this.releaseLogs = this.oldData.releaseLogs;
|
||||
this.commits = this.oldData.commits;
|
||||
this.log = this.oldData.log || [];
|
||||
this.releaseLogs = this.oldData.releaseLogs || {};
|
||||
this.commits = this.oldData.commits || {};
|
||||
}
|
||||
|
||||
consumeOldCommits() {
|
||||
this.authors = this.oldData.authors;
|
||||
this.pulls = this.oldData.pulls;
|
||||
this.authors = this.oldData.authors || {};
|
||||
this.pulls = this.oldData.pulls || {};
|
||||
}
|
||||
|
||||
_getCommitObject(commitHash) {
|
||||
if (typeof this.oldData.commits[commitHash] !== "undefined") {
|
||||
if (typeof this.oldData.commits !== "undefined" && typeof this.oldData.commits[commitHash] !== "undefined") {
|
||||
return this.oldData.commits[commitHash];
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "4.1",
|
||||
"git_tag": "master",
|
||||
"ref": "a67d37f7cffe7f31c68e971280950d487ea99e2c",
|
||||
"ref": "5c2295ff538312884115c2b7a3aec1e301b8b954",
|
||||
"from_ref": "4.0-stable",
|
||||
"article": "",
|
||||
|
||||
@@ -23,6 +23,12 @@
|
||||
"ref": "a67d37f7cffe7f31c68e971280950d487ea99e2c",
|
||||
"from_ref": "668cf3c66f42989949399f36e9faa29426e37416",
|
||||
"article": "https://godotengine.org/article/dev-snapshot-godot-4-1-dev-3/"
|
||||
},
|
||||
{
|
||||
"name": "dev4",
|
||||
"ref": "5c2295ff538312884115c2b7a3aec1e301b8b954",
|
||||
"from_ref": "a67d37f7cffe7f31c68e971280950d487ea99e2c",
|
||||
"article": "https://godotengine.org/article/dev-snapshot-godot-4-1-dev-4/"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user