Screenshot showing glyph clipping with the original 12px Small text-size setting in Strata PR #252.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git i/src/ui/preview/tests.rs w/src/ui/preview/tests.rs | |
| index 64c32d6..809bdf0 100644 | |
| --- i/src/ui/preview/tests.rs | |
| +++ w/src/ui/preview/tests.rs | |
| @@ -236,6 +236,77 @@ fn replacing_repeated_media_previews_finalizes_previous_widget_trees() { | |
| }); | |
| } | |
| +fn benchmark_rss_kib() -> u64 { | |
| + std::fs::read_to_string("/proc/self/status") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This file is automatically @generated by Cargo. | |
| # It is not intended for manual editing. | |
| version = 4 | |
| [[package]] | |
| name = "aho-corasick" | |
| version = "1.1.5" | |
| source = "registry+https://github.com/rust-lang/crates.io-index" | |
| checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba" | |
| dependencies = [ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| use DI\Container; | |
| use Psr\Http\Message\ResponseFactoryInterface; | |
| use Psr\Http\Message\ResponseInterface; | |
| use Psr\Http\Message\ServerRequestInterface; | |
| use Psr\Http\Server\MiddlewareInterface; | |
| use Psr\Http\Server\RequestHandlerInterface; | |
| use Slim\Factory\AppFactory; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Application\Middleware; | |
| use PDO; | |
| use Psr\Log\LoggerInterface; | |
| use Psr\Http\Message\ResponseInterface; | |
| use Psr\Http\Message\ServerRequestInterface; | |
| use Psr\Http\Server\MiddlewareInterface; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types = 1); | |
| use Psr\Http\Message\ServerRequestInterface; | |
| use Slim\Exception\HttpInternalServerErrorException; | |
| use Slim\ResponseEmitter; | |
| class ShutdownHandler | |
| { | |
| private ServerRequestInterface $request = null; |
NewerOlder