aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* bump versionMario2024-07-201-1/+1
|
* sse: reset session after connection abortedMario2024-07-191-2/+9
|
* more work on sse sys messagesMario2024-07-195-100/+83
|
* more f arg removalMario2024-07-192-31/+32
|
* Merge branch 'dev' of https://framagit.org/hubzilla/core into devMario Vavti2024-07-191-128/+6
|\
| * remove unused functions and start removing the ominous f argumentMario2024-07-191-128/+6
| |
* | use the same url for attachment and body. otherwise we can not deduplicate ↵Mario Vavti2024-07-191-3/+3
|/ | | | at the receiving side.
* changelogMario2024-07-181-0/+12
|
* bump versionMario2024-07-171-1/+1
|
* sse: revert removing of reset after 30 seconds and save a db lookup if we ↵Mario2024-07-171-2/+24
| | | | have just reset
* fix php warningMario2024-07-171-1/+1
|
* gd: check if function exists - obviously this can change after the initial ↵Mario2024-07-171-6/+24
| | | | install where we check this
* missing pdl for mod importMario2024-07-152-1/+9
|
* dbesc the workinfo jsonMario2024-07-151-2/+2
|
* always use ob_end_flush() and reduce code duplicationMario2024-07-151-6/+5
|
* make sure we always have an object which was not the case when repeating one ↵Mario2024-07-151-1/+7
| | | | of our own items
* do not handle non sys notifications if we are in sys only modeMario2024-07-101-1/+4
|
* more work on making sure system notifications appear on page reloadMario2024-07-101-2/+3
|
* improve handling of sse especially in relation with page reloadsMario2024-07-084-47/+36
|
* notifications: provide possibility to only display system notoficationsMario2024-07-073-20/+28
|
* adjust release dateMario2024-07-061-1/+1
|
* update changelogMario2024-07-061-0/+61
|
* fix wrong logic after last commitMario2024-07-041-1/+1
|
* revert the strlen checkMario2024-07-041-1/+1
|
* fix possible php errorMario2024-07-041-1/+7
|
* fail to import more gracefully if a channel has already been imported at ↵Mario2024-06-281-1/+7
| | | | some point but was deleted again
* fix php errorMario2024-06-271-4/+4
|
* fix display issue for doubleleft templateMario2024-06-271-1/+1
|
* adjust right margin of profile imagesMario2024-06-271-1/+1
|
* version 9.3Mario2024-06-271-1/+1
|
* version 9.2RC1, strings and dump composer autoload filesMario2024-06-274-1879/+1873
|
* make sure we get a scrollbar if everything else breaks and remove some ↵Mario2024-06-263-21/+2
| | | | unused css
* use the doubleleft template by default for admin pages to work around some ↵Mario2024-06-261-4/+1
| | | | display issues. Also notifications, etc. are not really useful there
* fix php errorMario2024-06-261-5/+5
|
* bump versionMario2024-06-251-1/+1
|
* reflect the censored state in the local xchan and exclude toplevel posts by ↵Mario2024-06-252-20/+45
| | | | censored channels in the public stream
* fix issue where event items were parsed multiple timesMario2024-06-213-6/+12
|
* move template to wiki addonMario2024-06-181-59/+0
|
* fix return to blank page after editing post under some circumstancesMario2024-06-182-1/+6
|
* Merge branch 'misc-fixes' into 'dev'Mario2024-06-172-12/+113
|\ | | | | | | | | Add module test helper expectRedirectTo + api docs See merge request hubzilla/core!2138
| * Update API docs for Module test case base class.Harald Eilertsen2024-06-161-6/+98
| |
| * tests: Add helper expectRedirectTo to module test class.Harald Eilertsen2024-06-161-0/+6
| | | | | | | | | | Just a shorthand for manually stubbing `goaway` and setting the expectations on the test case.
| * Refactor is_local_url() and add api doc.Harald Eilertsen2024-06-161-6/+9
| |
* | Merge branch 'add-tests-for-create-identity' into 'dev'Mario2024-06-177-82/+157
|\ \ | |/ |/| | | | | Add tests for create_identity + fixes See merge request hubzilla/core!2137
| * Missing include in QueueWorker.Harald Eilertsen2024-06-151-0/+2
| |
| * Use empty() to check if array entry exist in create_identity.Harald Eilertsen2024-06-141-2/+2
| |
| * Add basic test for create_identity function.Harald Eilertsen2024-06-141-0/+65
| | | | | | | | | | Not an exhaustive test for now, but does at least excercise some of the code.
| * Allow passing callable as array to hooks.Harald Eilertsen2024-06-142-10/+76
| |
| * QueueWorker: Use DbaTransaction class for db transactions.Harald Eilertsen2024-06-141-24/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | This makes sure that the system knows whether a transaction is active or not, and ensures automatic cleanup if the transaction is not closed before the methods return. It also allows us to run this code in tests. When run within a test, the transaction will be ignored, as the entire test is run within an already existing transaction. Also as each test has their own db connection, this should not have any ill effects, as there should not be any way in which different simultaneous connections can interfere with the db updates.
| * tests: Remove obsolete stubs from Permissions testsHarald Eilertsen2024-06-142-46/+0
|/ | | | These stubs are no longer needed, as the tests have a db now.