Skip to content

Commit b6b89e3

Browse files
committed
Merge remote-tracking branch 'origin/master' into dev
2 parents cacc4d7 + 457f346 commit b6b89e3

File tree

6 files changed

+56
-29
lines changed

6 files changed

+56
-29
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 INESC TEC
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ Linter is also installed and configured but not included in the CI pipeline, to
6363

6464
To include the linter in the CI pipeline (first make sure all linter errors are fixed) and then add the following to the [package.json](meteor/package.json) `scripts`: `"pretest": "npm run lint --silent"`
6565

66+
# Datasets
67+
* [Data](https://github.com/haslab/Alloy4Fun/wiki/EM-19-10) from the 19/29 formal methods course at Universidade do Minho (as reported in the ABZ'20 submission).
68+
6669
# Team
6770
Alloy4fun has been developed by [INESC TEC](http://inesctec.pt) with members from:
6871
* [HASLab](https://haslab.uminho.pt)

meteor/.meteor/packages

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
[email protected] # Packages every Meteor app needs to have
88
[email protected] # Packages for a great mobile UX
9-
[email protected].5 # The database Meteor supports right now
9+
[email protected].6 # The database Meteor supports right now
1010
[email protected] # Compile .html files into Meteor Blaze views
1111
[email protected] # Reactive variable for tracker
1212
[email protected] # Helpful client-side library
13-
[email protected].1 # Meteor's client-side reactive programming library
13+
[email protected].2 # Meteor's client-side reactive programming library
1414

1515
[email protected] # JS minifier run for production mode
1616
[email protected] # ECMAScript 5 compatibility for older browsers.
17-
[email protected].6 # Enable ECMAScript2015+ syntax in app code
17+
[email protected].7 # Enable ECMAScript2015+ syntax in app code
1818
[email protected] # Server-side component of the `meteor shell` command
1919

2020

meteor/.meteor/release

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
METEOR@2.11.0
1+
METEOR@2.12

meteor/.meteor/versions

+25-25
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ aldeed:[email protected]
22
33
44
5-
5+
66
77
88
@@ -13,19 +13,19 @@ [email protected]
1313
1414
1515
16-
16+
1717
1818
1919
2020
2121
2222
23-
23+
2424
2525
26-
27-
28-
26+
27+
28+
2929
3030
3131
@@ -51,36 +51,37 @@ jeremy:[email protected]_5
5151
5252
5353
54-
lmieulet:meteor-coverage@3.2.0
54+
lmieulet:meteor-coverage@1.1.4
5555
56-
mdg:validation-error@0.5.1
57-
56+
mdg:validation-error@0.2.0
57+
5858
59-
meteortesting:[email protected]
60-
meteortesting:[email protected]
61-
meteortesting:[email protected]
59+
meteorhacks:[email protected]
60+
meteortesting:[email protected]
61+
meteortesting:[email protected]
62+
meteortesting:[email protected]
6263
63-
64+
6465
6566
6667
6768
6869
69-
70+
7071
7172
7273
73-
npm-mongo@4.14.0
74-
74+
npm-mongo@4.16.0
75+
7576
7677
7778
7879
practicalmeteor:[email protected]_1
7980
8081
propercursive:[email protected]
81-
raix:eventemitter@1.0.0
82+
raix:eventemitter@0.1.3
8283
83-
84+
8485
8586
8687
@@ -90,21 +91,20 @@ rochal:[email protected]
9091
9192
9293
93-
94+
9495
9596
9697
9798
9899
99100
100101
101-
102-
103-
104-
102+
103+
104+
105105
106-
106+
107107
108-
108+
109109
110110

meteor/client/stylesheets/alloy4fun.css

+3
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@ body {
287287
color: white;
288288
width: auto;
289289
padding: 5px;
290+
text-align: center;
290291
}
291292

292293
.log-wrong {
@@ -295,6 +296,7 @@ body {
295296
color: white;
296297
width: auto;
297298
padding: 5px;
299+
text-align: center;
298300
}
299301

300302
.log-warning {
@@ -323,6 +325,7 @@ body {
323325
color: white;
324326
width: auto;
325327
padding: 5px;
328+
text-align: center;
326329
}
327330

328331
.log-unavailable {

0 commit comments

Comments
 (0)