Skip to content

Commit

Permalink
v1.13.18 :shipit:
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlag committed Mar 15, 2023
1 parent 4a427a7 commit 189d6e4
Show file tree
Hide file tree
Showing 6 changed files with 110 additions and 11 deletions.
9 changes: 8 additions & 1 deletion dev/Glyphr_Studio.css
Original file line number Diff line number Diff line change
Expand Up @@ -522,14 +522,21 @@
font-weight:normal;
font-size:1.3em;
margin:0px;
width:390px;
/* width:390px; */
width: 500px;
height:24px;
overflow: hidden;
position: relative;
top:-2px;
text-transform: none;
}

.panelsupertitle .name {
font-size: 1em;
color: rgb(155, 221, 255);
font-weight: normal;
}

.supertitleseperator {
padding:0px 5px 0px 12px;
position: relative;
Expand Down
8 changes: 5 additions & 3 deletions dev/js/_functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,15 +196,17 @@ function makePanelSuperTitle() {
selwi.shape.name ||
'[no shape outline yet]';
// debug('\t selwi name is ' + name);

if (selwi.name) name = name.replace(/latin /i, '');
content += makeSuperTitleSeperator();
content += escapeXMLValues(name);
if(!selwi.glyphhtml) name = escapeXMLValues(name);
content += '<span class="name" title="' + name + '">' + name + '</span>';
} else if (_UI.current_page === 'kerning') {
// debug('\t selwi = false, on kerning');
name = getSelectedKern();
if (name) {
content += makeSuperTitleSeperator() + escapeXMLValues(name.getName());
content += makeSuperTitleSeperator();
name = escapeXMLValues(name.getName());
content += '<span class="name" title="' + name + '">' + name + '</span>';
}
}
content += '</h1>';
Expand Down
4 changes: 2 additions & 2 deletions dev/js/_settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
var _UI = {
// Version
thisGlyphrStudioVersion: 'Version 1.13',
thisGlyphrStudioVersionNum: '1.13.17',
thisGlyphrStudioVersionDate: 1676680000000,
thisGlyphrStudioVersionNum: '1.13.18',
thisGlyphrStudioVersionDate: 1678920000000,

// Internal Dev Stuff
devmode: false, // global switch for all the stuff below
Expand Down
4 changes: 3 additions & 1 deletion dev/js/framework_unicode.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,9 @@ function getUnicodeBlockName(ch) {
for (var i = 0; i < _UI.unicodeBlocks.length; i++) {
block = _UI.unicodeBlocks[i];
if (chn >= block.begin && chn <= block.end) {
return block.name + ' - ' + ch.substr(2);
var bName = block.name;
bName = bName.split(' (Part')[0];
return '' + ch + ' (' + bName + ')';
}
}

Expand Down
26 changes: 22 additions & 4 deletions dev/js/lib_unicode_blocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,23 @@ _UI.unicodeBlocks = [
{ begin: 0x31f0, end: 0x31ff, name: 'Katakana Phonetic Extensions' },
{ begin: 0x3200, end: 0x32ff, name: 'Enclosed CJK Letters and Months' },
{ begin: 0x3300, end: 0x33ff, name: 'CJK Compatibility' },
{ begin: 0x3400, end: 0x4dbf, name: 'CJK Unified Ideographs Extension A' },
{
begin: 0x3400,
end: 0x3fff,
name: 'CJK Unified Ideographs Extension A (Part 1 of 2)',
},
{
begin: 0x4000,
end: 0x4dbf,
name: 'CJK Unified Ideographs Extension A (Part 2 of 2)',
},
{ begin: 0x4dc0, end: 0x4dff, name: 'Yijing Hexagram Symbols' },
{ begin: 0x4e00, end: 0x9fff, name: 'CJK Unified Ideographs' },
{ begin: 0x4e00, end: 0x4fff, name: 'CJK Unified Ideographs (Part 1 of 6)' },
{ begin: 0x5000, end: 0x5fff, name: 'CJK Unified Ideographs (Part 2 of 6)' },
{ begin: 0x6000, end: 0x6fff, name: 'CJK Unified Ideographs (Part 3 of 6)' },
{ begin: 0x7000, end: 0x7fff, name: 'CJK Unified Ideographs (Part 4 of 6)' },
{ begin: 0x8000, end: 0x8fff, name: 'CJK Unified Ideographs (Part 5 of 6)' },
{ begin: 0x9000, end: 0x9fff, name: 'CJK Unified Ideographs (Part 6 of 6)' },
{ begin: 0xa000, end: 0xa48f, name: 'Yi Syllables' },
{ begin: 0xa490, end: 0xa4cf, name: 'Yi Radicals' },
{ begin: 0xa4d0, end: 0xa4ff, name: 'Lisu' },
Expand All @@ -157,12 +171,16 @@ _UI.unicodeBlocks = [
{ begin: 0xab30, end: 0xab6f, name: 'Latin Extended-E' },
{ begin: 0xab70, end: 0xabbf, name: 'Cherokee Supplement' },
{ begin: 0xabc0, end: 0xabff, name: 'Meetei Mayek' },
{ begin: 0xac00, end: 0xd7af, name: 'Hangul Syllables' },
{ begin: 0xac00, end: 0xafff, name: 'Hangul Syllables (Part 1 of 4)' },
{ begin: 0xb000, end: 0xbfff, name: 'Hangul Syllables (Part 2 of 4)' },
{ begin: 0xc000, end: 0xcfff, name: 'Hangul Syllables (Part 3 of 4)' },
{ begin: 0xd000, end: 0xd7af, name: 'Hangul Syllables (Part 4 of 4)' },
{ begin: 0xd7b0, end: 0xd7ff, name: 'Hangul Jamo Extended-B' },
{ begin: 0xd800, end: 0xdb7f, name: 'High Surrogates' },
{ begin: 0xdb80, end: 0xdbff, name: 'High Private Use Surrogates' },
{ begin: 0xdc00, end: 0xdfff, name: 'Low Surrogates' },
{ begin: 0xe000, end: 0xf8ff, name: 'Private Use Area' },
{ begin: 0xe000, end: 0xefff, name: 'Private Use Area (Part 1 of 2)' },
{ begin: 0xf000, end: 0xf8ff, name: 'Private Use Area (Part 2 of 2)' },
{ begin: 0xf900, end: 0xfaff, name: 'CJK Compatibility Ideographs' },
{ begin: 0xfb00, end: 0xfb4f, name: 'Alphabetic Presentation Forms' },
{ begin: 0xfb50, end: 0xfdff, name: 'Arabic Presentation Forms-A' },
Expand Down
70 changes: 70 additions & 0 deletions dist/Glyphr_Studio_-_1.13.18.html

Large diffs are not rendered by default.

0 comments on commit 189d6e4

Please sign in to comment.