-
Notifications
You must be signed in to change notification settings - Fork 809
Meta python merge 03/30/2021 #330
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
Closed
Closed
Conversation
This file contains hidden or 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
Upgrade to release 0.17.0: - this release no longer supports Python 2.7, most if not all Python 2 specific code is removed. The 0.17.x series is the last to support Python 3.5 (this also allowed for removal of the dependency on ``ruamel.std.pathlib``) - remove Python2 specific code branches and adaptations (u-strings) - prepare % code for f-strings using ``_F`` - allow PyOxidisation - replaced Python 2 compatible enforcement of keyword arguments with '*' - the old top level *functions* ``load``, ``safe_load``, ``round_trip_load``, ``dump``, ``safe_dump``, ``round_trip_dump``, ``scan``, ``parse``, ``compose``, ``emit``, ``serialize`` as well as their ``_all`` variants for multi-document streams, now issue a ``PendingDeprecationning`` (e.g. when run from pytest, but also Python is started with ``-Wd``). Use the methods on ``YAML()``, which have been extended. - fix for issue 376: indentation changes could put literal/folded scalar to start before the ``#`` column of a following comment. Effectively making the comment part of the scalar in the output. Signed-off-by: Leon Anavi <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Upgrade to release 1.8.1: - moved implementation of and `hex2ba()` and `ba2hex()` to C-level - add `bitarray.util.parity()` Signed-off-by: Leon Anavi <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Upgrade to release 1.4.3:
orm:
- Fixed a bug where python 2.7.5 (default on CentOS 7) wasn't able
to import sqlalchemy, because on this version of Python exec
"statement" and exec("statement") do not behave the same way.
The compatibility exec_() function was used instead.
- Fixed bug where ORM queries using a correlated subquery in
conjunction with column_property() would fail to correlate
correctly to an enclosing subquery or to a CTE when
Select.correlate_except() were used in the property to control
correlation, in cases where the subquery contained the same
selectables as ones within the correlated subquery that were
intended to not be correlated.
- Fixed bug where combinations of the new "relationship with
criteria" feature could fail in conjunction with features that
make use of the new “lambda SQL” feature, including loader
strategies such as selectinload and lazyload, for more
complicated scenarios such as polymorphic loading.
- Repaired support so that the ClauseElement.params() method can
work correctly with a Select object that includes joins across
ORM relationship structures, which is a new feature in 1.4.
- Fixed issue where a "removed in 2.0" warning were generated
internally by the relationship loader mechanics.
orm declarative:
- Fixed regression where the .metadata attribute on a per class
level would not be honored, breaking the use case of
per-class-hierarchy MetaData for abstract declarative classes
and mixins.
engine:
- Restored the ResultProxy name back to the sqlalchemy.engine
namespace. This name refers to the LegacyCursorResult object.
mypy:
- Added support for the Mypy extension to correctly interpret a
declarative base class that’s generated using the as_declarative()
function as well as the registry.as_declarative_base() method.
postgresql:
- Fixed reflection of identity columns in tables with mixed case
names in PostgreSQL.
sqlite:
- Added support for the aiosqlite database driver for use with the
SQLAlchemy asyncio extension.
- Repaired the pysqlcipher dialect to connect correctly which had
regressed in 1.4, and added test + CI support to maintain the
driver in working condition. The dialect now imports the
sqlcipher3 module for Python 3 by default before falling back to
pysqlcipher3 which is documented as now being unmaintained.
Signed-off-by: Leon Anavi <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
Signed-off-by: Trevor Gamblin <[email protected]>
Upgrade to release 1.5.3: - Remove unnecessary bindings with schema proxy from ElementPathMixin to avoid conflicts when schema is used by an XPath 3 parser - Fix schema logger Signed-off-by: Leon Anavi <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Upgrade to release 1.0.10: - Remove external library natsort. Sorting of cron expression components now handled with sorted() with a custom key function. Signed-off-by: Leon Anavi <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Signed-off-by: Wang Mingyu <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Signed-off-by: Wang Mingyu <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Add recipe for python3-h11: a pure-Python, bring-your-own-I/O implementation of HTTP/1.1 Signed-off-by: Ben Gampe <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Upgrade to release 2.5.2: - Detects `import numpy` as a valid `numpy` import. - Iterate over ``Keywords`` when using ``ClassDef.get_children`` Signed-off-by: Leon Anavi <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Upgrade to release 0.5.15: - ndb: don't mess with SQL adapters unless really needed - ndb: support more virtual interface types - ndb: support in for views and record sets - ndb: fix nested fetches from DB - tests: start migration to pytest Signed-off-by: Leon Anavi <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Upgrade to release 5.5: - coverage combine has a new option, --keep to keep the original data files after combining them. The default is still to delete the files after they have been combined. - When reporting missing branches in coverage report, branches aren't reported that jump to missing lines. This adds to the long-standing behavior of not reporting branches from missing lines. Now branches are only reported if both the source and destination lines are executed. - Minor improvements to the HTML report: The state of the line visibility selector buttons is saved in local storage so you don't have to fiddle with them so often. It has a little more room for line numbers so that 4-digit numbers work well. - Improved the error message when combining line and branch data, so that users will be more likely to understand what's happening. Signed-off-by: Leon Anavi <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Upgrade to release 20.1.0: - document WEB_CONCURRENCY is set by, at least, Heroku - capture peername from accept: Avoid calls to getpeername by capturing the peer name returned by accept - log a warning when a worker was terminated due to a signal - fix tornado usage with latest versions of Django - add support for python -m gunicorn - fix systemd socket activation example - allows to set wsgi application in configg file using wsgi_app - document --timeout = 0 - always close a connection when the number of requests exceeds the max requests - Disable keepalive during graceful shutdown - kill tasks in the gthread workers during upgrade - fix latency in gevent worker when accepting new requests - fix file watcher: handle errors when new worker reboot and ensure the list of files is kept - document the default name and path of the configuration file - document how variable impact configuration - document the $PORT environment variable - added milliseconds option to request_time in access_log - added PIP requirements to be used for example - remove version from the Server header - fix sendfile: use socket.sendfile instead of os.sendfile - reloader: use absolute path to prevent empty to prevent0 InotifyError when a file is added to the working directory - Add --print-config option to print the resolved settings at startup. - remove the --log-dict-config CLI flag because it never had a working format (the logconfig_dict setting in configuration files continues to work) Signed-off-by: Leon Anavi <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Upgrade to release 3.12.4: - Revert use of deque instead of list for tracking throttling .history. Due to incompatibility with DjangoRedis cache backend. Signed-off-by: Leon Anavi <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Upgrade to release 7.22.0: - Fix some sys.excepthook shenanigan when embedding with qt, recommended if you – for example – use napari - Fix bug when using the new ipdb %context magic - Couples of deprecation cleanup - Update for new dpast.com api if you use the %pastbin magic - Remove support for numpy before 1.16 Signed-off-by: Leon Anavi <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Upgrade to release 3.0.7: - Problems with zero time values - Not possible to correctly convert excel dates to timedelta - Exception raised when merging cells which do not have borders all the way round. - Python 2 print statement in the tutorial Signed-off-by: Leon Anavi <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Upgrade to release 0.17.2: - change -py2.py3-none-any.whl to -py3-none-any.whl, and remove 0.17.1 - added 'Programming Language :: Python :: 3 :: Only', and removing 0.17.0 from PyPI Signed-off-by: Leon Anavi <[email protected]> Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Trevor Gamblin <[email protected]>
Contributor
|
in master now thanks |
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 21, 2022
Changelog: ========= lib: Fix wrong type alert from lgtm gtest_dlt_daemon_gateway: fix gtest build failed lib: generate dlt library internal log file tests: add stdlib to dlt_cpp_extension dlt_user: Make dlt_init thread safe remove clang-tidy analyzer warnings: incompatible pointer type debian: improve debian build package dlt-control-common: shutdown and close socket dlt_common: improve function description gtest: Bring-in changes gtest: Rework WORKING_DIRECTORY gtest: Correct data amount in gtest_dlt_common cmake: Set empty to systemd_SRCS gtest: Refactor tests/CMakeLists.txt lib: Add SOCK_CLOEXEC to socket daemon: Create parent directory for unix socket cmake: Correct added subdirectories console: Add cmake options for control and timestamp tests: Adapt to DLT_DISABLE_MACRO header: Adapt to DLT_DISABLE_MACRO include: Refactor CMakeLists.txt gtest: Change script name to gtest_dlt_daemon_offline_log.sh daemon: Enable to use FIFO on QNX tests: Add new test case with given buffer tests: Enable macro disabling lib: Add new interfaces with given buffer Implemention of tests for the dlt-qnx-system module lib: Add MaxFileSize handling client: pthread_join for deinit doc: update initial log level document dlt-system: Fix memory leak in dlt-system config dlt_common: remove duplicate stdbool header dlt-control: Add option to config port system: use signalfd for dlt-system console: provides args option to enable send/receive serial header fix malformed printf format strings (openembedded#295) cmake: Set WITH_LEGACY_INCLUDE_PATH to ON as default (openembedded#334) Make the legacy include path a CMake option (openembedded#332) daemon: Call dlt_daemon_configuration_load() properly (openembedded#330) dlt_user: Use pthread_setname_np() if available (openembedded#326) libdlt: Add legacy include path in exported CMake config file (openembedded#327) lib: Set TYLE to 1 for BOOL type (openembedded#320) file-transfer: Abort file transfer if get serial number failed dlt_user.c: fixing casting wrong type dlt-sortbytimestamp: Remove duplicated conditional statements code dlt-convert: Remove duplicated conditional statements code doc: Minor fix in dlt_for_developers.md (openembedded#321) dlt-control-common.c: Fix build failure due to out-of-bound write -Werror=stringop-truncation Extend include path in *.pc file (openembedded#319) Signed-off-by: Wang Mingyu <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 25, 2022
317.patch removed since it is included in 2.18.8 Changelog: ========= lib: Fix wrong type alert from lgtm gtest_dlt_daemon_gateway: fix gtest build failed lib: generate dlt library internal log file tests: add stdlib to dlt_cpp_extension dlt_user: Make dlt_init thread safe remove clang-tidy analyzer warnings: incompatible pointer type debian: improve debian build package dlt-control-common: shutdown and close socket dlt_common: improve function description gtest: Bring-in changes gtest: Rework WORKING_DIRECTORY gtest: Correct data amount in gtest_dlt_common cmake: Set empty to systemd_SRCS gtest: Refactor tests/CMakeLists.txt lib: Add SOCK_CLOEXEC to socket daemon: Create parent directory for unix socket cmake: Correct added subdirectories console: Add cmake options for control and timestamp tests: Adapt to DLT_DISABLE_MACRO header: Adapt to DLT_DISABLE_MACRO include: Refactor CMakeLists.txt gtest: Change script name to gtest_dlt_daemon_offline_log.sh daemon: Enable to use FIFO on QNX tests: Add new test case with given buffer tests: Enable macro disabling lib: Add new interfaces with given buffer Implemention of tests for the dlt-qnx-system module lib: Add MaxFileSize handling client: pthread_join for deinit doc: update initial log level document dlt-system: Fix memory leak in dlt-system config dlt_common: remove duplicate stdbool header dlt-control: Add option to config port system: use signalfd for dlt-system console: provides args option to enable send/receive serial header fix malformed printf format strings (openembedded#295) cmake: Set WITH_LEGACY_INCLUDE_PATH to ON as default (openembedded#334) Make the legacy include path a CMake option (openembedded#332) daemon: Call dlt_daemon_configuration_load() properly (openembedded#330) dlt_user: Use pthread_setname_np() if available (openembedded#326) libdlt: Add legacy include path in exported CMake config file (openembedded#327) lib: Set TYLE to 1 for BOOL type (openembedded#320) file-transfer: Abort file transfer if get serial number failed dlt_user.c: fixing casting wrong type dlt-sortbytimestamp: Remove duplicated conditional statements code dlt-convert: Remove duplicated conditional statements code doc: Minor fix in dlt_for_developers.md (openembedded#321) dlt-control-common.c: Fix build failure due to out-of-bound write -Werror=stringop-truncation Extend include path in *.pc file (openembedded#319) Signed-off-by: Wang Mingyu <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 25, 2022
317.patch removed since it is included in 2.18.8 Changelog: ========= lib: Fix wrong type alert from lgtm gtest_dlt_daemon_gateway: fix gtest build failed lib: generate dlt library internal log file tests: add stdlib to dlt_cpp_extension dlt_user: Make dlt_init thread safe remove clang-tidy analyzer warnings: incompatible pointer type debian: improve debian build package dlt-control-common: shutdown and close socket dlt_common: improve function description gtest: Bring-in changes gtest: Rework WORKING_DIRECTORY gtest: Correct data amount in gtest_dlt_common cmake: Set empty to systemd_SRCS gtest: Refactor tests/CMakeLists.txt lib: Add SOCK_CLOEXEC to socket daemon: Create parent directory for unix socket cmake: Correct added subdirectories console: Add cmake options for control and timestamp tests: Adapt to DLT_DISABLE_MACRO header: Adapt to DLT_DISABLE_MACRO include: Refactor CMakeLists.txt gtest: Change script name to gtest_dlt_daemon_offline_log.sh daemon: Enable to use FIFO on QNX tests: Add new test case with given buffer tests: Enable macro disabling lib: Add new interfaces with given buffer Implemention of tests for the dlt-qnx-system module lib: Add MaxFileSize handling client: pthread_join for deinit doc: update initial log level document dlt-system: Fix memory leak in dlt-system config dlt_common: remove duplicate stdbool header dlt-control: Add option to config port system: use signalfd for dlt-system console: provides args option to enable send/receive serial header fix malformed printf format strings (openembedded#295) cmake: Set WITH_LEGACY_INCLUDE_PATH to ON as default (openembedded#334) Make the legacy include path a CMake option (openembedded#332) daemon: Call dlt_daemon_configuration_load() properly (openembedded#330) dlt_user: Use pthread_setname_np() if available (openembedded#326) libdlt: Add legacy include path in exported CMake config file (openembedded#327) lib: Set TYLE to 1 for BOOL type (openembedded#320) file-transfer: Abort file transfer if get serial number failed dlt_user.c: fixing casting wrong type dlt-sortbytimestamp: Remove duplicated conditional statements code dlt-convert: Remove duplicated conditional statements code doc: Minor fix in dlt_for_developers.md (openembedded#321) dlt-control-common.c: Fix build failure due to out-of-bound write -Werror=stringop-truncation Extend include path in *.pc file (openembedded#319) Signed-off-by: Wang Mingyu <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 19, 2023
Changelog: ============ -Replace gevent-websocket with simple-websocket when using gevent -Catch and log all errors that occur in event handlers -Use daemon threads for background tasks also in the threaded client -Silence exception on websocket exit when using uWSGI openembedded#330 Signed-off-by: Wang Mingyu <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Sep 20, 2023
Changelog: ============ -Replace gevent-websocket with simple-websocket when using gevent -Catch and log all errors that occur in event handlers -Use daemon threads for background tasks also in the threaded client -Silence exception on websocket exit when using uWSGI openembedded#330 Signed-off-by: Wang Mingyu <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Mar 30, 2024
License-Update: Rename LICENSE to LICENSE.txt and update copyright year
* Ptest and library example tested on qemux86-64 and qemuarm64
* Add ptest into PTESTS_FAST_META_PYTHON
qemux86-64:
Testsuite summary
TOTAL: 599
PASS: 599
SKIP: 0
XFAIL: 0
FAIL: 0
XPASS: 0
ERROR: 0
DURATION: 19
END: /usr/lib/python3-validators/ptest
2024-03-30T05:07
STOP: ptest-runner
TOTAL: 1 FAIL: 0
qemuarm64:
Testsuite summary
TOTAL: 599
PASS: 599
SKIP: 0
XFAIL: 0
FAIL: 0
XPASS: 0
ERROR: 0
DURATION: 18
END: /usr/lib/python3-validators/ptest
2024-03-30T05:10
STOP: ptest-runner
TOTAL: 1 FAIL: 0
Changelog:
0.24.0
===========
Features
feat: conditionally raises ValidationError; bump version by @yozachar in openembedded#343
Maintenance
patch: domain & url modules by @yozachar in openembedded#339
fix: domain name not confirming to rfc_2782 by @yozachar in openembedded#341
maint: update dev dependencies; adds favicon to docs by @yozachar in openembedded#342
0.23.2
===========
Maintenance
maint: rectifies changelog by @yozachar in openembedded#336
fix: packaging as well as rST & md document generation by @yozachar in openembedded#337
0.23.1
===========
Maintenance
maint: fix between & length validators by @yozachar in openembedded#334
fix: manual nav reference for mkdocs; bumps version by @yozachar in openembedded#335
0.23.0
===========
Features
feat: add french i18n validation by @imperosol in openembedded#308
Maintenance
fix: Valid URLs failing validation - query and fragment parts by @danherbriley in openembedded#297
fix: bug in between module by @yozachar in openembedded#301
chore: update dependencies, improve packaging by @yozachar in openembedded#304
Fix fragment check by @darkdragon-001 in openembedded#305
build(deps): bump urllib3 from 2.0.6 to 2.0.7 in /package by @dependabot in openembedded#310
fix: allow pct-encoded entities in fragments by @conitrade-as in openembedded#317
chore: update dev dependencies by @yozachar in openembedded#318
build(deps): bump gitpython from 3.1.37 to 3.1.41 in /package by @dependabot in openembedded#321
build(deps): bump jinja2 from 3.1.2 to 3.1.3 in /package by @dependabot in openembedded#322
chore: monthly updates for Jan'24 by @yozachar in openembedded#324
maint: adds versiond docs; update copyright year by @yozachar in openembedded#329
chore: update dev dependencies by @yozachar in openembedded#330
build(deps): bump gitpython from 3.1.37 to 3.1.41 in /package by @dependabot in openembedded#331
build(deps): bump jinja2 from 3.1.2 to 3.1.3 in /package by @dependabot in openembedded#332
build(deps): bump urllib3 from 2.0.6 to 2.0.7 in /package by @dependabot in openembedded#319
Signed-off-by: alperak <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
halstead
pushed a commit
that referenced
this pull request
Mar 31, 2024
License-Update: Rename LICENSE to LICENSE.txt and update copyright year
* Ptest and library example tested on qemux86-64 and qemuarm64
* Add ptest into PTESTS_FAST_META_PYTHON
qemux86-64:
Testsuite summary
TOTAL: 599
PASS: 599
SKIP: 0
XFAIL: 0
FAIL: 0
XPASS: 0
ERROR: 0
DURATION: 19
END: /usr/lib/python3-validators/ptest
2024-03-30T05:07
STOP: ptest-runner
TOTAL: 1 FAIL: 0
qemuarm64:
Testsuite summary
TOTAL: 599
PASS: 599
SKIP: 0
XFAIL: 0
FAIL: 0
XPASS: 0
ERROR: 0
DURATION: 18
END: /usr/lib/python3-validators/ptest
2024-03-30T05:10
STOP: ptest-runner
TOTAL: 1 FAIL: 0
Changelog:
0.24.0
===========
Features
feat: conditionally raises ValidationError; bump version by @yozachar in #343
Maintenance
patch: domain & url modules by @yozachar in #339
fix: domain name not confirming to rfc_2782 by @yozachar in #341
maint: update dev dependencies; adds favicon to docs by @yozachar in #342
0.23.2
===========
Maintenance
maint: rectifies changelog by @yozachar in #336
fix: packaging as well as rST & md document generation by @yozachar in #337
0.23.1
===========
Maintenance
maint: fix between & length validators by @yozachar in #334
fix: manual nav reference for mkdocs; bumps version by @yozachar in #335
0.23.0
===========
Features
feat: add french i18n validation by @imperosol in #308
Maintenance
fix: Valid URLs failing validation - query and fragment parts by @danherbriley in #297
fix: bug in between module by @yozachar in #301
chore: update dependencies, improve packaging by @yozachar in #304
Fix fragment check by @darkdragon-001 in #305
build(deps): bump urllib3 from 2.0.6 to 2.0.7 in /package by @dependabot in #310
fix: allow pct-encoded entities in fragments by @conitrade-as in #317
chore: update dev dependencies by @yozachar in #318
build(deps): bump gitpython from 3.1.37 to 3.1.41 in /package by @dependabot in #321
build(deps): bump jinja2 from 3.1.2 to 3.1.3 in /package by @dependabot in #322
chore: monthly updates for Jan'24 by @yozachar in #324
maint: adds versiond docs; update copyright year by @yozachar in #329
chore: update dev dependencies by @yozachar in #330
build(deps): bump gitpython from 3.1.37 to 3.1.41 in /package by @dependabot in #331
build(deps): bump jinja2 from 3.1.2 to 3.1.3 in /package by @dependabot in #332
build(deps): bump urllib3 from 2.0.6 to 2.0.7 in /package by @dependabot in #319
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
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.