mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-02-20 20:41:08 +01:00
builds: misc
This commit is contained in:
parent
40f9aa017c
commit
6a1486ece7
6
.github/changelog.py
vendored
6
.github/changelog.py
vendored
@ -1,6 +1,6 @@
|
||||
# generates changelog
|
||||
# NOTE: this is just a quick fix, feel free to handle releases more cleanly
|
||||
import subprocess, urllib.request, json
|
||||
import subprocess, urllib.request, json, datetime
|
||||
|
||||
USE_GIT = True
|
||||
GIT_MAX_MERGES = 10 #maybe should use max date
|
||||
@ -131,8 +131,10 @@ def write(lines):
|
||||
f.write('\n'.join(lines))
|
||||
|
||||
def get_lines():
|
||||
curr_date = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
||||
lines = [
|
||||
'### CHANGELOG (latest changes)',
|
||||
'### CHANGELOG',
|
||||
'(latest main changes on %s, skips smaller commits)' % (curr_date),
|
||||
'',
|
||||
]
|
||||
try:
|
||||
|
5
.gitignore
vendored
5
.gitignore
vendored
@ -77,4 +77,7 @@ cmake_install.cmake
|
||||
|
||||
#doc build
|
||||
doc/INFO.md
|
||||
doc/_build
|
||||
doc/_build
|
||||
|
||||
changelog.txt
|
||||
__pycache__
|
Loading…
x
Reference in New Issue
Block a user