notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: x11/nwg-launchers/distinfo

Number of commits found: 20

Tuesday, 25 Oct 2022
04:30 Jan Beich (jbeich) search for other commits by this committer
x11/nwg-launchers: update to 0.7.1.1

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.7.1.1
Reported by:	GitHub (watch releases)
commit hash: e770519b20ada4438b469391794a7d6f8e6b461c commit hash: e770519b20ada4438b469391794a7d6f8e6b461c commit hash: e770519b20ada4438b469391794a7d6f8e6b461c commit hash: e770519b20ada4438b469391794a7d6f8e6b461c e770519
Monday, 24 Oct 2022
19:05 Jan Beich (jbeich) search for other commits by this committer
x11/nwg-launchers: update to 0.7.1

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.7.1
Reported by:	GitHub (watch releases)
commit hash: 08a9700c0ab9193e4da0456f2adb3c067e9f7647 commit hash: 08a9700c0ab9193e4da0456f2adb3c067e9f7647 commit hash: 08a9700c0ab9193e4da0456f2adb3c067e9f7647 commit hash: 08a9700c0ab9193e4da0456f2adb3c067e9f7647 08a9700
Sunday, 23 Oct 2022
07:49 Jan Beich (jbeich) search for other commits by this committer
x11/nwg-launchers: update to 0.7.0

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.7.0
Reported by:	GitHub (watch releases)
commit hash: dd9d9a9953922178d7a87038563a39ea00ac7168 commit hash: dd9d9a9953922178d7a87038563a39ea00ac7168 commit hash: dd9d9a9953922178d7a87038563a39ea00ac7168 commit hash: dd9d9a9953922178d7a87038563a39ea00ac7168 dd9d9a9
Wednesday, 10 Nov 2021
19:06 Jan Beich (jbeich) search for other commits by this committer
x11/nwg-launchers: unbreak build with Clang 13

In file included from ../bar/bar.cc:12:
../common/nwg_classes.h:200:33: error: no viable constructor or deduction guide
for deduction of template arguments of 'array'
    static constexpr std::array MAGIC { 'i', '3', '-', 'i', 'p', 'c' };
                                ^
/usr/include/c++/v1/__tuple:219:64: note: candidate function template not
viable: requires 1 argument, but 6 were provided
template <class _Tp, size_t _Size> struct _LIBCPP_TEMPLATE_VIS array;
                                                               ^
/usr/include/c++/v1/__tuple:219:64: note: candidate function template not
viable: requires 0 arguments, but 6 were provided
In file included from ../bar/bar.cc:12:
../common/nwg_classes.h:203:52: error: invalid operands to binary expression
('const auto' and 'unsigned long')
    static constexpr auto HEADER_SIZE = MAGIC_SIZE + 2 * sizeof(std::uint32_t);
                                        ~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~
../common/nwg_classes.h:325:25: error: implicit instantiation of undefined
template 'std::array<bool, 4>'
    std::array<bool, 4> edges{ 0, 0, 0, 0 };
                        ^
/usr/include/c++/v1/__tuple:219:64: note: template is declared here
template <class _Tp, size_t _Size> struct _LIBCPP_TEMPLATE_VIS array;
                                                               ^
In file included from ../bar/bar.cc:12:
../common/nwg_classes.h:326:25: error: implicit instantiation of undefined
template 'std::array<int, 4>'
    std::array<int,  4> margins{ 0, 0, 0, 0 };
                        ^
/usr/include/c++/v1/__tuple:219:64: note: template is declared here
template <class _Tp, size_t _Size> struct _LIBCPP_TEMPLATE_VIS array;
                                                               ^
