Increment version number

This commit is contained in:
Calvin Montgomery 2014-07-13 22:13:16 -07:00
parent 989a737ea4
commit b1709758fd
4 changed files with 2 additions and 21 deletions

View File

@ -1,8 +0,0 @@
var gi = require('./lib/get-info');
var gd = gi.Getters.gd;
gd(process.argv[2], function (err, data) {
if (err) console.error(err)
else console.log(data.meta.params.map(function (p) { return decodeURIComponent(p.value); }));
process.exit(0);
});

View File

@ -1,11 +0,0 @@
var gi = require('./lib/get-info');
var gp = gi.Getters.gp;
var link = process.argv[2];
var id = link.replace(/https:\/\/plus\.google\.com\/photos\/(\d+)\/albums\/(\d+)\/(\d+)/, "$1_$2_$3");
gp(id, function (err, data) {
if (err) console.error(err)
else console.log(data);
process.exit(0);
});

View File

@ -9,7 +9,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
const VERSION = "3.3.1";
const VERSION = "3.3.2";
var singleton = null;
var Config = require("./config");

View File

@ -2,7 +2,7 @@
"author": "Calvin Montgomery",
"name": "CyTube",
"description": "Online media synchronizer and chat",
"version": "3.3.1",
"version": "3.3.2",
"repository": {
"url": "http://github.com/calzoneman/sync"
},