Skip to content

Commit fcdee81

Browse files
add Greek support in font, fix charset
1 parent e53f9d9 commit fcdee81

File tree

80 files changed

+83
-46
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+83
-46
lines changed

index.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,10 @@ <h2>Activate Commit Mono in your editor.</h2>
943943
</div>
944944
<div class="docs_container" id="charset_container_docs">
945945
<h2 tabindex="0" data-edit="true">Full characterset without alternates</h2>
946-
<p tabindex="0" data-edit="true">Support for Greek and Cyrillic coming soon.</p>
946+
<p tabindex="0" data-edit="true" class="new_label">
947+
Added support for Greek. Καλώς ήρθες, απόλαυσε!
948+
</p>
949+
<p tabindex="0" data-edit="true">Support for Cyrillic coming soon.</p>
947950
<br />
948951
<div id="charset" tabindex="0" data-edit="true"></div>
949952
<p tabindex="0" data-edit="true">End of transmission.</p>
@@ -1181,7 +1184,7 @@ <h2>Programs used</h2>
11811184
<div tabindex="0" id="block_tab_end"></div>
11821185
</div>
11831186
<script>
1184-
const versionOfCommitMono = "V134"
1187+
const versionOfCommitMono = "V135"
11851188
let fontsLoaded = false
11861189
const commitMono = new FontFace("CommitMono", `url(/src/fonts/CommitMono${versionOfCommitMono}-VF.woff2)`, {
11871190
style: "normal",

src/css/section_9.css

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,34 @@ h2:focus .active_feature {
3737

3838
#charset {
3939
width: var(--max-width);
40+
width: 32ch;
4041
font-variant-ligatures: none;
4142
white-space: pre-wrap;
42-
font-size: 3rem;
43-
line-height: 4rem;
43+
font-size: 5rem;
44+
line-height: 5rem;
45+
display: grid;
46+
grid-template-columns: repeat(10, 1ch);
47+
gap: 1ch;
48+
}
49+
50+
#charset .charset_letter {
51+
/* background-color: blue; */
52+
font-size: inherit;
53+
width: fit-content;
54+
line-height: inherit;
55+
}
56+
57+
.new_label {
58+
position: relative;
59+
}
60+
61+
.new_label::before {
62+
content: "NEW";
63+
font-size: 0.66rem;
64+
background: var(--text);
65+
color: var(--bg);
66+
position: relative;
67+
padding: 0 0.5ch;
4468
}
4569

4670
#language_support {

src/features/ss01_less_equal.fea

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ feature ss01 {
1212

1313
sub @space_actor less' equal @space_actor by less_equal.liga;
1414
sub @space_actor less_equal.liga equal' @space_actor by space;
15+
sub @space_actor [less.arrow_start_equal less.arrow_start_equal.case]' [equal.arrow equal.arrow.case] @space_actor by less_equal.liga;
16+
sub @space_actor less_equal.liga [equal.arrow equal.arrow.case]' @space_actor by space;
1517

1618
sub @space_actor greater' equal @space_actor by greater_equal.liga;
1719
sub @space_actor greater_equal.liga equal' @space_actor by space;
-136 KB
Binary file not shown.
-132 KB
Binary file not shown.
-139 KB
Binary file not shown.
-132 KB
Binary file not shown.
-139 KB
Binary file not shown.
-133 KB
Binary file not shown.
-138 KB
Binary file not shown.

0 commit comments

Comments
 (0)