sottolio 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +2 -5
- data/bin/sottolio +1 -1
- data/example/game/index.html +1 -1
- data/lib/sottolio/version.rb +1 -1
- data/opal/sottolio/wrapper/image.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2b0a7bf516f5dc3a9080c8e9782d5f7280de0327
|
|
4
|
+
data.tar.gz: 838755440b44c47f732e20b05863743ae2fd2d78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea2765fb00721d179dfd2c273d758a69cd748c9f2bcf9c1d6b5e4b9ac8fc3e24166efe207c8e7a412e5b9dc7a10fd35692d11083737561aaa61b17215c7658e0
|
|
7
|
+
data.tar.gz: 531177786817a21ff57ee0a17be3e19d27d9e02ef277f4d330604ca086c49e8557e7a1d1447add328e092f4f157802e4efca41a3be76bb32814debb685bd243d
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -27,8 +27,5 @@ The [demo](http://www.giovannicapuano.net/sottolio/) is also available in the we
|
|
|
27
27
|
|
|
28
28
|
FAQ
|
|
29
29
|
===
|
|
30
|
-
**Q**: I can't see one or more assets (girls, images, sounds or whatever)
|
|
31
|
-
*R*: This is a well known bug. Please refresh the page.
|
|
32
|
-
|
|
33
|
-
**Q**: I have problems with $browser (with $browser != Firefox)
|
|
34
|
-
*R*: Currently Fiefox is the only stable browser where sottolio runs correctly. This definitely is considered a well known bug.
|
|
30
|
+
**Q**: I can't see one or more assets (girls, images, sounds or whatever) on Chrome
|
|
31
|
+
*R*: This is a well known bug. Please refresh the page thrice.
|
data/bin/sottolio
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
# You should have received a copy of the GNU General Public License
|
|
18
18
|
# along with sottolio. If not, see <http://www.gnu.org/licenses/>.
|
|
19
19
|
#++
|
|
20
|
-
|
|
20
|
+
require_relative '../lib/sottolio/sottolio'
|
|
21
21
|
|
|
22
22
|
abort 'Usage: sottolio <scripts> <output>' if ARGV.length != 2
|
|
23
23
|
|
data/example/game/index.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
Your browser is not accepted here. Pick another one.
|
|
16
16
|
</canvas> <img id="next" src="resources/right_arrow.png">
|
|
17
17
|
|
|
18
|
-
<script src="sottolio.
|
|
18
|
+
<script src="sottolio.js"></script>
|
|
19
19
|
<script src="include/canvasinput.js"></script>
|
|
20
20
|
</body>
|
|
21
21
|
</html>
|
data/lib/sottolio/version.rb
CHANGED