Browse Source

Release version 0.1.4

Thomas Dy 7 years ago
parent
commit
91b85145b8
4 changed files with 5 additions and 4 deletions
  1. 2 1
      README.md
  2. 1 1
      package.json
  3. 1 1
      rust-server/Cargo.toml
  4. 1 1
      rust-server/Makefile

+ 2 - 1
README.md

@@ -1,7 +1,8 @@
 # Cloudflare WebUI
 
 This is a web frontend to the Cloudflare API. It mainly lets you manage DNS
-records, but it also lets you toggle development mode and purge the cache.
+records, but it also lets you toggle development mode and purge the cache as
+well as changing the SSL mode.
 
 This was mainly built to work around Cloudflare only having [multi-user support
 for enterprise][1]. It's a simple frontend for the DNS settings and a simple

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "cloudflare-webui",
-  "version": "0.0.1",
+  "version": "0.1.4",
   "description": "Rudimentary CloudFlare WebUI",
   "main": "server.js",
   "dependencies": {

+ 1 - 1
rust-server/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "cloudflare-webui"
-version = "0.1.3"
+version = "0.1.4"
 authors = ["Thomas Dy <thatsmydoing@gmail.com>"]
 
 [dependencies]

+ 1 - 1
rust-server/Makefile

@@ -1,7 +1,7 @@
 .phony: clean
 
 OPENSSL_VER ?= 1.0.2j
-WEBUI_VER ?= 0.1.3
+WEBUI_VER ?= 0.1.4
 
 BUILD_DIR = /tmp/openssl-static-build
 OPENSSL_PKG = openssl-$(OPENSSL_VER).tar.gz