ninja package_zip
would create a zipcmake --build . --config Release --target package_default
?
all the time
If nobody answers your question it might simply suck and the problem is you..
Also you pushed it after like 1h early in the morning.
Now back to your question. Most stuff ddnet does is here:
https://github.com/ddnet/ddnet-scripts2023-09-02 11:43:30 I game/png: image had unsupported image format. filename='countryflags/MW.png'
2023-09-02 11:43:30 I game/png: image had unsupported image format. filename='countryflags/MQ.png'
Those flags were last changed by #7114.data/editor
folder.
Note that this also converts the Windows line endings in some files to Unix line endings. Add the GET parameter w=1
to the URL to see the diff without considering whitespace changes.
git add -p
is top50 most underrated git commandsgit add -p
)[alias]
lg1 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(auto)%d%C(reset)' --all
lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(auto)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)'
lg = lg1
#[allow(clippy::cast_precision_loss)]
fn color_code_base(col: u32, alpha: bool) -> HSLAColor {
let a = if alpha {
((col >> 24) & 0xFF) as f32 / 255.0f32
} else {
1.0f32
};
let x = ((col >> 16) & 0xFF) as f32 / 255.0f32;
let y = ((col >> 8) & 0xFF) as f32 / 255.0f32;
let z = (col & 0xFF) as f32 / 255.0f32;
HSLAColor { x, y, z, a }
}
16bc489
Move editor automap .rules
files to separate subfolder - Robyt3
ead33ba
Add debug messages for all error cases in LoadPNG
- Robyt3
872d6c9
Move variable declarations closer to usage/definition - Robyt3
ab6262d
Use nullptr
instead of NULL
- Robyt3
533d401
Remove setting default zoom after leaving multiview - Vy0x2
3ef4bf8
Merge pull request #7122 from Robyt3/Editor-Automap-Files-Subfolder - def-
a17798a
Merge pull request #7123 from Robyt3/ImageLoader-Refactoring - def-
3ff7997
Merge pull request #7125 from Vy0x2/pr-fix-mv-default-zoom - def-