mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-19 17:57:22 +01:00
Compile/install wizard should disable "Next" button after compile phase is done if all firewalls failed to compile with no errors. see #2061 Added bunch of common shell error messages to make sure installer recognizes them and mark install as a failure even if ssh fails to pass termination code.
20 lines
409 B
Bash
20 lines
409 B
Bash
#-*- mode: shell-script; tab-width: 4; -*-
|
|
|
|
FWB_MAJOR_VERSION=4
|
|
FWB_MINOR_VERSION=2
|
|
FWB_MICRO_VERSION=0
|
|
|
|
# build number is like "nano" version number. I am incrementing build
|
|
# number during development cycle
|
|
#
|
|
BUILD_NUM="3467"
|
|
|
|
VERSION="$FWB_MAJOR_VERSION.$FWB_MINOR_VERSION.$FWB_MICRO_VERSION.$BUILD_NUM"
|
|
|
|
GENERATION="$FWB_MAJOR_VERSION.$FWB_MINOR_VERSION"
|
|
|
|
# Data format version
|
|
FWBUILDER_XML_VERSION=17
|
|
|
|
|