diff --git a/CHANGELOG.md b/CHANGELOG.md index bd0f1cc..2573eaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) with some edits, and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# 1.1.4 + +## What's Changed +* chore: add missing gif in README + +**Full Changelog**: https://github.com/airscripts/analscript/compare/1.1.3...1.1.4 + # 1.1.3 ## What's Changed diff --git a/README.md b/README.md index 443eae4..a9cbc57 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,5 @@ -

- Logo
-

-

+ Logo
Analscript

@@ -10,6 +7,10 @@ Analscript is an esoteric programming language, that takes inspiration from the fallen Anal Lang and serves, the purpose to be a modern approach for writing anally fast stuff.

+

+ Usage GIF +

+ ## Contents - [Installation](#installation) - [Usage](#usage) @@ -34,13 +35,15 @@ analscript help This command will show you something like this: ``` -Analscript Version 1.1.3 +Analscript Version 1.1.4 Copyright (c) 2023 by Airscript Usage: analscript command [options] [arguments] Commands: + run Run a .anal file + compile Compile any file to .anal anallify Encode string to anal stringify Decode anal to string help Show this help @@ -52,7 +55,7 @@ Arguments: Nothing to see here ``` -As you can see, you can as of this latest version, have access to two more commands beside help: *anallify* and *stringify*. +As you can see, you can as of this latest version, have access to a variety of commands. Use them to write or read your anally marvelous softwares! ## Contributing diff --git a/VERSION b/VERSION index 9c1218c..1b87bcd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.3 \ No newline at end of file +1.1.4 \ No newline at end of file diff --git a/assets/gifs/usage.gif b/assets/gifs/usage.gif new file mode 100644 index 0000000..0d2020c Binary files /dev/null and b/assets/gifs/usage.gif differ diff --git a/lib/help.js b/lib/help.js index b4334e2..2f2af59 100644 --- a/lib/help.js +++ b/lib/help.js @@ -1,4 +1,4 @@ -const version = 'Analscript, version 1.1.3'; +const version = 'Analscript, version 1.1.4'; const copyright = '\nCopyright (c) 2023 by Airscript\n'; const usage = ` diff --git a/package.json b/package.json index f3f7316..96e6814 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "type": "module", - "version": "1.1.3", + "version": "1.1.4", "name": "analscript", "main": "analscript.js", "description": "A modern approach for writing anally fast stuff.",