commit
bfd44f1774
|
@ -5,18 +5,18 @@ info:
|
||||||
repository_url: https://github.com/Bornholm/formidable
|
repository_url: https://github.com/Bornholm/formidable
|
||||||
options:
|
options:
|
||||||
commits:
|
commits:
|
||||||
# filters:
|
filters:
|
||||||
# Type:
|
Type:
|
||||||
# - feat
|
- feat
|
||||||
# - fix
|
- fix
|
||||||
# - perf
|
- perf
|
||||||
# - refactor
|
- refactor
|
||||||
commit_groups:
|
commit_groups:
|
||||||
# title_maps:
|
title_maps:
|
||||||
# feat: Features
|
feat: Features
|
||||||
# fix: Bug Fixes
|
fix: Bug Fixes
|
||||||
# perf: Performance Improvements
|
perf: Performance Improvements
|
||||||
# refactor: Code Refactoring
|
refactor: Code Refactoring
|
||||||
header:
|
header:
|
||||||
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$"
|
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$"
|
||||||
pattern_maps:
|
pattern_maps:
|
||||||
|
|
|
@ -3,5 +3,4 @@
|
||||||
/node_modules
|
/node_modules
|
||||||
/internal/server/assets/dist/*
|
/internal/server/assets/dist/*
|
||||||
dist/
|
dist/
|
||||||
/CHANGELOG.md
|
|
||||||
/tools
|
/tools
|
||||||
|
|
|
@ -0,0 +1,47 @@
|
||||||
|
|
||||||
|
<a name="0.0.5"></a>
|
||||||
|
## [0.0.5](https://github.com/Bornholm/formidable/compare/0.0.4...0.0.5) (2022-08-01)
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* ansible-vault values auto retagging in yaml format
|
||||||
|
|
||||||
|
|
||||||
|
<a name="0.0.4"></a>
|
||||||
|
## [0.0.4](https://github.com/Bornholm/formidable/compare/0.0.3...0.0.4) (2022-06-15)
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* add browserless mode
|
||||||
|
* **install:** fix script execution on alpine
|
||||||
|
|
||||||
|
|
||||||
|
<a name="0.0.3"></a>
|
||||||
|
## [0.0.3](https://github.com/Bornholm/formidable/compare/0.0.2-1...0.0.3) (2022-06-15)
|
||||||
|
|
||||||
|
|
||||||
|
<a name="0.0.2-1"></a>
|
||||||
|
## [0.0.2-1](https://github.com/Bornholm/formidable/compare/0.0.2...0.0.2-1) (2022-05-12)
|
||||||
|
|
||||||
|
|
||||||
|
<a name="0.0.2"></a>
|
||||||
|
## [0.0.2](https://github.com/Bornholm/formidable/compare/install-script...0.0.2) (2022-05-12)
|
||||||
|
|
||||||
|
|
||||||
|
<a name="install-script"></a>
|
||||||
|
## [install-script](https://github.com/Bornholm/formidable/compare/0.0.1...install-script) (2022-05-11)
|
||||||
|
|
||||||
|
|
||||||
|
<a name="0.0.1"></a>
|
||||||
|
## [0.0.1](https://github.com/Bornholm/formidable/compare/0.0.0...0.0.1) (2022-05-10)
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* values updaters
|
||||||
|
* url based multi-format loaders/decoders
|
||||||
|
* url based data loading system
|
||||||
|
|
||||||
|
|
||||||
|
<a name="0.0.0"></a>
|
||||||
|
## 0.0.0 (2022-05-04)
|
||||||
|
|
26
Makefile
26
Makefile
|
@ -9,6 +9,8 @@ GITCHLOG_ARGS ?=
|
||||||
SHELL := /bin/bash
|
SHELL := /bin/bash
|
||||||
RUN_INSTALL_TESTS ?= yes
|
RUN_INSTALL_TESTS ?= yes
|
||||||
|
|
||||||
|
FORMIDABLE_VERSION := 0.0.5
|
||||||
|
|
||||||
.PHONY: help
|
.PHONY: help
|
||||||
help: ## Display this help
|
help: ## Display this help
|
||||||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
||||||
|
@ -60,9 +62,31 @@ node_modules:
|
||||||
release: deps
|
release: deps
|
||||||
( set -o allexport && source .env && set +o allexport && VERSION=$(GORELEASER_VERSION) curl -sfL https://goreleaser.com/static/run | bash /dev/stdin $(GORELEASER_ARGS) )
|
( set -o allexport && source .env && set +o allexport && VERSION=$(GORELEASER_VERSION) curl -sfL https://goreleaser.com/static/run | bash /dev/stdin $(GORELEASER_ARGS) )
|
||||||
|
|
||||||
|
.PHONY: start-release
|
||||||
|
start-release:
|
||||||
|
#git flow release start $(FORMIDABLE_VERSION)
|
||||||
|
|
||||||
|
# Update package.json version
|
||||||
|
jq '.version = "$(FORMIDABLE_VERSION)"' package.json | sponge package.json
|
||||||
|
git add package.json
|
||||||
|
git commit -m "chore: bump to version $(FORMIDABLE_VERSION)"
|
||||||
|
|
||||||
|
# Generate updated changelog
|
||||||
|
$(MAKE) GITCHLOG_ARGS='--next-tag $(FORMIDABLE_VERSION)' changelog
|
||||||
|
git add CHANGELOG.md
|
||||||
|
git commit -m "chore: update changelog for version $(FORMIDABLE_VERSION)"
|
||||||
|
|
||||||
|
echo "Commit you additional modifications then execute 'make finish-release'"
|
||||||
|
|
||||||
|
.PHONY: finish-release
|
||||||
|
finish-release:
|
||||||
|
git flow release finish -m "v$(FORMIDABLE_VERSION)"
|
||||||
|
git push --all
|
||||||
|
git push --tags
|
||||||
|
|
||||||
.PHONY: changelog
|
.PHONY: changelog
|
||||||
changelog:
|
changelog:
|
||||||
go run -mod=readonly github.com/git-chglog/git-chglog/cmd/git-chglog@v0.15.1 $(GITCHLOG_ARGS)
|
go run -mod=readonly github.com/git-chglog/git-chglog/cmd/git-chglog@v0.15.1 $(GITCHLOG_ARGS) > CHANGELOG.md
|
||||||
|
|
||||||
install-git-hooks:
|
install-git-hooks:
|
||||||
git config core.hooksPath .githooks
|
git config core.hooksPath .githooks
|
|
@ -6,6 +6,8 @@ Web-based - but terminal compatible ! - little form editor using [JSONSchema](ht
|
||||||
|
|
||||||
The generated web UI does not use Javascript and can be used with terminal browsers like [w3m](https://en.wikipedia.org/wiki/W3m) or [lynx](https://en.wikipedia.org/wiki/Lynx_(web_browser)).
|
The generated web UI does not use Javascript and can be used with terminal browsers like [w3m](https://en.wikipedia.org/wiki/W3m) or [lynx](https://en.wikipedia.org/wiki/Lynx_(web_browser)).
|
||||||
|
|
||||||
|
> ⚠ Formidable is currently in a very alpha stage ! Expect breaking changes...
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
### Manually
|
### Manually
|
||||||
|
@ -93,6 +95,10 @@ echo '{}' | FORMIDABLE_BROWSER="firefox" frmd \
|
||||||
|
|
||||||
> TODO: Write doc + example
|
> TODO: Write doc + example
|
||||||
|
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
[See `CHANGELOG.md`](./CHANGELOG.md)
|
||||||
|
|
||||||
## Licence
|
## Licence
|
||||||
|
|
||||||
AGPL-3.0
|
AGPL-3.0
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "formidable",
|
"name": "formidable",
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
|
|
Loading…
Reference in New Issue