Skip to content

Commit

Permalink
Declarative functions in default toolbox
Browse files Browse the repository at this point in the history
  • Loading branch information
alanrodas committed May 18, 2020
1 parent e99405d commit fe05d55
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion app/elements/about-gobstones/about-gobstones.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</style>

<template>
<h1>[[localize("about-gobstones-web")]] (v2.17.0)</h1>
<h1>[[localize("about-gobstones-web")]] (v2.17.2)</h1>
<br>

<div>
Expand All @@ -22,6 +22,7 @@ <h3>Líder de Proyecto</h3>

<h3>Desarrolladores de interfaz</h3>
<ul>
<li>Alan Rodas Bonjour</li>
<li>Rodrigo Alfonso</li>
<li>Federico Aloi</li>
<li>Ariel Álvarez</li>
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"file-saver": "eligrey/FileSaver.js#4a73fd7a2dcdc6ce2947433af3d3fbad56a019fa",
"app-router": "2.7.2",
"async": "^2.1.4",
"gs-element-blockly": "Program-AR/gs-element-blockly#^0.32.1",
"gs-element-blockly": "gobstones/gs-element-blockly#^0.33",
"showdown": "^1.6.4",
"js-emoji": "^3.2.2",
"js-yaml": "~3.9.0",
Expand Down
8 changes: 4 additions & 4 deletions build/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ const AVAILABLE_ARCHS = ['x64', 'ia32'];
const AVAILABLE_PLATFORMS = ['freebsd', 'linux', 'mac', 'win'];
const AVAILABLE_TARGETS = {
linux: ['AppImage', 'deb', 'rpm', 'pacman'],
mac: ['mac', 'dmg'],
mac: ['mas', 'dmg'],
win: ['nsis', 'portable'],
freebsd: ['freebsd']
}
const AVAILABLE_MODES = ['full', 'code', 'blocks', 'teacher']

// A set of rules to avoid invalid configurations on different platforms
const EXCLUSSION_RULES = [
//
//
(configs) => {
// Mac only supports 64 bits architecture, remove 32 bit possibilities
if (configs.mac) {
Expand Down Expand Up @@ -126,14 +126,14 @@ yargs
yargs.parse(process.argv, (err, argv, out) => {
if (err) {
console.log(out)
process.exit()
process.exit()
}
flags = argv
})

if (flags.help) {
yargs.showHelp()
process.exit()
process.exit()
}

// Standarize flags
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gobstones-web",
"description": "Gobstones Web",
"version": "2.17.1",
"version": "2.17.2",
"private": true,
"licence": "GPLv3",
"author": "Gobstones <[email protected]> (https://gobstones.github.io)",
Expand Down

0 comments on commit fe05d55

Please sign in to comment.