-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Arguments are no longer red when replacing one FB call with another (e.g. TON(...) -> TOF(...)) - Implemented automatic updates, so updates will be small and fast
- Loading branch information
Showing
14 changed files
with
984 additions
and
660 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,5 @@ source_gen | |
source_gen.caches | ||
|
||
.DS_Store | ||
|
||
build.xml.* |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="CodeStyleSettings"> | ||
<option name="fieldPrefix" value="" /> | ||
<option name="fieldSuffix" value="" /> | ||
<option name="localVariablePrefix" value="" /> | ||
<option name="localVariableSuffix" value="" /> | ||
<option name="parameterPrefix" value="" /> | ||
<option name="parameterSuffix" value="" /> | ||
<option name="staticFieldPrefix" value="" /> | ||
<option name="staticFieldSuffix" value="" /> | ||
</component> | ||
</project> |
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
#!/bin/sh | ||
rm -rf build/artifacts | ||
rm -rf build/tmp | ||
ant && ant -f buildDistribution.xml | ||
|
||
# See https://youtrack.jetbrains.com/issue/MPS-25087 | ||
sed '\|dir="[^"]*.iec61131.types" includes="icons/\\*\\*|a\ | ||
<zipfileset dir="${basedir}/languages/com.github.vlsi.iec61131.types/icons" includes="*.png" prefix="com/github/vlsi/iec61131/types/structure"/>\ | ||
' build.xml > build.xml.1 | ||
sed '\|dir="[^"]*.iec61131.st2ti1808" includes="icons/\\*\\*|a\ | ||
<zipfileset dir="${basedir}/languages/com.github.vlsi.iec61131.st2ti1808/icons" includes="*.png" prefix="com/github/vlsi/iec61131/st2ti1808/structure"/>\ | ||
' build.xml.1 > build.xml.2 | ||
|
||
# See https://youtrack.jetbrains.com/issue/MPS-25108 | ||
sed 's/update="/patches="/' build.xml.2 > build.xml.3 | ||
|
||
ant -f build.xml.3 && ant -f buildDistribution.xml | ||
|
||
#cd build/artifacts/st61131Distribution && unzip *-mac.zip |
This file contains 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
Oops, something went wrong.