diff --git a/changelog.txt b/changelog.txt index b1b28c7..fa4cbb0 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,9 @@ +vrel 0.1.6: + - Reduced max paste size (10MB -> 5MB). + - Switched to HTTP 1.0 + - Added mimetype saving in /p/ & restitution in /g/ + - Added /t/ for raw text + - Added file upload vrel 0.1.5: - Reduced max paste size (15MB -> 10MB). - Doubled the default max lifetime (3 months -> 6 months). diff --git a/vrel.lua b/vrel.lua index 125a488..36656f7 100644 --- a/vrel.lua +++ b/vrel.lua @@ -1,5 +1,5 @@ #!/bin/lua ---- vrel v0.1.5: online paste service, in 256 lines of Lua (max line lenght = 256). +--- vrel v0.1.6: online paste service, in 256 lines of Lua (max line lenght = 256). -- This module requires LuaSocket 2.0.2, and debug mode requires LuaFileSystem 1.6.3. Install pygmentize for the optional syntax highlighting. If you want persistance for paste storage, install lsqlite3. vrel should work with Lua 5.1 to 5.3. math.randomseed(os.time()) local hasConfigFile, config = pcall(dofile, "config.lua") if not hasConfigFile then config = {} end