diff --git a/gdocstest.js b/gdocstest.js deleted file mode 100644 index ca918209..00000000 --- a/gdocstest.js +++ /dev/null @@ -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); -}); diff --git a/gptest.js b/gptest.js deleted file mode 100644 index 852fad98..00000000 --- a/gptest.js +++ /dev/null @@ -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); -}); diff --git a/lib/server.js b/lib/server.js index 754843c7..6b671b4e 100644 --- a/lib/server.js +++ b/lib/server.js @@ -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"); diff --git a/package.json b/package.json index 56efe4cb..90daf688 100644 --- a/package.json +++ b/package.json @@ -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" },