Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit

Permalink
Now waiting for Godot 4.5
Browse files Browse the repository at this point in the history
Update waiting history and footer.
  • Loading branch information
Qubrick authored Mar 4, 2025
1 parent 98430dc commit 35f9216
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions script.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
# This is a script to generate a progress report for Waiting Boy
#
# Start Date 2021-10-5 but estimate 1 day
# My Waiting History: 4.3 for 259 days ( dev 21 days, beta 162 days, rc 55 days, stable 21 days
# My Waiting History: 4.4 for 200 days ( dev 11 days, beta 142 days, rc 38 days, stable 9 days)
# 4.3 for 259 days ( dev 21 days, beta 162 days, rc 55 days, stable 21 days)
# 4.2 for 147 days ( dev 13 days, beta 85 days, rc 36 days, stable 13 days)
# 4.1 for 128 days ( dev 52 days, beta 48 days, rc 19 days, stable 9 days)
# 4.0 for 512 days (dev 112 days, alpha 112 days, beta 234 days, rc 145 days, stable 21 days)
Expand All @@ -50,16 +51,18 @@
proposals_repo = 'godotengine/godot-proposals'
issues_repo = 'godotengine/godot'

count_day = (datetime.today().replace(hour=0, minute=0, second=0, microsecond=0) - datetime(2024, 8, 16)).days
count_day = (datetime.today().replace(hour=0, minute=0, second=0, microsecond=0) - datetime(2025, 3, 4)).days # Y/M/D

header = '**Day ' + str(count_day - 11 - 142) + '** :gdcute: \n'
header += '(' + str(count_day) + ' days from the beginning of 4.4)\n'
header += 'Waiting for **Godot 4.4 RC**\n'
header = '**Day ' + str(count_day) + '** :gdcute: \n'
# header += '(' + str(count_day) + ' days from the beginning of 4.5)\n'
header += 'Waiting for **Godot 4.5 dev**\n'
header += '\n__**What update on 4.x today ?**__\n'

footer = '\nFor daily merged pull requests, visit [Github Pulse](<https://github.com/godotengine/godot/pulse/daily>).\n'
# footer += 'For release blockers, visit [4.x Release Blockers](<https://github.com/orgs/godotengine/projects/61>).\n'
footer += 'My Waiting History: 4.4 (beta 142 days, dev 11 days), 4.3 (259 days), 4.2 (147 days), 4.1 (128 days), 4.0 (512 days)\n\nSincerely, ' + username + '.'
#footer += 'For release blockers, visit [4.x Release Blockers](<https://github.com/orgs/godotengine/projects/61>).\n'
footer += 'My Waiting History: 4.4 (200 days => stable 9 days, rc 38 days, beta 142 days, dev 11 days), 4.3 (259 days), 4.2 (147 days), 4.1 (128 days), 4.0 (512 days)\n'
footer += 'Source code is available [here](<https://github.com/Qubrick/WaitingReport>).\n'
footer += '\nSincerely, ' + username + '.'

MAX_ISSUES = 100
MAX_PAGES = 2
Expand Down

0 comments on commit 35f9216

Please sign in to comment.