Ankush Menat
7a37c7fad7
Merge pull request #26566 from ankush/sched_merge
...
perf: Merge `worker-pool` and `scheduler`
2024-05-27 12:42:39 +05:30
Ankush Menat
d13178755b
refactor: keep scheduler+worker behaviour to workerpool
...
- Single worker adds some extra costs to each worker (importing scheduler)
- Workerpool can import it all once and share
- This way we need not have many different
2024-05-27 12:29:41 +05:30
Ankush Menat
59bbbd7b56
perf: optimize scheduling
...
- Randomize scheduling order
- Cache dormant status for 1 hour (this gets checked every second, too much work)
2024-05-27 12:21:11 +05:30
Ankush Menat
433e7281f7
feat: make running scheduler with worker optional
2024-05-27 12:14:15 +05:30
Frappe PR Bot
1a764d054e
fix: Persian translations
2024-05-27 06:57:55 +05:30
frappe-pr-bot
d6d3a511b9
chore: update POT file
2024-05-26 09:33:22 +00:00
Ankush Menat
f7ff829ea7
perf: Merge worker and scheduler
2024-05-26 12:44:00 +05:30
Ankush Menat
43c8ae0049
fix: Duplicate scheduled jobs run forever ( #26565 )
...
If same method is added in multiple places our code just finds 1 random
scheduled job type and updates it as "ran", in some unlucky situations
this behaviour won't be random and always run one and update another so
the job never gets marked as "ran" and keeps running on every tick.
2024-05-26 06:49:20 +00:00
Frappe PR Bot
09303cedc4
fix: Persian translations
2024-05-26 06:46:25 +05:30
Frappe PR Bot
33f0991432
fix: Turkish translations
2024-05-26 06:46:23 +05:30
Raffael Meyer
d18f743d39
Merge pull request #26327 from frappe/l10n_develop
...
fix: sync translations from crowdin
2024-05-25 18:37:39 +02:00
Frappe PR Bot
b725d7bc73
fix: Turkish translations
2024-05-25 06:42:39 +05:30
barredterra
bb7e1eb4ec
fix: apply user permissions on letter head
2024-05-24 16:03:15 +02:00
barredterra
223ad14c15
fix: use link field for letter head
2024-05-24 16:01:49 +02:00
barredterra
e041603aca
feat: increase verbosity of post_schema_updates
2024-05-24 15:48:00 +02:00
marination
985199913e
fix: Appropriate variable name, avoid redefining parameter
2024-05-24 13:37:58 +02:00
KlausH09
6b0d9e4bb2
fix: child table field wildcard in API ( #26543 )
2024-05-24 10:31:05 +00:00
barredterra
cc4d369e3f
test: refactor autocomplete cypress test
2024-05-24 12:25:29 +02:00
Raffael Meyer
4a7de16019
fix: don't automatically add system manager ( #26540 )
...
* fix: don't automatically add system manager
* feat: remove User.a_system_manager_should_exist
* feat: remove User.add_system_manager_role
* feat: remove User.is_system_manager_disabled
* feat: remove User.get_other_system_managers
* feat: add "System Manager" role to User created by setup wizard
2024-05-24 08:29:30 +00:00
Rutwik Hiwalkar
7e18910dbd
fix: append download button to body and cleanup after click ( #26544 )
2024-05-24 08:24:08 +00:00
Raffael Meyer
551a520052
feat: kanban style ( #26538 )
...
* fix(Kanban): hide sidebar toggle
* fix(Kanban): toggle full-width if more than five columns are visible
* fix(Kanban): show correct cursor on column header
* fix(Kanban): increase column height, add margin
* fix(Kanban): increase card padding
* feat(Kanban): set column background based on indicator
* fix(Kanban): add-button background color
* feat(Kanban): grow columns if there's leftover space
* fix(Kanban): space between columns
2024-05-24 13:32:56 +05:30
Rutwik Hiwalkar
3e8765d5d1
fix(ui_test): reload page after login instead of redirecting to /app ( #26551 )
...
- navigating to /app does an absolute navigation in cypress and doesn't
forward url args
2024-05-24 13:08:31 +05:30
Ankush Menat
750b70b075
refactor: Wrap meta in v2 ( #26548 )
2024-05-24 06:05:09 +00:00
Frappe PR Bot
82aca3fde4
fix: Turkish translations
2024-05-24 06:15:56 +05:30
Frappe PR Bot
72acee102a
fix: Turkish translations
2024-05-23 06:09:44 +05:30
Rutwik Hiwalkar
75412ba872
Merge pull request #26514 from rutwikhdev/fix-download-redirect
...
fix: download file instead of open in new window
2024-05-22 19:04:21 +05:30
Rutwik Hiwalkar
5cdad43d23
Merge pull request #26515 from rutwikhdev/fix-imageview
...
fix: misc fixes in image view
2024-05-22 19:04:00 +05:30
Rutwik Hiwalkar
f95d7ace1e
fix(style): remove bg-color override for datatable ( #26497 )
2024-05-22 19:03:31 +05:30
Ankush Menat
9e9e72bce5
fix: reload before saving on reconnect ( #26534 )
...
The doc we have might be "in future".
2024-05-22 16:31:07 +05:30
marination
6f6e429ab2
feat: Add on_add_row event for grid in Dialog
...
- This can be used to manipulate data and add presets to the grid dynamically
2024-05-22 12:48:39 +02:00
gavin
ea6a47df94
fix: Redirect to Login Page if not signed In ( #26506 )
...
Redirect to Login page if User is not logged in already. Upon successful login, redirect to the page they intended to see.
This is a common pattern for opening tabs to previous sessions where Users get logged out and are shown the "Log in to access this page." message instead.
2024-05-22 15:49:59 +05:30
Ankush Menat
005e74b20d
perf: Avoid coalesce for between filters ( #26531 )
...
- Avoid on `between` + date
- Avoid on timestamp fields
- Avoid on `>` and `>=` comparisons
2024-05-22 09:32:59 +00:00
Rutwik Hiwalkar
de36efb8ee
Merge branch 'frappe:develop' into fix-imageview
2024-05-22 12:30:42 +05:30
Ankush Menat
4fbeb4617a
fix: Use true stderr for dumping trace ( #26524 )
...
closes https://github.com/frappe/frappe/issues/26302
2024-05-22 07:00:29 +00:00
dependabot[bot]
ba199f8e4b
--- ( #26520 )
...
updated-dependencies:
- dependency-name: pymysql
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-22 12:06:04 +05:30
Rutwik Hiwalkar
2cbf8f7e2b
chore: use a darker bg-color for zoom-view icon
...
- better visibility in dark mode
2024-05-21 19:06:24 +05:30
Rutwik Hiwalkar
0b6357fcfb
fix: show only uploaded images in gallery view
...
- earlier we used to show null images as empty
2024-05-21 19:05:49 +05:30
Rutwik Hiwalkar
c112380a6e
fix: download file instead of open in new window
...
- simulate a link click download the file when Download button is
clicked in File Doc
2024-05-21 18:33:04 +05:30
Ankush Menat
1b025c76da
build: Bump requests ( #26501 )
...
Minor security issue, not really used by us this way afaik.
2024-05-21 07:59:18 +00:00
Ankush Menat
c973d08fe2
fix: ignore apps without pyproject ( #26498 )
2024-05-21 07:44:07 +00:00
Ankush Menat
2953c165cf
Merge pull request #26487 from rutwikhdev/upgrade-photoswipe
...
feat: upgrade photoswipe and remove vendoring
2024-05-21 12:05:25 +05:30
Akhil Narang
45ffcf606e
Merge pull request #26462 from akhilnarang/tar-ignore-file-changed-as-we-read-it
...
feat: ignore `tar: file changed as we read it` during backups
2024-05-21 11:46:05 +05:30
Corentin Flr
33256cd3ac
fix(code): Only add copy button if missing ( #26493 )
2024-05-21 11:25:06 +05:30
Frappe PR Bot
99af4438ed
fix: Esperanto translations
2024-05-21 03:55:14 +05:30
Frappe PR Bot
d3251873a1
fix: German translations
2024-05-21 03:55:12 +05:30
Frappe PR Bot
f03ce01d5f
fix: Arabic translations
2024-05-21 03:55:10 +05:30
Frappe PR Bot
0e4de4e4e2
fix: French translations
2024-05-21 03:55:07 +05:30
Frappe PR Bot
93a7434ec8
fix: Bosnian translations
2024-05-21 03:55:05 +05:30
Frappe PR Bot
30f85501f6
fix: Spanish translations
2024-05-21 03:55:03 +05:30
Frappe PR Bot
99d3436c47
fix: Persian translations
2024-05-21 03:55:00 +05:30