Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 1.0.9 #929

Merged
merged 1 commit into from
Dec 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## [1.0.9](https://github.com/fvwmorg/fvwm3/tree/1.0.9) (2023-12-03)

## What's Changed
### Enhancements
* Add Keywords and Icon to fvwm3.desktop file. by @somiaj in https://github.com/fvwmorg/fvwm3/pull/917
* Add configure option to generate html man pages. by @somiaj in https://github.com/fvwmorg/fvwm3/pull/920
* Update Chinese translate by @louies0623 in https://github.com/fvwmorg/fvwm3/pull/923
* ta/monitor ordering by @ThomasAdam in https://github.com/fvwmorg/fvwm3/pull/919
* WIP: MacOS Support by @ThomasAdam in https://github.com/fvwmorg/fvwm3/pull/911
* Add Style CornerLength by @somiaj in https://github.com/fvwmorg/fvwm3/pull/928
### Other Changes
* Infostore: guard against UAF by @ThomasAdam in https://github.com/fvwmorg/fvwm3/pull/908
* recapture: fix incorrect handling of InitialState by @ThomasAdam in https://github.com/fvwmorg/fvwm3/pull/907
* Simplify _NET_WM_NAME setting by @omar-polo in https://github.com/fvwmorg/fvwm3/pull/909
* ewmh: fix compiler warning by @ThomasAdam in https://github.com/fvwmorg/fvwm3/pull/910
* Fix a typo in fvwm3 -h by @bsdmp in https://github.com/fvwmorg/fvwm3/pull/915
* _NET_CURRENT_DESKTOP: ignore the root window by @ThomasAdam in https://github.com/fvwmorg/fvwm3/pull/912
* Fix implicit function declaration in configure by @Kangie in https://github.com/fvwmorg/fvwm3/pull/914
* dist: exclude FvwmPrompt binary by @ThomasAdam in https://github.com/fvwmorg/fvwm3/pull/918
* EdgeScroll: implement per monitor by @ThomasAdam in https://github.com/fvwmorg/fvwm3/pull/916
* Formatting improvements to fvwm-menu-desktop manpage. by @somiaj in https://github.com/fvwmorg/fvwm3/pull/921
* Varrious fixes for errors found in fvwm3-output.log by @somiaj in https://github.com/fvwmorg/fvwm3/pull/922
* expand: fix $[monitor.0.XX] case by @ThomasAdam in https://github.com/fvwmorg/fvwm3/pull/927

## New Contributors
* @bsdmp made their first contribution in https://github.com/fvwmorg/fvwm3/pull/915
* @Kangie made their first contribution in https://github.com/fvwmorg/fvwm3/pull/914
* @louies0623 made their first contribution in https://github.com/fvwmorg/fvwm3/pull/923

**Full Changelog**: https://github.com/fvwmorg/fvwm3/compare/1.0.8...1.0.9
## [1.0.8](https://github.com/fvwmorg/fvwm3/tree/1.0.8) (2023-09-04)

## What's Changed
Expand Down
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dnl
AC_PREREQ(2.60)

dnl should be "yes" only within the released distribution
ISRELEASED="no"
ISRELEASED="yes"
if test $ISRELEASED = "no"; then
RELDATELONG=""
RELDATESHORT=""
Expand All @@ -26,9 +26,9 @@ VERSIONINFO=m4_esyscmd([./utils/fvwm-version-str.sh])
dnl date of the released version (please zero pad the day in the last 2 dates)
dnl for example: "4 February 2003", "04 Feb 2003", "2003-02-04"
dnl date format strings: "%e %B %Y", "%d-%b-%Y", "%Y-%m-%d"
RELDATELONG=" 4 September 23"
RELDATESHORT="04-Sep-23"
RELDATENUM="23-09-04"
RELDATELONG=" 3 December 23"
RELDATESHORT="03-Dec-23"
RELDATENUM="23-12-03"

# constant variable settings
FVWMNAMELONG="F? Virtual Window Manager"
Expand Down