Skip to content

Commit

Permalink
thingino: change uppercase name to a normal capitalization.
Browse files Browse the repository at this point in the history
  • Loading branch information
themactep committed Jun 3, 2024
1 parent 9cad6a7 commit 664c003
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion scripts/menu/main-menu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function show_help() {
local item=$1
case "$item" in
"HELP bootstrap")
show_help_msgbox "The 'Bootstrap' option initiates the installation of all necessary prerequisite software required for the compilation of the firmware.\n\nThis includes tools and libraries that are essential for building the firmware from source. Selecting this will ensure your environment is correctly set up to proceed with building THINGINO without encountering missing dependencies.\n\nRequires super-user privileges." 13 80;;
show_help_msgbox "The 'Bootstrap' option initiates the installation of all necessary prerequisite software required for the compilation of the firmware.\n\nThis includes tools and libraries that are essential for building the firmware from source. Selecting this will ensure your environment is correctly set up to proceed with building Thingino without encountering missing dependencies.\n\nRequires super-user privileges." 13 80;;
"HELP menuconfig")
show_help_msgbox "Launches a graphical interface for configuring the toolchain, kernel options, and the packages that will be included in your root filesystem. It's a crucial step for customizing your build according to your needs." 8;;
"HELP br-linux-menuconfig")
Expand Down
8 changes: 4 additions & 4 deletions scripts/menu/menu-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ UI=dialog
GIT_BRANCH=$(git branch | grep ^* | awk '{print $2}')
GIT_HASH=$(git show -s --format=%H)
GIT_TIME=$(git show -s --format=%ci)
BACKTITLE="THINGINO Firmware - ${GIT_BRANCH}+${GIT_HASH:0:7}, ${GIT_TIME}"
DIALOG_COMMON=($UI --keep-tite --colors --backtitle "$BACKTITLE" --cancel-label "Exit" --title "THINGINO Buildroot")
BACKTITLE="Thingino Firmware - ${GIT_BRANCH}+${GIT_HASH:0:7}, ${GIT_TIME}"
DIALOG_COMMON=($UI --keep-tite --colors --backtitle "$BACKTITLE" --cancel-label "Exit" --title "Thingino Buildroot")

temp_rc=$(mktemp)
temp_ip=$(mktemp)
Expand All @@ -17,7 +17,7 @@ function show_help_msgbox() {
local height=${2:-10} # Default height is 10 if not provided
local width=${3:-70} # Default width is 70 if not provided

"${DIALOG_COMMON[@]}" --title "THINGINO help" --msgbox "$message" $height $width
"${DIALOG_COMMON[@]}" --title "Thingino help" --msgbox "$message" $height $width
}

check_and_install_dialog() {
Expand Down Expand Up @@ -61,4 +61,4 @@ no_device() {

closed_dialog() {
echo "Dialog was closed or escaped." >&2
}
}
2 changes: 1 addition & 1 deletion scripts/menu/menu2-guided.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ provides basic configurations necessary to initialize the hardware.\n\nExperimen
"HELP 2")
show_help_msgbox "The 'Bootstrap' option initiates the installation of all necessary prerequisite software required for \
the compilation of the firmware.\n\nThis includes tools and libraries that are essential for building the firmware from source. Selecting \
this will ensure your environment is correctly set up to proceed with building THINGINO without encountering missing dependencies. \
this will ensure your environment is correctly set up to proceed with building Thingino without encountering missing dependencies. \
\n\nRequires super-user privileges." 14;;
"HELP 3")
show_help_msgbox "This option starts the firmware compilation process. The duration of this process depends on your \
Expand Down
14 changes: 7 additions & 7 deletions user-menu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ function main_menu() {
check_and_install_dialog
while true; do
CHOICE=$("${DIALOG_COMMON[@]}" --help-button --menu \
"\Zb\Z1THINGINO\Zn is an open-source replacement firmware designed specifically for \Zr\Z4Ingenic\Zn SoC based devices, offering freedom from restrictive stock firmware and providing a user-friendly alternative to other complex options. \
\n\nJoin us in unlocking the full potential of your hardware with \Zb\Z1THINGINO\Zn's robust and customizable features! \
"\Zb\Z1Thingino\Zn is an open-source replacement firmware designed specifically for \Zr\Z4Ingenic\Zn SoC based devices, offering freedom from restrictive stock firmware and providing a user-friendly alternative to other complex options. \
\n\nJoin us in unlocking the full potential of your hardware with \Zb\Z1Thingino\Zn's robust and customizable features! \
\n\nSelect an option:" 18 80 20 \
"1" "Introduction" \
"2" "Guided Compilation" \
Expand All @@ -50,15 +50,15 @@ function show_help() {
local item=$1
case "$item" in
"HELP 1")
show_help_msgbox "Displays a comprehensive introduction to THINGINO, outlining its core features and benefits, and how it transforms your IP camera experience." 7;;
show_help_msgbox "Displays a comprehensive introduction to Thingino, outlining its core features and benefits, and how it transforms your IP camera experience." 7;;
"HELP 2")
show_help_msgbox "Initiates the guided compilation process, which assists you step-by-step in setting up THINGINO on your device. Ideal for users who are configuring THINGINO for the first time." 7;;
show_help_msgbox "Initiates the guided compilation process, which assists you step-by-step in setting up Thingino on your device. Ideal for users who are configuring Thingino for the first time." 7;;
"HELP 3")
show_help_msgbox "Launches you to the main menu, where you can access all key features and settings of THINGINO. Navigate through options to customize and control your firmware installation." 7;;
show_help_msgbox "Launches you to the main menu, where you can access all key features and settings of Thingino. Navigate through options to customize and control your firmware installation." 7;;
"HELP 4")
show_help_msgbox "Exits the THINGINO program safely." 5;;
show_help_msgbox "Exits the Thingino program safely." 5;;
*)
show_help_msgbox "No help information is available for the selected item. Please choose another option or consult the thingino wiki for more details.";;
show_help_msgbox "No help information is available for the selected item. Please choose another option or consult the Thingino Wiki for more details.";;
esac
}

Expand Down

0 comments on commit 664c003

Please sign in to comment.