-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Losslessly optimize PNG files #145596
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Losslessly optimize PNG files #145596
Conversation
r? @davidtwco rustbot has assigned @davidtwco. Use |
rust-analyzer is developed in its own repository. If possible, consider making this change to rust-lang/rust-analyzer instead. cc @rust-lang/rust-analyzer The rustc-dev-guide subtree was changed. If this PR only touches the dev guide consider submitting a PR directly to rust-lang/rustc-dev-guide otherwise thank you for updating the dev guide with your changes. cc @BoxyUwU, @jieyouxu, @Kobzol, @tshepang Some changes occurred in HTML/CSS/JS. |
Whoops, two warnings that I should make parts of the commit elsewhere... Should I split this? |
I think yes. After all, this change doesn't have to be simultaneous in all of the components, so I guess it's safe to split it (and seemignly preferable, judging by rusbot's message). Note: I'm not affiliated with rustc-dev-guide or rust-analyzer. |
Alright, will split it shortly... |
am ok with not splitting the commits, but am not the one that can approve the pr here |
Done! Sorry for the hesitation. |
I don't think you've split the commit correctly, there is now just a second commit that undoes some of the changes of the first, rather than a single commit that does fewer changes |
Losslessly optimizes all of the PNG files in the repo. Done with: ``` oxipng -o max -a -s oxipng -o max --zopfli -a -s ```
60d8881
to
70e7c05
Compare
Squashed those two, should be fine now. |
@bors r+ rollup |
Rollup of 11 pull requests Successful merges: - #144373 (remove deprecated Error::description in impls) - #144551 (Add aarch64_be-unknown-linux-musl target) - #145076 (Add new Tier-3 target: riscv64a23-unknown-linux-gnu) - #145481 (Add parentheses for closure when suggesting calling closure) - #145596 (Losslessly optimize PNG files) - #145615 (Fix doc of `std::os::windows::io::BorrowedSocket::borrow_raw`) - #145841 (Always build miri for the host in `x run miri`) - #145861 (bootstrap: vendor `clippy_test_deps` too) - #145863 (formatting_options: Make all methods `const`) - #145867 (cg_llvm: Assert that LLVM range-attribute values don't exceed 128 bits) - #145875 (Make bootstrap command caching opt-in) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of #145596 - lumiscosity:optimize-png-files, r=davidtwco Losslessly optimize PNG files Losslessly optimizes all of the PNG files in the repo. Done with: ``` oxipng -o max -a -s oxipng -o max --zopfli -a -s ```
Losslessly optimizes all of the PNG files in the repo. Done with: