Skip to content

Commit

Permalink
update the release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed May 6, 2023
1 parent 9a7687f commit cabdff7
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 5 deletions.
12 changes: 12 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file.

## [8.0] 2023-05-06
- [disable scroll encoding with offscreen decode worker](https://github.com/Xpra-org/xpra-html5/commit/e73861dc4750162c1905ae6bf773c74b9c63646d)
- [screenshots cannot be used with the offscreen api](https://github.com/Xpra-org/xpra-html5/commit/231589217059dcdc7c06010d1c058305a8c7c2c2)
- don't close windows [when re-connecting](https://github.com/Xpra-org/xpra-html5/commit/79ceb55b317a1c52973d83f31a3148a348e6f877) or [when closing the browser window](https://github.com/Xpra-org/xpra-html5/commit/640ee6d81ea4f0a1d49689e6974f16c2ace0f5c6)
- [closing windows is only a request](https://github.com/Xpra-org/xpra-html5/commit/8d67e87adf64f5ecd4cbfc9580c402f583f10960), [even from the menu](https://github.com/Xpra-org/xpra-html5/commit/d08f98ce20778a1dcedf26d8c003967c631b5269)
- hide options when they are not available: [`shutdown`](https://github.com/Xpra-org/xpra-html5/commit/b30082d2dee31ba4ae21e14762ff72cb9c565b96) and [`file upload`](https://github.com/Xpra-org/xpra-html5/commit/8c36971731e82050b49f11e41329c7a7552615e0)
- [remote logging arguments missing](https://github.com/Xpra-org/xpra-html5/commit/53234fbd8476600df7f4606e061d956697d6b610)
- [fix initiate-move-resize](https://github.com/Xpra-org/xpra-html5/commit/e7d1a6efbdc0b7e37d8c0eb3452d6ac662fd604e)
- cursor fixes: [cursor updates](https://github.com/Xpra-org/xpra-html5/commit/7ac5d41dd1b5b5987134a93eb35b93b78714dea5), [geometry](https://github.com/Xpra-org/xpra-html5/commit/29685b3e21b27476f56caf4539509bc0a48f795e)
- [fix vertical scroll reverse](https://github.com/Xpra-org/xpra-html5/commit/caa851d4d8540cd20e7cdf800bbc131b60f723f6)
- minor cleanups: [unused variables](https://github.com/Xpra-org/xpra-html5/commit/b6fb4b44e47930f9ced2384eec17994aec79e484), [unused function](https://github.com/Xpra-org/xpra-html5/commit/f143cf43234b22c5826f8d90e70343ae8461ac5f), [unused statements](https://github.com/Xpra-org/xpra-html5/commit/bb24f0b413aaf4083cd6536eee31efc7b8a20d16), [document empty functions](https://github.com/Xpra-org/xpra-html5/commit/f4e07565c6829e37b7fcdde1a5dc6b9d523e1886), [linter cleanup](https://github.com/Xpra-org/xpra-html5/commit/1fe68b2d04f5cafe324ee6b6163e8c1271807741), [use a more correct datatype](https://github.com/Xpra-org/xpra-html5/commit/176cf754e3e260438162d48bcb19619d24d8cbde), [improved syntax](https://github.com/Xpra-org/xpra-html5/commit/6b5dfbdf409d47ac16854a1883b2bafcab062ac6), [use the preferred keywords for variable declaration](https://github.com/Xpra-org/xpra-html5/commit/9a7687f36eb7d203d0bec21d35d4e8b907e6732d)

## [7.0] 2023-03-12

- [unable to move undecorated / CSD windows](https://github.com/Xpra-org/xpra-html5/issues/210)
Expand Down
23 changes: 20 additions & 3 deletions packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
xpra-html5 (8.0-r1425-1) UNRELEASED; urgency=low
* TODO

-- Antoine Martin antoine@xpra.org Mon, 13 Mar 2023 15:47:45 +0700 +700
* disable scroll encoding with offscreen decode worker
* screenshots cannot be used with the offscreen api
* don't close windows when re-connecting or when closing the browser window
* closing windows is only a request
* hide options when they are not available: `shutdown` and `file upload`
* remote logging arguments missing
* fix initiate-move-resize
* cursor fixes: cursor updates and geometry
* fix vertical scroll reverse
* minor cleanups:
- unused variables
- unused function
- unused statements
- document empty functions
- linter cleanup
- use a more correct datatype
- improved syntax
- use the preferred keywords for variable declaration

-- Antoine Martin antoine@xpra.org Sat, 06 May 2023 19:19:03 +0700 +700

xpra-html5 (7.0-r1424-1) UNRELEASED; urgency=low
* unable to move undecorated / CSD windows
Expand Down
22 changes: 20 additions & 2 deletions packaging/rpm/xpra-html5.spec
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,26 @@ rm -rf $RPM_BUILD_ROOT
%endif

%changelog
* Mon Mar 13 2023 Antoine Martin <antoine@xpra.org> 8.0-1425-1
- TODO
* Sat May 06 2023 Antoine Martin <antoine@xpra.org> 8.0-1425-1
- disable scroll encoding with offscreen decode worker
- screenshots cannot be used with the offscreen api
- don't close windows when re-connecting or when closing the browser window
- closing windows is only a request
- hide options when they are not available: `shutdown` and `file upload`
- remote logging arguments missing
- fix initiate-move-resize
- cursor fixes: cursor updates and geometry
- fix vertical scroll reverse
- minor cleanups:
unused variables
unused function
unused statements
document empty functions
linter cleanup
use a more correct datatype
improved syntax
use the preferred keywords for variable declaration


* Sun Mar 12 2023 Antoine Martin <antoine@xpra.org> 7.0-1424-1
- unable to move undecorated / CSD windows
Expand Down

0 comments on commit cabdff7

Please sign in to comment.