From 4d34638b8198338e0b3cfae685deeda6051d56f3 Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Mon, 28 Mar 2016 20:20:47 -0400 Subject: [PATCH] Bumped version, updated README Former-commit-id: 28b93329d92d3d7d01ebdbb42b7d1c20f5fd0518 [formerly a70573f0f01d5151b5288bd289b399e098317c92] [formerly 33bc07777f90f36c3f9829f9e4971a5e3119cc55 [formerly a0c57004a84f040357b4d4933588c52788ded482]] Former-commit-id: 570e2d901d8732cfc71ffbe95f18a91570e0d00a [formerly 52a740c2799400a2c12dcc1080cb60ca134ba6eb] Former-commit-id: 7536551aa08126c773bad299754194c8f148adfb --- README.md | 2 +- templates/aboutpage.md | 20 +++++++++++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9d62782..5551905 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # [cowyo.com](http://cowyo.com/) -[![Version 0.95](https://img.shields.io/badge/version-0.94-brightgreen.svg)]() [![Go Report Card](https://goreportcard.com/badge/github.com/schollz/cowyo)](https://goreportcard.com/report/github.com/schollz/cowyo) [![Join the chat at https://gitter.im/schollz/cowyo](https://badges.gitter.im/schollz/cowyo.svg)](https://gitter.im/schollz/cowyo?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[![Version 0.95](https://img.shields.io/badge/version-0.95-brightgreen.svg)]() [![Go Report Card](https://goreportcard.com/badge/github.com/schollz/cowyo)](https://goreportcard.com/report/github.com/schollz/cowyo) [![Join the chat at https://gitter.im/schollz/cowyo](https://badges.gitter.im/schollz/cowyo.svg)](https://gitter.im/schollz/cowyo?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) This is a self-contained notepad webserver that makes sharing easy and _fast_. The most important feature here is *simplicity*. There are many other features as well including versioning, page locking, self-destructing messages, encryption, math support, and listifying. Read on to learn more about the features. diff --git a/templates/aboutpage.md b/templates/aboutpage.md index e83432f..c988814 100644 --- a/templates/aboutpage.md +++ b/templates/aboutpage.md @@ -2,7 +2,7 @@ # CowYo ## Collections of Organized Words You Open -![Version 0.94](https://img.shields.io/badge/version-0.94-brightgreen.svg) +![Version 0.95](https://img.shields.io/badge/version-0.95-brightgreen.svg) This is a self-contained wiki webserver that makes sharing easy and _fast_. The most important feature here is *simplicity*. There are many other features as well including versioning, page locking, self-destructing messages, encryption, math support, and listifying. Read on to learn more about the features. **CowYo** is also [Open Source](https://github.com/schollz/cowyo). @@ -45,6 +45,24 @@ This is a self-contained wiki webserver that makes sharing easy and _fast_. The
+**CLI support**. Want to upload/download from a server? Its super easy. Upload/download files like this: +```bash +$ echo "Hello, world!" > hi.txt +$ curl --upload-file hi.txt cowyo.com + File uploaded to http://cowyo.com/hi.txt +$ curl cowyo.com/test.txt + Hello, world! +``` +or just skip the file-creation step, +```bash +$ echo "Wow, so easy" | curl --upload-file "-" cowyo.com + File uploaded to http://cowyo.com/CautiousCommonLoon +$ curl cowyo.com/CautiousCommonLoon + Wow, so easy +``` + +
+ **Keyboard Shortcuts**. Quickly transition between Edit/View/List by using `Ctl+Shift+E` to Edit, `Ctl+Shift+Z` to View, and `Ctl+Shift+L` to Listify. **Admin controls**. The Admin can view/delete all the documents by setting the `-a YourAdminKey` when starting the program. Then the admin has access to the `/ls/YourAdminKey` to view and delete any of the pages.