+
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fvwmorg/fvwm3
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.1.2
Choose a base ref
...
head repository: fvwmorg/fvwm3
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.1.3
Choose a head ref
  • 20 commits
  • 63 files changed
  • 7 contributors

Commits on Feb 8, 2025

  1. build: set next version

    ThomasAdam committed Feb 8, 2025
    Configuration menu
    Copy the full SHA
    b9a5da6 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2025

  1. Configuration menu
    Copy the full SHA
    7b901c0 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2025

  1. build: macos: fix path to fribidi

    On MacOS, it seems that fribidi.h isn't in its own subfolder of
    fribidi/ -- therefore, elide this if the compiling host is MacOS.
    ThomasAdam committed Feb 20, 2025
    Configuration menu
    Copy the full SHA
    49637b0 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2025

  1. fvwm-convert-2.6: fix syntax error

    Noticed by AlaricToo on #fvwm IRC.
    ThomasAdam committed Feb 21, 2025
    Configuration menu
    Copy the full SHA
    44028d3 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2025

  1. FvwmRearrange: Add -win_cmd COMMAND option.

    This adds an option to run an fvwm command in the context of all
    windows rearranged by FvwmRearrange. This was added to allow setting
    the state of all windows via `-win_cmd "State n"` to allow matching
    them with conditionals. A general option was added to allow users to
    run any fvwm command in all window's context.
    somiaj authored and ThomasAdam committed Feb 24, 2025
    Configuration menu
    Copy the full SHA
    4592849 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2025

  1. Configuration menu
    Copy the full SHA
    d49736c View commit details
    Browse the repository at this point in the history

Commits on May 10, 2025

  1. build: move check for ISRELEASED outside of configure

    The status of the release needs to be kept, but it can no
    longer be a part of ./configure as that is being removed.
    ThomasAdam committed May 10, 2025
    Configuration menu
    Copy the full SHA
    4693f2d View commit details
    Browse the repository at this point in the history
  2. build: remove autotools

    autotools has now been replaced with meson.
    
    Original rationale is here:  #1068
    
    A massive thanks to Kangie (Matt Jolly) for all his hard work in making
    this happen!
    ThomasAdam committed May 10, 2025
    Configuration menu
    Copy the full SHA
    8a28822 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2025

  1. build: GH workflow: automate releases

    Rewrite the release process such that releases can be fully automated.
    ThomasAdam committed May 15, 2025
    Configuration menu
    Copy the full SHA
    26182df View commit details
    Browse the repository at this point in the history
  2. docs: move INSTALL.md to the root of the project

    This is mostly relevant for release tarballs, but developer
    documentation doesn't get shipped in a release.  However, installation
    instructions are still required.
    
    Therefore, make the INSTALL.md file part of the root of the project.
    
    Fixes #1194
    ThomasAdam committed May 15, 2025
    Configuration menu
    Copy the full SHA
    be79cdf View commit details
    Browse the repository at this point in the history
  3. build: remove go-1.14.0 check

    The need for go-1.14 was only needed for autotools, so this check can be
    removed.
    
    Additionally, go-1.14 was released over five years ago so the chances
    are a newer version is likely ubiquitous.
    ThomasAdam committed May 15, 2025
    Configuration menu
    Copy the full SHA
    bf19500 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2025

  1. Fix crash in FvwmPager and clarify Balloons option.

    FvwmPager would crash if `WindowFont` was set then later
    set to `None`. This makes sure that if `WindowFont None`
    is used, the font is set back to Null for fallback checks.
    
    This also clarifies the `Balloon type` option. This option
    no longer accepts NULL inputs, use All as an example to
    show balloon windows everywhere, and state default is None.
    somiaj authored and ThomasAdam committed May 19, 2025
    Configuration menu
    Copy the full SHA
    6370adf View commit details
    Browse the repository at this point in the history

Commits on May 21, 2025

  1. Add maximum and minimum to math.

    pghvlaans authored and somiaj committed May 21, 2025
    Configuration menu
    Copy the full SHA
    f154130 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2025

  1. build: modify release version script

    * set -e for the worse case
    * POSIX check on source
    ThomasAdam committed May 23, 2025
    Configuration menu
    Copy the full SHA
    9ec477f View commit details
    Browse the repository at this point in the history

Commits on May 29, 2025

  1. meson: do a link test for locale_charset()

    We can't just check for `locale_charset` as some (very silly)
    distributions ship, or allow end users to install, GNU libiconv
    on GNU libc systems.
    
    - Move `HAVE_CODESET` and `HAVE_LIBCHARSET` checks into `iconv` dep
      conditional
    - perform link test against libcharset to see if it is usable
    - add a visible warning that GNU libiconv should not be installed on a
      GNU libc system, if libcharset (libiconv) linking fails due to apparent
      conflicts with glibc iconv.
    
    See Also: #1186
    Signed-off-by: Matt Jolly <kangie@gentoo.org>
    Kangie authored and ThomasAdam committed May 29, 2025
    Configuration menu
    Copy the full SHA
    d1a215c View commit details
    Browse the repository at this point in the history
  2. randr: monitor_change: recalc panframes

    When a monitor is marked as changed, recalculate the panframes as these
    could now be in different coordinates.
    ThomasAdam committed May 29, 2025
    Configuration menu
    Copy the full SHA
    829a515 View commit details
    Browse the repository at this point in the history
  3. randr: run screenchange at least once

    When reacting a screen change, ensure we run the set of actions at least
    once.
    ThomasAdam committed May 29, 2025
    Configuration menu
    Copy the full SHA
    378b6ed View commit details
    Browse the repository at this point in the history
  4. randr: scan_screens: move MONITOR_FOUND

    Mark the monitor as found before marking it as changed so that it makes
    it easier to differentiate the two conditions.
    ThomasAdam committed May 29, 2025
    Configuration menu
    Copy the full SHA
    88cf434 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2025

  1. setup_visible_names: don't ignore when both set

    When updating the visible_name or icon_name of a window, don't miss
    anything.
    
    Fixes #1202
    ThomasAdam committed May 30, 2025
    Configuration menu
    Copy the full SHA
    4166fe0 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2025

  1. [AUTO]: release 1.1.3

    Thomas Adam authored and ThomasAdam committed Jun 1, 2025
    Configuration menu
    Copy the full SHA
    3c770e5 View commit details
    Browse the repository at this point in the history
Loading
点击 这是indexloc提供的php浏览器服务,不要输入任何密码和下载