Skip to content

Commit

Permalink
fixup README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mulle-nat committed Jan 13, 2024
1 parent 2a29344 commit 095c236
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 37 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ and mixes, as a datasource for the template variables.

```
Usage:
mulle-scion [options] <input> <datasource> [output] [arguments]
mulle-scion [options] <input> [datasource] [output] [arguments]
The Objective-C Template processor
See: https://github.com/mulle-kybernetik/MulleScion
Expand Down Expand Up @@ -51,6 +51,7 @@ Arguments:
Examples:
echo '***{{ VALUE }}***' | mulle-scion - args - VALUE="VfL Bochum 1848"
echo '***{{ __ARGV__[ 0]}}***' | mulle-scion - none - "VfL Bochum 1848"
```


Expand Down Expand Up @@ -141,10 +142,11 @@ Install the requirements:
| Requirements | Description
|----------------------------------------------|-----------------------
| [Foundation](https://github.com/MulleFoundation/Foundation) | 💍 MulleFoundation with improved compatibility and legacy support
| [Foundation-startup](https://github.com/MulleFoundation/Foundation-startup) | ▶️ Startup library for MulleFoundation
| [Foundation-startup](https://github.com/MulleFoundation/Foundation-startup) | ▶️ Startup code for the Foundation (mulle-objc)
| [MulleHoedown](https://github.com/MulleWeb/MulleHoedown) | 💃🏼 Markdown support for mulle-objc
| [MulleWebServer](https://github.com/MulleWeb/MulleWebServer) | 🤽🏻‍♂️ Web Server based on civetweb for mulle-objc
| [MulleScion](https://github.com/MulleWeb/MulleScion) | 🌱 A modern template engine for Objective C
| [MulleBashStringExpansion](https://github.com/MulleWeb/MulleBashStringExpansion) | 🤯 Bash like string expansion

Download the latest [tar](https://github.com/MulleWeb/mulle-scion/archive/refs/tags/latest.tar.gz) or [zip](https://github.com/MulleWeb/mulle-scion/archive/refs/tags/latest.zip) archive and unpack it.

Expand Down
14 changes: 11 additions & 3 deletions cola/properties.plist
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
user="MulleWeb";
repo="mulle-scion";
homepage="https://github.com/MulleWeb/mulle-scion";
license="BSD-3-Clause"
license="BSD-3-Clause";
};
dependencies =
(
Expand All @@ -20,7 +20,7 @@
user="MulleFoundation";
},
{
description="▶️ Startup library for MulleFoundation";
description="▶️ Startup code for the Foundation (mulle-objc)";
domain="github";
name="Foundation-startup";
repo="Foundation-startup";
Expand Down Expand Up @@ -50,6 +50,14 @@
repo="MulleScion";
url="https://github.com/MulleWeb/MulleScion";
user="MulleWeb";
},
{
description="🤯 Bash like string expansion";
domain="github";
name="MulleBashStringExpansion";
repo="MulleBashStringExpansion";
url="https://github.com/MulleWeb/MulleBashStringExpansion";
user="MulleWeb";
}
)
);
}
2 changes: 1 addition & 1 deletion cola/usage.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Usage:
mulle-scion [options] <input> <datasource> [output] [arguments]
mulle-scion [options] <input> [datasource] [output] [arguments]

The Objective-C Template processor
See: https://github.com/mulle-kybernetik/MulleScion
Expand Down
75 changes: 45 additions & 30 deletions overview.dot.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/*
* version: major, minor, patch
*/
#define MULLE__SCION_VERSION ((1860 << 20) | (0 << 8) | 1)
#define MULLE__SCION_VERSION ((1860UL << 20) | (0 << 8) | 2)


static inline unsigned int mulle_scion_get_version_major( void)
Expand Down

0 comments on commit 095c236

Please sign in to comment.