swaywm / swaybg

Wallpaper tool for Wayland compositors
MIT License
490 stars 31 forks source link

Update compiled version string to include swaybg version when Git is used #77

Closed jdknight closed 1 month ago

jdknight commented 1 month ago

build: include swaybg version in version string when using git

Update the version population to always include the swaybg fixed version string in the final version.

This replicates the logic used in sway.

build: avoid git repository discovery when determining version

When attempting to use Git to populate commit/branch information in a version string, it is possible through repository discovery that it uses Git information not relevant to project. For example, if repository content is extract into an interim build location when using an embedded build framework (e.g. Buildroot), the project will not have its Git repository to refer to. When it cannot find its repository, it will look into its parent folders and may find the Git repository of another project and use its branch/commit information.

This commit provides an explicit path to the project's Git repository when consider commit/branch information. This will prevent any repository discovery from occurring.

See also: https://github.com/swaywm/sway/pull/8273