-
Notifications
You must be signed in to change notification settings - Fork 721
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
Meta python merge #402
Closed
Closed
Meta python merge #402
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
v2.7.0 (Jul 16, 2021) --------------------- New features: * Enable ``py::implicitly_convertible<py::none, ...>`` for ``py::class_``-wrapped types. `#3059 <https://github.com/pybind/pybind11/pull/3059>`_ * Allow function pointer extraction from overloaded functions. `#2944 <https://github.com/pybind/pybind11/pull/2944>`_ * NumPy: added ``.char_()`` to type which gives the NumPy public ``char`` result, which also distinguishes types by bit length (unlike ``.kind()``). `#2864 <https://github.com/pybind/pybind11/pull/2864>`_ * Add ``pybind11::bytearray`` to manipulate ``bytearray`` similar to ``bytes``. `#2799 <https://github.com/pybind/pybind11/pull/2799>`_ * ``pybind11/stl/filesystem.h`` registers a type caster that, on C++17/Python 3.6+, converts ``std::filesystem::path`` to ``pathlib.Path`` and any ``os.PathLike`` to ``std::filesystem::path``. `#2730 <https://github.com/pybind/pybind11/pull/2730>`_ * A ``PYBIND11_VERSION_HEX`` define was added, similar to ``PY_VERSION_HEX``. `#3120 <https://github.com/pybind/pybind11/pull/3120>`_ Signed-off-by: Zheng Ruoqin <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
We are pleased to announce the 3.12.0 release of PyMongo - MongoDB’s Python Driver. This release adds support for MongoDB 5.0. Signed-off-by: Zheng Ruoqin <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
.. changelog:: :version: 1.4.22 :released: July 21, 2021 .. change:: :tags: bug, sql 🎟️ 6786 Fixed issue where use of the :paramref:`_sql.case.whens` parameter passing a dictionary positionally and not as a keyword argument would emit a 2.0 deprecation warning, referring to the deprecation of passing a list positionally. The dictionary format of "whens", passed positionally, is still supported and was accidentally marked as deprecated. .. change:: :tags: bug, orm 🎟️ 6775 Fixed issue in new :meth:`_schema.Table.table_valued` method where the resulting :class:`_sql.TableValuedColumn` construct would not respond correctly to alias adaptation as is used throughout the ORM, such as for eager loading, polymorphic loading, etc. .. change:: :tags: bug, orm 🎟️ 6769 Fixed issue where usage of the :meth:`_result.Result.unique` method with an ORM result that included column expressions with unhashable types, such as ``JSON`` or ``ARRAY`` using non-tuples would silently fall back to using the ``id()`` function, rather than raising an error. This now raises an error when the :meth:`_result.Result.unique` method is used in a 2.0 style ORM query. Additionally, hashability is assumed to be True for result values of unknown type, such as often happens when using SQL functions of unknown return type; if values are truly not hashable then the ``hash()`` itself will raise. For legacy ORM queries, since the legacy :class:`_orm.Query` object uniquifies in all cases, the old rules remain in place, which is to use ``id()`` for result values of unknown type as this legacy uniquing is mostly for the purpose of uniquing ORM entities and not column values. .. change:: :tags: orm, bug 🎟️ 6771 Fixed an issue where clearing of mappers during things like test suite teardowns could cause a "dictionary changed size" warning during garbage collection, due to iteration of a weak-referencing dictionary. A ``list()`` has been applied to prevent concurrent GC from affecting this operation. .. change:: :tags: bug, sql 🎟️ 6770 Fixed issue where type-specific bound parameter handlers would not be called upon in the case of using the :meth:`_sql.Insert.values` method with the Python ``None`` value; in particular, this would be noticed when using the :class:`_types.JSON` datatype as well as related PostgreSQL specific types such as :class:`_postgresql.JSONB` which would fail to encode the Python ``None`` value into JSON null, however the issue was generalized to any bound parameter handler in conjunction with this specific method of :class:`_sql.Insert`. .. change:: :tags: bug, engine 🎟️ 6740 Added some guards against ``KeyError`` in the event system to accommodate the case that the interpreter is shutting down at the same time :meth:`_engine.Engine.dispose` is being called, which would cause stack trace warnings. .. change:: :tags: bug, orm, regression 🎟️ 6793 Fixed critical caching issue where the ORM's persistence feature using INSERT..RETURNING would cache an incorrect query when mixing the "bulk save" and standard "flush" forms of INSERT. Signed-off-by: Zheng Ruoqin <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
1.3.0 Add support for Sanic versions 20 and 21 #1146 Signed-off-by: Zheng Ruoqin <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
merged |
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Apr 29, 2023
…325338b6e7b3d42de) Drop patches now part of new upstream release: - 0001-Fix-memory-leak.patch - 0001-cmake-Link-with-libatomic-on-rv32-rv64.patch - 0001-dlt-system-Fix-buffer-overflow-detection-on-32bit-ta.patch Cherry-pick and propose upstream two patches to fix build failures with security hardening flags enabled and with some systemd configuration (underlink) - 481.patch - 482.patch Add new dlt-adaptor-stdin cmake optional flag Drop PV variable, not needed anymore Drop latomic manual added flag, upstream code changed to avoid its need See: COVESA/dlt-daemon#433 and COVESA/dlt-daemon@2224cdd (changed from atomic_bool to atomic_int, the latter doesn't require manual atomic library link since it can be optimized properly by the compiler on riscv platforms) What's Changed: dlt-system: fix a libc buffer overflow detection on 32bit targets by @mtitinger in openembedded#337 dlt-daemon: create sockets using "android way" by @sebastienraillet in openembedded#333 fixes compilation issue with clang by @sebastienraillet in openembedded#339 dlt-daemon: Only create directories if they do not exist yet by @alexmohr in openembedded#340 dlt-system : fix invalid free with ConfigurationFileName by @mtitinger in openembedded#342 fix for the issue openembedded#341 by @rvalovyi in openembedded#347 Forcibly the severity level set by @dhnatiuk1 in openembedded#346 fix -Wformat issues reported by clang by @sebastienraillet in openembedded#349 dlt-system: fix invalid free by removing unused TempDir by @andreirusu96 in openembedded#350 Support for Cygwin toolchain. by @DoctorNoobingstoneIPresume in openembedded#351 filetransfer: Return error if no free space by @ssugiura in openembedded#354 lib: Correct VARI usage in dlt_user_log_write_uint by @ssugiura in openembedded#356 Fix DLT User/Client tests by @andreirusu96 in openembedded#357 tests: Deplicate unused files and variables by @ssugiura in openembedded#359 Fix the target name in documentation by @mawillers in openembedded#372 cmake: Add option to enable each adaptor by itself by @alexmohr in openembedded#364 cmake: Add options to enable/disable each dlt console tool by @alexmohr in openembedded#363 filetransfer: Fix getFileCreationDate2 stat check by @andreirusu96 in openembedded#361 dlt_config_file_parser.c:Fix a pointer release bug in the file。 by @Leslie-bcy in openembedded#376 Update workflow by @thanhbnq in openembedded#389 README: Update link to github actions by @ssugiura in openembedded#392 Fix handle returned value by @thanhbnq in openembedded#384 systemd: install adaptor-udp service for adaptor=on by @danielweber2018 in openembedded#393 automotive-dlt.pc: add the path to find the static library by @zeerd in openembedded#387 enforce-trace-limit: ContextLogLevel is now enforced in the daemon by @alexmohr in openembedded#382 dlt-daemon-connection: Start up even if not all bindings are valid by @alexmohr in openembedded#380 dlt_common.c: Change default logging_mode by @wusto in openembedded#406 logstorage: Truncate ECUid in Logstorage filter to prevent crash by @andreirusu96 in openembedded#402 Update dlt_for_developers.md by @marques-bruno in openembedded#405 dlt-gateway: Fix crash on invalid ip by @alexmohr in openembedded#381 dlt_client:Block in connect() by @thanhbnq in openembedded#409 dlt_daemon_client: Fix change loglevel of application by @lti9hc in openembedded#408 Update maintainer by @thanhbnq in openembedded#410 systemd: add support for socket activation via systemd by @alexmohr in openembedded#401 internal-logging: Fix issues with file logging by @alexmohr in openembedded#378 dlt_common: change output of message for log initialization by @lti9hc in openembedded#412 Avoid memory corruption behind buffer wp in function dlt_getloginfo_conv_ascii_to_id by @michael-methner in openembedded#411 dlt_daemon_client: Fix Control Msg ECUId comparison with active Gateway by @andreirusu96 in openembedded#414 Fix for Resource and Memory Leak by @lti9hc in openembedded#418 dlt-receive: set host interface and allow multiple udp multicast addresses by @thanhbnq in openembedded#420 dlt-system: Fix buffer overflow detection on 32bit targets by @sandy-lcq in openembedded#398 cmake: network trace enable toggle by @danielweber2018 in openembedded#424 client: Fix Get Log Info response conversion method by @andreirusu96 in openembedded#422 filetransfer: fix filesize divisible by blocksize case by @danielweber2018 in openembedded#383 Updates for Coding Styles by @thanhbnq in openembedded#425 gateway: Fix Node handling and ECUid checks by @andreirusu96 in openembedded#429 Update contacts and removed mailing lists by @michael-methner in openembedded#431 dlt-user: Fix crashes in dlt_free during dlt_init by @alexmohr in openembedded#362 dlt-convert: Fix memory leak by calling dlt_file_free by @lvklevankhanh in openembedded#434 dlt-user: fix potential non closed socket in init/free by @alexmohr in openembedded#435 Check for negative index in dlt_file_message by @michael-methner in openembedded#437 Fix memory leak by @lvklevankhanh in openembedded#441 dlt-connection: add socket timeout by @alexmohr in openembedded#439 Installs dlt.conf on android by @sebastienraillet in openembedded#446 This changes a mispatch from fcb676a to install udp binary correctly by @smooge in openembedded#449 logfile: exhance internal dlt logging by introducing size limits by @danielweber2018 in openembedded#369 dlt-logd-converter: fixes android 12 compilation by @sebastienraillet in openembedded#445 dlt-logd-converter: Fix getting log level from log msg by @RobinChenJP in openembedded#456 house-keeper: remove infinite wait by @alexmohr in openembedded#438 cmake: remove duplicated option message by @minminlittleshrimp in openembedded#454 Android: Add new feature in Android bp by @minminlittleshrimp in openembedded#461 dlt_multiple_files: remove superfluous mode bits and add header file to header list by @minminlittleshrimp in openembedded#462 dlt-user: fix crash with certain strings by @alexmohr in openembedded#463 Signed-off-by: Gianfranco Costamagna <[email protected]> Signed-off-by: Gianfranco Costamagna <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Nov 30, 2023
* Fix-float-endianness-issue-on-big-endian-arch.patch removed because fixed in the new version. Changelog: * Fix baud rate handling with RTU under Linux * Fix modbus_disable_quirks signature * Remove Travis CI * Move content about migration to libmodbus.org * Avoid negative value in FD_SET call * Test socket against positive value instead of -1 * Improvements to autotools by @ndim * Fix doc links by @jordanjohnson56 (openembedded#653) * Test the protocol id for 0 by @metapsychologe (openembedded#509) * Fix double negative in tests * New quirks handler (closes openembedded#38 openembedded#533) * Fix bitwise OR in documentation * Improve doc about slave ID in RTU * Add .clang-format and format code (closes openembedded#394) * Remove constraints on baud rate values * Accept IP or device in arg of unit test progs * Avoid compilation issue with VS2022 with strdup * Display created files in configure.js * Use strcpy_s under Windows * Replace inet_addr by inet_pton calls * Replace inet_ntoa by inet_ptop * Update configure.ac/config.h.win32 for new inet functions * Instructions to build libmodbus in a VS project * Fix connection check for Windows RTU (closes openembedded#660, openembedded#662) * Add CIFuzz Github action by @DavidKorczynski (openembedded#669) * Convert a few int to unsigned int (openembedded#402) * Major rewrite of documentation with Material for mkdocs * Reduce memory use of TCP PI backend (closes openembedded#621) * Fixed MODBUS_ERROR_RECOVERY_LINK not working on Windows (@embeddedmz) * Replace Travis CI by GitHub CI * Fix linker error for Windows (VCLinkerTool) * Address check in single register / coil responses added (openembedded#463) * Swap CRC bytes in request data but not at CRC computing (openembedded#397) * Fix float endianness issue on big endian architecture * Fix comment about EMBUNKEXC (closes openembedded#566) * Fix network library detection on Haiku * Fix typos (closes openembedded#620) Signed-off-by: alperak <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 20, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 22, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 23, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 24, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 25, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 25, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 25, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 25, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 26, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 26, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 26, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 27, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 27, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 28, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 28, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 28, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 29, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 29, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 29, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 30, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 30, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 4, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 4, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 4, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 4, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 5, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 5, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 5, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 5, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 5, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 6, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 6, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 7, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 7, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 7, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 7, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 7, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 8, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 8, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 8, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 9, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 9, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 9, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 9, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 9, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 10, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 10, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 10, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 10, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 11, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 11, 2024
Overview of changes in gnome-calculator 47.0 * Updated translations * Fixed flatpak build !181 (Hari Rana) * Don't use symbolic icons for the window !182 (Balló György) Overview of changes in gnome-calculator 47.rc * Updated translations * Added brand colors !178 (Brage Fuglseth) Overview of changes in gnome-calculator 47.beta * Updated translations * Fix hex string conversion for bitwise operator !177 (Xiong Nandi) * Force LTR for buttons !171 (Khalid Abu Shawarib) * Added kWh, MJ, KJ unit support openembedded#417 (Robert Roth) * Sort conversion categories alphabetically openembedded#395 (Robert Roth) * Removed obsolete bulgarian translations openembedded#402 (Robert Roth) * Only allow alphanumeric values for variable names openembedded#396 (Robert Roth) * Replace base_label with buttons !173 (Clément Mathieu--Drif) * Updated flathub badge !174 (Brage Fuglseth) * Use adwaita spinner !175 (Cristopher Davis) Overview of changes in gnome-calculator 47.alpha * Updated translations * Support VND currency openembedded#387 (Robert Roth) * Fixed incorrect event handling openembedded#392 (Robert Roth) * Removed Shift left/right dropdown openembedded#330 (Robert Roth) * Improved popover remove buttons openembedded#401 (Robert Roth) * Use result format instead of number format openembedded#399 (Robert Roth) * Ported to Adwaita adaptive dialogs (Robert Roth) * Disable undo button if nothing to undo openembedded#280 (Robert Roth) * Metainfo improvements (Andre Klapper) * Keep last conversion options at launch openembedded#351 (Robert Roth) * Minor improvements to the undo button !166 (Automeris naranja) * Make sure to use the correct app id for development builds !170 (Christopher Davis) * Stop using orange accent color !169 (Alice Mikhaylenko) * A11y announce status changes !172 (Lukáš Tyrychtr) Signed-off-by: Markus Volk <[email protected]> Signed-off-by: Khem Raj <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.