From 9660d10a3bb0f0f656f38764b913e84dd759396e Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Tue, 29 Mar 2016 17:56:54 -0400 Subject: [PATCH] Updated, bumped version --- README.md | 6 +++--- main.go | 2 +- templates/aboutpage.md | 40 +++++++++++++++++++++++----------------- 3 files changed, 27 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index f670fb4..193deb1 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.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) +[![Version 1.0](https://img.shields.io/badge/version-1.0-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, syntax highlighting, command line support, content-delivery, and listifying. Read on to learn more about the features. @@ -44,9 +44,9 @@ This is a self-contained notepad webserver that makes sharing easy and _fast_. T
-**Syntax highlighting**. There is CodeMirror support for many languages. Just use an extension (e.g. .py, .md, .txt, .js, ...) for your document and then you'll be able to edit/view your code in a simple and easy way. +**Syntax highlighting**. If you use a coding extension (e.g. .py, .md, .txt, .js, ...) then you'll automatically see syntax highlighting and line numbers. -![Coding syntax is provided if you use an extension](NEED GIF) +![Coding syntax is provided if you use an extension](https://raw.githubusercontent.com/schollz/cowyo/master/static/img/help7.gif)
diff --git a/main.go b/main.go index 11dfb08..a953109 100644 --- a/main.go +++ b/main.go @@ -45,7 +45,7 @@ func init() { } func main() { - VersionNum = "0.95" + VersionNum = "1.0" // _, executableFile, _, _ := runtime.Caller(0) // get full path of this file cwd, _ := os.Getwd() databaseFile := path.Join(cwd, "data.db") diff --git a/templates/aboutpage.md b/templates/aboutpage.md index c988814..7c8f072 100644 --- a/templates/aboutpage.md +++ b/templates/aboutpage.md @@ -2,9 +2,9 @@ # CowYo ## Collections of Organized Words You Open -![Version 0.95](https://img.shields.io/badge/version-0.95-brightgreen.svg) +![Version 1.0](https://img.shields.io/badge/version-1.0-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). +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, syntax highlighting, command line support, content-delivery, and listifying. Read on to learn more about the features. **CowYo** is also [Open Source](https://github.com/schollz/cowyo). ## Features **Simplicity**. The philosophy here is to *just type*. To jot a note, simply load the page at [`/`](/) and just start typing. No need to press edit, the browser will already be focused on the text. No need to press save - it will automatically save when you stop writing. The URL at [`/`](/) will redirect to an easy-to-remember name that you can use to reload the page at anytime, anywhere. But, you can also use any URL you want, e.g. [`/AnythingYouWant`](/AnythingYouWant). All pages can be rendered into HTML by adding `/view`. For example, the page [`/AnythingYouWant`](/AnythingYouWant) is rendered at [`/AnythingYouWant/view`](/AnythingYouWant/view). You can write in HTML or [Markdown](https://daringfireball.net/projects/markdown/) for page rendering. To quickly link to `/view` pages, just use `[[AnythingYouWant]]`. @@ -45,24 +45,30 @@ 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 -``` +**Syntax highlighting**. If you use a coding extension (e.g. .py, .md, .txt, .js, ...) then you'll automatically see syntax highlighting and line numbers. + +![Coding syntax is provided if you use an extension](https://raw.githubusercontent.com/schollz/cowyo/master/static/img/help7.gif)
+**CLI tools**. Want to upload/download from the command line? Its super easy. Upload/download files using `curl` with a simple command: +```bash +$ echo "Hello, world!" > hi.txt +$ curl -L --upload-file hi.txt cowyo.com + File uploaded to http://cowyo.com/hi.txt +$ curl -L cowyo.com/test.txt + Hello, world! +``` +or just skip the file-creation step and let `cowyo` figure out a name for you: +```bash +$ echo "Wow, so easy" | curl -L --upload-file "-" cowyo.com + File uploaded to http://cowyo.com/CautiousCommonLoon +$ curl -L 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.