Browse Source

Next version is a minor one, not a patchlevel one. Introducing the --quiet switch makes this necessary.

tags/v1.5.0
Nils 3 years ago
parent
commit
3b0ffc4af3
4 changed files with 12 additions and 8 deletions
  1. +3
    -2
      AUTHORS
  2. +4
    -4
      CHANGELOG
  3. +4
    -1
      docs/src/generate.sh
  4. +1
    -1
      src/nsmd.cpp

+ 3
- 2
AUTHORS View File

@@ -5,10 +5,11 @@ Liles, Jonathan Moore / original-male (original author)

Coelho, Filipe / falktx (new-session-manager fork)
Hilbricht, Nils (new-session-manager fork)
Runge, David / dvzrv (new-session-manager fork)

# Individual Contributions in alphabetical surname order

Meyer, Hermann / brummer
Meyer, Hermann / brummer
Picot, Mathieu / houston
Berkelder, Rik
Runge, David / dvzrv
/ TheGreatWhiteShark

+ 4
- 4
CHANGELOG View File

@@ -5,10 +5,10 @@ Two empty lines before the next entry.
Contributors notice after the change (LastName, FirstName / nick)


## 2021-01-15 1.4.1
WARNING: Next scheduled release (2021-04-15) will switch the default session dir to XDG Data Path.
Prepare to either
1) Move old Session to the new root directory
## 2021-01-15 1.5.0
WARNING: Next scheduled release (2021-04-15) will switch the default session dir to an XDG Path.
With the next release prepare to either
1) Move old sessions to the new root directory (preferred)
2) Symlink "~/NSM Sessions" to the new root directory
3) use the nsmd --session-root commandline argument.



+ 4
- 1
docs/src/generate.sh View File

@@ -12,6 +12,8 @@
# generate manpages
# convert all .adoc files to html in /docs/ (This enables github to directly present this dir as website)
#
# WARNING: You still need to manually edit the date and version in /CHANGELOG
#
#We do _not_ change the copyright date in files license-headers.
#They only exist to mark to year of the fork. In the future dates might be removed completely.

@@ -87,4 +89,5 @@ help2man ../../build/nsm-proxy-gui --version-string="nsm-proxy-gui Version $VER
help2man ../../build/jackpatch --version-string="jackpatch Version $VERSION" --no-info --include manpage-common.h2m > jackpatch.1

echo
echo "Finished. You need to commit your changes to git manually"
echo "Don't forget to adjust the version and date in CHANGELOG manually."
echo "Finished. You need to commit your changes to git manually."

+ 1
- 1
src/nsmd.cpp View File

@@ -70,7 +70,7 @@ static char *session_root;
#define NSM_API_VERSION_MAJOR 1
#define NSM_API_VERSION_MINOR 1
#define NSM_API_VERSION_PATCH 0
#define VERSION_STRING "1.4.0"
#define VERSION_STRING "1.5.0"

#define ERR_OK 0
#define ERR_GENERAL_ERROR -1


Loading…
Cancel
Save