xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit db90523d2347e09f19f9cf65926f41f996a86f90

Make mxe-deploy and deploy more consistent
* Validate version format.
* Don't require creating a separate branch for the release.
Author: xaizek
Author date (UTC): 2025-03-28 13:57
Committer name: xaizek
Committer date (UTC): 2025-03-28 13:57
Parent(s): 538f1b151dd71fa9c105bbba5c80fcc9563f6f80
Signing key: 99DC5E4DB05F6BE2
Tree: 323b72ca5ef2e68005132b854b67870cc7ee0693
File Lines added Lines deleted
scripts/mxe-deploy 14 2
File scripts/mxe-deploy changed (mode: 100755) (index 0cac59251..ea9aad1c5)
... ... if [ $# -ne 1 ]; then
20 20 fi fi
21 21
22 22 version="$1" version="$1"
23 case "$version" in
24 [0-9].[0-9][0-9].[0-9]-beta);;
25 [0-9].[0-9][0-9]-beta);;
26 [0-9].[0-9]-beta);;
27 [0-9].[0-9][0-9].[0-9]);;
28 [0-9].[0-9][0-9]);;
29 [0-9].[0-9]);;
30 *)
31 echo "ERROR: unrecognized version format: $version"
32 exit 1
33 esac
23 34
24 35 REMOTE_NAME="${REMOTE_NAME:-win}" REMOTE_NAME="${REMOTE_NAME:-win}"
25 36 REMOTE_DIR="${REMOTE_DIR:-/c/repos/vifm}" REMOTE_DIR="${REMOTE_DIR:-/c/repos/vifm}"
 
... ... set -e
33 44
34 45 echo ::: BUILDING... ::: echo ::: BUILDING... :::
35 46
36 ( cd "$W32_DIR" && "$W32_BUILD_SCR" "$version" )
37 ( cd "$W64_DIR" && "$W64_BUILD_SCR" "$version" )
47 tag="v$version"
48 ( cd "$W32_DIR" && "$W32_BUILD_SCR" "$tag" )
49 ( cd "$W64_DIR" && "$W64_BUILD_SCR" "$tag" )
38 50
39 51 echo ::: CLEANING UP REMOTE DIRECTORIES... ::: echo ::: CLEANING UP REMOTE DIRECTORIES... :::
40 52
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master