Skip to content

Commit 26d0eda

Browse files
ysfchnhammerhai
andauthored
Version - 2.0 (#18)
* Added ability to write the full class name * Fix: Add titles to the exceptions * Bump version to 5 * Update extension description * Add RandomUUID block * Documentation update * Update README.md * Remove Parameters on README.md * Update README.md * Update README.md * Update README.md * Clean-up * Added GitHub Actions * Code style * Update build.yml * Update build.yml * Update build.yml * ⚡ Template Creator * Added "IsDynamic" block * Code style * TemplateCreator: Convert values automatically #21 * TemplateCreator: Change color conversion #22 * TemplateCreator: Support for extension instances #23 * TemplateCreator: Fix color conversion #22 * TemplateCreator: Fix color conversion #22 / 2 * Update README.md * 🎉 Added: Move, SetOrder and GetOrder blocks! #20 * Update README.md * Code style * Fix variable error * Ability to set multiple properties + code adjustments (#25) * Ability to set multiple properties at once * Change 'versionName' Reported incorrect version name. * Only allow input from dictionaries * Ignore spaces by default in property/class/component names * VersionName block + Bump version name * Update .gitignore * ⚠ Add parameters to SchemaCreated event * 🎉 Added: Invoke and ListDetails blocks! * Update .gitignore * Update to App Inventor version v185 * Update to App Inventor version v185 - 2 * Update GitHub Actions * Update GitHub Actions * 🛑 Fix extension icon URL * Switch to the CodeQL Co-authored-by: Nathan <43486313+StormiFire@users.noreply.github.com>
1 parent 5addd3f commit 26d0eda

Some content is hidden

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

47 files changed

+1299
-285
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [main, beta]
6+
pull_request:
7+
# The branches below must be a subset of the branches above
8+
branches: [main, beta]
9+
schedule:
10+
- cron: '0 10 * * 5'
11+
12+
jobs:
13+
analyze:
14+
name: Analyze
15+
runs-on: ubuntu-latest
16+
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
# Override automatic language detection by changing the below list
21+
# Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
22+
language: ['java']
23+
# Learn more...
24+
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
25+
26+
steps:
27+
- name: Checkout repository
28+
uses: actions/checkout@v2
29+
with:
30+
# We must fetch at least the immediate parents so that if this is
31+
# a pull request then we can checkout the head.
32+
fetch-depth: 2
33+
submodules: true
34+
35+
# If this run was triggered by a pull request event, then checkout
36+
# the head of the pull request instead of the merge commit.
37+
- run: git checkout HEAD^2
38+
if: ${{ github.event_name == 'pull_request' }}
39+
40+
# Initializes the CodeQL tools for scanning.
41+
- name: Initialize CodeQL
42+
uses: github/codeql-action/init@v1
43+
with:
44+
languages: ${{ matrix.language }}
45+
46+
# ℹ️ Command-line programs to run using the OS shell.
47+
# 📚 https://git.io/JvXDl
48+
49+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
50+
# and modify them (or add more) to build your code if your project
51+
# uses a compiled language
52+
- name: "Build Extension"
53+
run: ant extensions
54+
55+
- name: "Upload the Extension as Artifact"
56+
uses: actions/upload-artifact@v2
57+
with:
58+
name: Extension
59+
path: out/*.aix
60+
61+
- name: Perform CodeQL Analysis
62+
uses: github/codeql-action/analyze@v1

.gitignore

Lines changed: 174 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,175 @@
11
build/*
2-
out/*
2+
out/*
3+
TemplateCreator/*.json
4+
*.aia
5+
*.ais
6+
*.scm
7+
8+
# -----------------------------
9+
# JAVA
10+
# -----------------------------
11+
12+
# Compiled class file
13+
*.class
14+
15+
# Log file
16+
*.log
17+
18+
# BlueJ files
19+
*.ctxt
20+
21+
# Mobile Tools for Java (J2ME)
22+
.mtj.tmp/
23+
24+
# Package Files #
25+
*.war
26+
*.nar
27+
*.ear
28+
*.zip
29+
*.tar.gz
30+
*.rar
31+
32+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
33+
hs_err_pid*
34+
35+
# -----------------------------
36+
# PYTHON
37+
# -----------------------------
38+
39+
# Byte-compiled / optimized / DLL files
40+
__pycache__/
41+
*.py[cod]
42+
*$py.class
43+
44+
# C extensions
45+
*.so
46+
47+
# Distribution / packaging
48+
.Python
49+
build/
50+
develop-eggs/
51+
dist/
52+
downloads/
53+
eggs/
54+
.eggs/
55+
lib64/
56+
parts/
57+
sdist/
58+
var/
59+
wheels/
60+
share/python-wheels/
61+
*.egg-info/
62+
.installed.cfg
63+
*.egg
64+
MANIFEST
65+
66+
# PyInstaller
67+
# Usually these files are written by a python script from a template
68+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
69+
*.manifest
70+
*.spec
71+
72+
# Installer logs
73+
pip-log.txt
74+
pip-delete-this-directory.txt
75+
76+
# Unit test / coverage reports
77+
htmlcov/
78+
.tox/
79+
.nox/
80+
.coverage
81+
.coverage.*
82+
.cache
83+
nosetests.xml
84+
coverage.xml
85+
*.cover
86+
*.py,cover
87+
.hypothesis/
88+
.pytest_cache/
89+
cover/
90+
91+
# Translations
92+
*.mo
93+
*.pot
94+
95+
# Django stuff:
96+
*.log
97+
local_settings.py
98+
db.sqlite3
99+
db.sqlite3-journal
100+
101+
# Flask stuff:
102+
instance/
103+
.webassets-cache
104+
105+
# Scrapy stuff:
106+
.scrapy
107+
108+
# Sphinx documentation
109+
docs/_build/
110+
111+
# PyBuilder
112+
.pybuilder/
113+
target/
114+
115+
# Jupyter Notebook
116+
.ipynb_checkpoints
117+
118+
# IPython
119+
profile_default/
120+
ipython_config.py
121+
122+
# pyenv
123+
# For a library or package, you might want to ignore these files since the code is
124+
# intended to run in multiple environments; otherwise, check them in:
125+
# .python-version
126+
127+
# pipenv
128+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
129+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
130+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
131+
# install all needed dependencies.
132+
#Pipfile.lock
133+
134+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
135+
__pypackages__/
136+
137+
# Celery stuff
138+
celerybeat-schedule
139+
celerybeat.pid
140+
141+
# SageMath parsed files
142+
*.sage.py
143+
144+
# Environments
145+
.env
146+
.venv
147+
env/
148+
venv/
149+
ENV/
150+
env.bak/
151+
venv.bak/
152+
153+
# Spyder project settings
154+
.spyderproject
155+
.spyproject
156+
157+
# Rope project settings
158+
.ropeproject
159+
160+
# mkdocs documentation
161+
/site
162+
163+
# mypy
164+
.mypy_cache/
165+
.dmypy.json
166+
dmypy.json
167+
168+
# Pyre type checker
169+
.pyre/
170+
171+
# pytype static type analyzer
172+
.pytype/
173+
174+
# Cython debug symbols
175+
cython_debug/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "lib/appinventor"]
2+
path = lib/appinventor
3+
url = https://github.com/mit-cml/extension-deps.git

0 commit comments

Comments
 (0)