https://github.com/dalboris/vpaint
Revision 75d58893a86368c2e3eacdb09fb92bb50eba3ecc authored by Boris Dalstein on 14 November 2019, 22:10:34 UTC, committed by Boris Dalstein on 14 November 2019, 22:10:34 UTC
1 parent 966921c
Raw File
Tip revision: 75d58893a86368c2e3eacdb09fb92bb50eba3ecc authored by Boris Dalstein on 14 November 2019, 22:10:34 UTC
Fix blurry app on macOS retina screens
Tip revision: 75d5889
update_copyright.py
#!/usr/bin/env python3
#

from pathlib import Path

before = "Copyright (C) 2012-2019 The VPaint Developers"

after = "Copyright (C) 2012-2019 The VPaint Developers"

if __name__ == "__main__":

    path = Path(".")
    for file in path.glob("src/**/*"):
        if file.suffix in [".h", ".cpp", ".pro"]:
            s1 = file.read_text()
            s2 = s1.replace(before, after)
            if s1 != s2:
                file.write_text(s2)
                print(file)
back to top