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
<div class=tags> {{#Tags}}{{Tags}} -- {{/Tags}}{{Deck}}</div> | |
<br> | |
{{#Russian}}{{Russian}}<p/>{{/Russian}} | |
{{English}}<p/> | |
<br> | |
<div class=chinese>{{Hanzi}}</div></p> | |
{{Pinyin}} | |
</p> | |
{{#Measure Word}}<div class=chinese><span class=comment>MW:</span> {{Measure Word}}</div>{{/Measure Word}} | |
{{#Simplified}}<div class=chinese><span class=comment>S:</span> {{Simplified}}</div>{{/Simplified}} |
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
.card { | |
font-family: arial; | |
font-size: 20px; | |
text-align: center; | |
color: black; | |
background-color: white; | |
} | |
.card { word-wrap: break-word; } | |
.win .chinese { font-family: "MS Mincho", "MS 明朝"; } | |
.mac .chinese { font-family: "STFangsong"} |
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
<div class=tags> {{#Tags}}{{Tags}} -- {{/Tags}}{{Deck}}</div> | |
<br> | |
<br><br><br> | |
<div class=chinese>{{Hanzi}}</div> | |
<div id="text"></div> | |
<span style="display:none;" id="Tags">{{Tags}}</span> | |
<script> | |
var d = document; |
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
-injars <obfuscated jar> | |
-outjars <result> | |
-libraryjars $HOME/Library/Android/sdk/platforms/android-19/android.jar ; or similar | |
-optimizationpasses 10 | |
-dontobfuscate | |
-dontpreverify | |
-printusage | |
-dontusemixedcaseclassnames | |
-dontskipnonpubliclibraryclasses |
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 a/src/HexRaysCodeXplorer/CodeXplorer.cpp b/src/HexRaysCodeXplorer/CodeXplorer.cpp | |
index 5be7ce9..6f4b1f1 100644 | |
--- a/src/HexRaysCodeXplorer/CodeXplorer.cpp | |
+++ b/src/HexRaysCodeXplorer/CodeXplorer.cpp | |
@@ -23,6 +23,7 @@ along with this program. If not, see | |
============================================================================== | |
*/ | |
+#include <stdlib.h> | |
#include "Common.h" |
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 a/build_binary_dist.py b/build_binary_dist.py | |
old mode 100644 | |
new mode 100755 | |
index 77ca6e7..b12c178 | |
--- a/build_binary_dist.py | |
+++ b/build_binary_dist.py | |
@@ -34,11 +34,11 @@ from distutils.spawn import find_executable | |
def get_build_cmd(platform): |