Update to Transcrypt 3.7
This commit is contained in:
parent
468991a31b
commit
c6958c1ccf
4
.gitignore
vendored
4
.gitignore
vendored
@ -3,11 +3,11 @@
|
||||
# Byte-compiled / optimized / DLL files
|
||||
*.py[cod]
|
||||
|
||||
# Environments
|
||||
# Virtual environment
|
||||
env/
|
||||
|
||||
# IntelliJ project files
|
||||
.idea
|
||||
|
||||
# Generated (compiled) JavaScript code
|
||||
__javascript__/
|
||||
__target__/
|
2
Makefile
2
Makefile
@ -35,7 +35,7 @@ clean:
|
||||
@find $(BASE_DIR) -depth -type f -name "*.pyo" -exec rm -f {} \;
|
||||
@find $(BASE_DIR) -depth -type f -name "*.orig" -exec rm -f {} \;
|
||||
@find $(BASE_DIR) -depth -type f -name "*~" -exec rm -f {} \;
|
||||
@$(RM) --force --recursive __javascript__
|
||||
@$(RM) --force --recursive __target__
|
||||
|
||||
#+ Remove all automatically generated and Git repository data
|
||||
distclean: clean venv-clean
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<script src="__javascript__/OOMAnalyser.js" defer="defer"></script>
|
||||
<script defer="defer" src="__target__/OOMAnalyser.js"></script>
|
||||
<meta charset="UTF-8">
|
||||
<title>OOM Analyser</title>
|
||||
|
||||
@ -792,6 +792,7 @@ function goBack() {
|
||||
<li>Show additional information in process table</li>
|
||||
<li>Add sorting process table</li>
|
||||
<li>Fix: Trigger process isn't part of process table</li>
|
||||
<li>Update to Transcrypt 3.7</li>
|
||||
<li>...</li>
|
||||
</ol>
|
||||
|
||||
@ -838,10 +839,10 @@ function goBack() {
|
||||
|
||||
<h3>Installation steps</h3>
|
||||
<ol>
|
||||
<li>Create an own directory and add a <code>__javascript__</code> subdirectory</li>
|
||||
<li>Create an own directory and add a <code>__target__</code> subdirectory</li>
|
||||
<li>Download the <a download="OOMAnalyser.html" href="OOMAnalyser.html">HTML file</a> to the main directory and
|
||||
the <a download="OOMAnalyser.js" href="__javascript__/OOMAnalyser.js">JavaScript file</a> to the
|
||||
<code>__javascript__</code> subdirectory
|
||||
the <a download="OOMAnalyser.js" href="__target__/OOMAnalyser.js">JavaScript file</a> to the
|
||||
<code>__target__</code> subdirectory
|
||||
</li>
|
||||
<li>Open the file <code>OOMAnalyser.html</code> in your favourite browser.</li>
|
||||
</ol>
|
||||
|
@ -1 +1 @@
|
||||
Transcrypt==3.6.101
|
||||
Transcrypt
|
||||
|
Loading…
Reference in New Issue
Block a user