In file included from ../bar/bar.cc:12:
../common/nwg_classes.h:342:16: error: no viable constructor or deduction guide
for deduction of template arguments of 'array'
    std::array edges_ {
               ^
/usr/include/c++/v1/__tuple:219:64: note: candidate function template not
viable: requires 1 argument, but 4 were provided
template <class _Tp, size_t _Size> struct _LIBCPP_TEMPLATE_VIS array;
                                                               ^
/usr/include/c++/v1/__tuple:219:64: note: candidate function template not
viable: requires 0 arguments, but 4 were provided
../bar/bar.cc:106:9: error: cannot initialize object parameter of type
'CommonWindow' with an expression of type 'BarWindow'
        window.set_background_color(background_color);
        ^~~~~~
../bar/bar.cc:133:9: error: cannot initialize object parameter of type
'Gtk::Container' with an expression of type 'BarWindow'
        window.show_all_children();
        ^~~~~~
../bar/bar.cc:134:16: error: no matching member function for call to 'show'
        window.show(hint::Fullscreen);
        ~~~~~~~^~~~
../common/nwg_classes.h:364:22: note: candidate function template not viable: no
known conversion from 'BarWindow' to 'PlatformWindow' for object argument
void PlatformWindow::show(Hint h) {
                     ^
../bar/bar.cc:141:21: error: no matching member function for call to 'run'
        return app->run(window);
               ~~~~~^~~
/usr/local/include/gtkmm-3.0/gtkmm/application.h:480:7: note: candidate function
not viable: no known conversion from 'BarWindow' to 'Gtk::Window &' for 1st
argument
  int run(Window& window);
      ^
/usr/local/include/gtkmm-3.0/gtkmm/application.h:496:7: note: candidate function
not viable: requires 0 arguments, but 1 was provided
  int run();
      ^
/usr/local/include/gtkmm-3.0/gtkmm/application.h:438:7: note: candidate function
not viable: requires 2 arguments, but 1 was provided
  int run(int argc, char** argv);
      ^
/usr/local/include/gtkmm-3.0/gtkmm/application.h:459:7: note: candidate function
not viable: requires 3 arguments, but 1 was provided
  int run(Window& window, int argc, char** argv);
      ^

Reported by:	antoine (via bug 258209 exp-run)
commit hash: f9507e5bce207f2d1054686b5f7f5ecde38733e5 commit hash: f9507e5bce207f2d1054686b5f7f5ecde38733e5 commit hash: f9507e5bce207f2d1054686b5f7f5ecde38733e5 commit hash: f9507e5bce207f2d1054686b5f7f5ecde38733e5 f9507e5
Sunday, 26 Sep 2021
02:19 Jan Beich (jbeich) search for other commits by this committer
x11/nwg-launchers: update to 0.6.3

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.6.3
Reported by:	GitHub (watch releases)
commit hash: e64a0494ef23c2dedf984a6db73badaf81533d6f commit hash: e64a0494ef23c2dedf984a6db73badaf81533d6f commit hash: e64a0494ef23c2dedf984a6db73badaf81533d6f commit hash: e64a0494ef23c2dedf984a6db73badaf81533d6f e64a049
Saturday, 25 Sep 2021
17:45 Jan Beich (jbeich) search for other commits by this committer
x11/nwg-launchers: update to 0.6.2

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.6.2
Reported by:	GitHub (watch releases)
commit hash: 851357855dad20cb60bf4878586ff154d98aea48 commit hash: 851357855dad20cb60bf4878586ff154d98aea48 commit hash: 851357855dad20cb60bf4878586ff154d98aea48 commit hash: 851357855dad20cb60bf4878586ff154d98aea48 8513578
Friday, 17 Sep 2021
11:40 Jan Beich (jbeich) search for other commits by this committer
x11/nwg-launchers: update to 0.6.1

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.6.0
Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.6.1
Reported by:	GitHub (watch releases)
commit hash: 6e65b4ee053a124035fb1977fc03167aa0364ba8 commit hash: 6e65b4ee053a124035fb1977fc03167aa0364ba8 commit hash: 6e65b4ee053a124035fb1977fc03167aa0364ba8 commit hash: 6e65b4ee053a124035fb1977fc03167aa0364ba8 6e65b4e
Monday, 19 Jul 2021
19:27 Jan Beich (jbeich) search for other commits by this committer
x11/nwg-launchers: update to 0.5.0

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.5.0
Reported by:	GitHub (watch releases)
commit hash: 1837e16d5593d6b9891fd0c9f2dcd6552356695f commit hash: 1837e16d5593d6b9891fd0c9f2dcd6552356695f commit hash: 1837e16d5593d6b9891fd0c9f2dcd6552356695f commit hash: 1837e16d5593d6b9891fd0c9f2dcd6552356695f 1837e16
Saturday, 30 Jan 2021
15:33 jbeich search for other commits by this committer
x11/nwg-launchers: update to 0.4.4

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.4.4
Reported by:	GitHub (watch releases)
Original commitRevision:563419 
Wednesday, 6 Jan 2021
07:36 jbeich search for other commits by this committer
x11/nwg-launchers: update to 0.4.3

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.4.3
Reported by:	GitHub (watch releases)
Original commitRevision:560467 
Friday, 6 Nov 2020
23:29 jbeich search for other commits by this committer
x11/nwg-launchers: update to 0.4.2

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.4.2
Reported by:	GitHub (watch releases)
Original commitRevision:554332 
Thursday, 5 Nov 2020
00:55 jbeich search for other commits by this committer
x11/nwg-launchers: update to 0.4.1

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.4.1
Reported by:	GitHub (watch releases)
Original commitRevision:554114 
Tuesday, 22 Sep 2020
01:32 jbeich search for other commits by this committer
x11/nwg-launchers: update to 0.4.0

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.4.0
Reported by:	GitHub (watch releases)
Original commitRevision:549554 
Thursday, 17 Sep 2020
00:38 jbeich search for other commits by this committer
x11/nwg-launchers: update to 0.3.4

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.3.4
Reported by:	GitHub (watch releases)
Original commitRevision:548806 
Tuesday, 15 Sep 2020
00:53 jbeich search for other commits by this committer
x11/nwg-launchers: update to 0.3.3

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.3.3
Reported by:	GitHub (watch releases)
Original commitRevision:548692 
Friday, 28 Aug 2020
00:04 jbeich search for other commits by this committer
x11/nwg-launchers: update to 0.3.2

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.3.2
Reported by:	GitHub (watch releases)
Original commitRevision:546698 
Sunday, 9 Aug 2020
00:11 jbeich search for other commits by this committer
x11/nwg-launchers: update to 0.3.1

Changes:	https://github.com/nwg-piotr/nwg-launchers/releases/tag/v0.3.1
Reported by:	GitHub (watch releases)
Original commitRevision:544534 
Tuesday, 4 Aug 2020
00:40 jbeich search for other commits by this committer
x11/nwg-launchers: update to 0.3.0

Changes:	https://github.com/nwg-piotr/nwg-launchers/compare/v0.2.0...v0.3.0
Reported by:	GitHub (watch releases)
Original commitRevision:544122 
Friday, 17 Jul 2020
01:46 jbeich search for other commits by this committer
x11/nwg-launchers: backport crashfix when LANG is unset
Original commitRevision:542399 
Thursday, 16 Jul 2020
23:31 jbeich search for other commits by this committer
x11/nwg-launchers: add new port

nwg-launchers is C++ rewrite of sgtk-menu, an application launcher
primarily developed for Sway but also works on other window managers.

https://github.com/nwg-piotr/nwg-launchers
Original commitRevision:542393 

Number of commits found: 20