Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

148 lines
6.2KB

  1. #Changelog
  2. Format: Double ## for a version number followed by a space, ISO-Date, Semantic Versioning:
  3. ## YYYY-MM-DD major.minor.patch
  4. Two empty lines before the next entry.
  5. External contributors notice at the end of the line: (LastName, FirstName / nick)
  6. ## 2022-10-15 1.6.1
  7. Absolutely make sure that all clients of the session are closed when closing the session.
  8. This solves the invisible, hidden clients still running even after nsmd quit itself.
  9. Decrease wait time for such clients at session quit from extreme 60s to very long 30s.
  10. For lockfiles fall back to hardcoded /run/user/<user-id> when $XDG_RUNTIME_DIR is not available on the system.
  11. ## 2022-04-15 1.6.0
  12. nsmd:
  13. Now follows the XDG Base Directory Specifications.
  14. Default session directory moved from ~/NSM Sessions/ to $XDG_DATA_HOME/nsm/ (see issue #gh-15)
  15. The old path ~/NSM Sessions/ is still supported and has priority, for now. This may be switched off in the future.
  16. Lockfiles fixed (see issue #gh-31)
  17. Lockfiles are now in $XDG_RUNTIME_DIR/nsm/
  18. Lockfiles now each contain the session path, the osc NSM_URL and the nsmd PID
  19. One daemon file for each currently running nsmd is created in $XDG_RUNTIME_DIR/nsm/d/ containing the osc url. This enables discovery of running daemons.
  20. New section in the API documentation for the above.
  21. Handle write-protected session files and related errors on save. They will not crash the daemon anymore.
  22. Fixes and guards against trying to load non-existing sessions and creating new sessions under existing names
  23. Handle various crashes-on-exit and replace them with controlled exits.
  24. Jackpatch Version 1.0.0 (previously 0.2.0):
  25. Jackpatch will finally not "forget" connections anymore. See #gh-74
  26. Reduce verbosity level of log ouput.
  27. Document 'hidden' standalone (no NSM) command line mode in --help
  28. Handle SIGNALs even when in standalone mode
  29. Add a jackpatch desktop file with X-NSM-Capable=true and X-NSM-Exec=jackpatch and NoDisplay=true
  30. NSM-Proxy:
  31. Add a nsm-proxy desktop file with X-NSM-Capable=true and X-NSM-Exec=nsm-proxy and NoDisplay=true
  32. ## 2022-01-15 1.5.3
  33. Add [jackpatch] to terminal log output of jackpatch.
  34. Remove hardcoded ANSI colors from terminal log output
  35. ## 2021-07-15 1.5.2
  36. pynsm2 library: Fixed a rare crash, where the hostname must be case sensitive but Pythons urlparse forced lower-case.
  37. ## 2021-03-19 1.5.1
  38. Web-URLs changed to https://new-session-manager.jackaudio.org and https://github.com/jackaudio/new-session-manager
  39. No codechanges.
  40. ## 2021-01-15 1.5.0
  41. WARNING: Next scheduled release (2021-04-15) will switch the default session root
  42. to $XDG_DATA_HOME ( default on most distributions: ~/.local/share/nsm/ )
  43. With the next release prepare to do one of the following:
  44. * Move old sessions to the new root directory (preferred)
  45. * Symlink "~/NSM Sessions" to the new root directory
  46. * use the nsmd --session-root commandline argument.
  47. nsmd:
  48. Fix session discovery to not report nested sessions anymore. Also more robust file system error handling.
  49. Command line option --quiet: Suppress messages except warnings and errors
  50. Protect against orphaned clients or daemons when the server, or even a GUI, crashes.
  51. Replace cowboy-slang in info-level OSC with descriptive, technical messages.
  52. Legacy-GUI:
  53. Fix manpage description and usage with the correct executable name
  54. Fix resizing to very small and back. ( / TheGreatWhiteShark )
  55. NSM-Proxy:
  56. Multiple layout and style fixes. Better texts for beginners.
  57. API:
  58. NSM_API_VERSION_PATCH from 0 to 1 (1.1.0 -> 1.1.1)
  59. Please see API document chapter "Changes in API Version 1.1.1"
  60. Extras:
  61. This repository now contains extras (libraries, programs, documentation etc.)
  62. Extras are technically not connected to the main programs of this repository.
  63. There is no dependency to any "extra" nor any license implications.
  64. Please read extras/README.md.
  65. nsm.h was moved to extras/nsm.h
  66. "extras/pynsm" is now a part of NEW-SM. It was a standalone git repo until now.
  67. ## 2020-07-15 1.4.0
  68. Add documentation and manpages.
  69. Legacy-GUI:
  70. Overhaul look and feel.
  71. Rewrite labels and buttons with unambiguous descriptions.
  72. Protect text-input dialog windows from empty strings, like "Add New Client" or "New Session"
  73. Scale icons, support more icon formats.
  74. Show all icons and buttons when attaching to a running nsmd session
  75. Various small fixes.
  76. Always show correct session name, no matter how the session was loaded or how the GUI was started
  77. nsmd:
  78. NSM_API_VERSION_MINOR from 0 to 1 (1.0 -> 1.1)
  79. Repair nsmd to correctly send client data when running headless and a GUI announces later.
  80. ClientId generation now prevent collision with existing IDs.
  81. nsmd command line option --load-session to directly load one (Berkelder, Rik)
  82. Better detection of clients that failed to launch leads to faster session startup (by 5 seconds)
  83. Users get informed by client-label if an executable is not present on the system or permission denied
  84. Fixed reply for listing sessions from a plain "Done." to proper reply path with empty string as terminal symbol "/reply", "/nsm/server/list", ""
  85. Fix operation reply to last treated client instead to reply to sender (Picot, Mathieu / houston)
  86. /nsm/gui/session/name send consistent session name/relative-path pair to the annouced GUI, no matter how the session was loaded.
  87. nsm.h
  88. :optional-gui: support to nsm.h, for other applications to include and use. (Meyer, Hermann / brummer)
  89. ## 2020-06-20 1.3.2
  90. Rename new-session-manager executable to nsm-legacy-gui to prevent future confusion.
  91. ## 2020-06-20 1.3.1
  92. Add header copyright even to unchanged files to adhere to stricter packaging requirements.
  93. Meson can now switch off individual executables and will stop/error when trying to build without dependencies.
  94. ## 2020-06-17 1.3.0
  95. Rebranding to "new session manager"
  96. Upstream GUI tools "non-session-manager" and "nsm-proxy" converted to standard FLTK instead of a custom toolkit
  97. Changed build system to meson
  98. License upgraded to GPLv3
  99. Simplified file structure
  100. Fix compiler warnings.
  101. ## 2020-04-19 1.2.1
  102. Current state of upstream Non Session Manager v1.2 including unreleased /nsm/gui/session/root
  103. ## 2017-07-08 1.2.0
  104. Last release of Non-Session-Manager.
  105. Commit 1904aba516341287ac297cefbbcd185f643e5538
  106. ## 2012-03-03 1.1.0
  107. Initial release of Non-Session-Manager.
  108. https://non.tuxfamily.org/wiki/2012-03-03%20Release%20Announcement%20v1.1.0