Differences From Artifact [c5be6540f2]:
- File src/skins.c — part of check-in [7d8631f17c] at 2024-02-10 09:54:37 on branch inskinerator-modern-backport — Initial fork of the trunk default skin into "Étienne" (a.k.a. "etienne" without the accent for easier use in ?skin=" and such) for use by those who want to return to the old default once this branch is merged to trunk. At the moment, it is a straight copy with the intent of forming a baseline for the minimal changes I'm about to make in order to allow the Fossil doc changes on this branch to render reasonably. (user: wyoung size: 39655) [more...]
To Artifact [2de8086d5e]:
- File src/skins.c — part of check-in [94f9b72690] at 2024-02-23 12:08:35 on branch resurrect-old-default-skin — Resurrect the "default" skin from the last release under a new name: "Dense". (user: drh size: 39722)
| ︙ | ︙ | |||
42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
char *zSQL; /* Filled in at run-time with SQL to insert this skin */
} aBuiltinSkin[] = {
{ "Default", "default", 0 },
{ "Ardoise", "ardoise", 0 },
{ "Black & White", "black_and_white", 0 },
{ "Blitz", "blitz", 0 },
{ "Dark Mode", "darkmode", 0 },
{ "Eagle", "eagle", 0 },
{ "Étienne", "etienne", 0 },
{ "Khaki", "khaki", 0 },
{ "Original", "original", 0 },
{ "Plain Gray", "plain_gray", 0 },
{ "Xekri", "xekri", 0 },
};
| > | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
char *zSQL; /* Filled in at run-time with SQL to insert this skin */
} aBuiltinSkin[] = {
{ "Default", "default", 0 },
{ "Ardoise", "ardoise", 0 },
{ "Black & White", "black_and_white", 0 },
{ "Blitz", "blitz", 0 },
{ "Dark Mode", "darkmode", 0 },
{ "Dense", "dense", 0 },
{ "Eagle", "eagle", 0 },
{ "Étienne", "etienne", 0 },
{ "Khaki", "khaki", 0 },
{ "Original", "original", 0 },
{ "Plain Gray", "plain_gray", 0 },
{ "Xekri", "xekri", 0 },
};
|
| ︙ | ︙ |