Skip to content

Commit

Permalink
Fixed gray boxes on definite integrals & incorrect rendering of \nthroot
Browse files Browse the repository at this point in the history
All old files should still work
  • Loading branch information
Beau VanDenburgh committed Feb 10, 2018
1 parent b53027e commit 1eadb66
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
4 changes: 1 addition & 3 deletions WINBUILDER/winbuilder.aip
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@
<COMPONENT cid="caphyon.advinst.msicomp.MsiPropsComponent">
<ROW Property="AI_BITMAP_DISPLAY_MODE" Value="0"/>
<ROW Property="ALLUSERS" Value="1"/>
<ROW Property="ARPNOMODIFY" MultiBuildValue="DefaultBuild:1"/>
<ROW Property="ARPNOREPAIR" Value="1"/>
<ROW Property="ARPPRODUCTICON" Value="logo_full_fuzzy.exe" Type="8"/>
<ROW Property="ARPURLINFOABOUT" Value="github.com/beautron7/project-delta"/>
<ROW Property="Manufacturer" Value="Triversal LLC"/>
<ROW Property="ProductCode" Value="1033:{96F851FF-2704-4637-A2FE-412347AB29F9} " Type="16"/>
<ROW Property="ProductLanguage" Value="1033"/>
<ROW Property="ProductName" Value="Project Delta"/>
<ROW Property="ProductVersion" Value="1.0.0" Type="32"/>
<ROW Property="ProductVersion" Value="2.0.2" Type="32"/>
<ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND"/>
<ROW Property="UpgradeCode" Value="{BA2C704C-D3D8-4506-9DBF-C0337DE215D8}"/>
<ROW Property="WindowsType9X" MultiBuildValue="DefaultBuild:Windows 9x/ME" ValueLocId="-"/>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "project-delta",
"description": "Use MathQuill to type out notes for math",
"version": "2.0.0",
"version": "2.0.2",
"private": true,
"author": "Beau <[email protected]>",
"main": "electron ./src",
Expand Down
18 changes: 18 additions & 0 deletions src/core_styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,21 @@
.top-spacer{
margin:3cm;
}

/* hack to fix broken nthroot syntax */
sup.mq-nthroot {
top:0;
}

/* allows for the typing of indefinite integrals */
.mq-int > .mq-supsub .mq-sup-inner.mq-empty:not(.mq-hasCursor),
.mq-int > .mq-supsub .mq-sup-inner.mq-empty:not(.mq-hasCursor) *
{
width: 0;
display: inline-block;
}
.mq-int > .mq-supsub .mq-sub.mq-empty:not(.mq-hasCursor),
.mq-int > .mq-supsub .mq-sub.mq-empty:not(.mq-hasCursor) * {
width: 0;
display: inline-block;
}
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "project-delta",
"version": "2.0.0",
"version": "2.0.2",
"main": "main.js",
"dependencies": {
"bootstrap": "^3.3.7",
Expand Down

0 comments on commit 1eadb66

Please sign in to comment.