Skip to content
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

fix: [tag]New tag v5.5.13 #174

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions 3rdparty/fsearch/array.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <string.h>
#include <sys/param.h>
#include <assert.h>
#include <stdlib.h>
#include "array.h"
#include "btree.h"

Expand Down Expand Up @@ -159,9 +160,5 @@ darray_sort (DynamicArray *array, int (*comp_func)(const void *, const void *))
assert (array->data != NULL);
assert (comp_func != NULL);

#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
qsort (array->data, array->num_items, sizeof (void *), comp_func);
#else
std::sort(array->data, array->data + array->num_items, comp_func);
#endif
}
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
dde-grand-search (5.5.13) unstable; urgency=medium

* update dde-grand-search V25 5.5.13 baseline version
* fix issue about launch app and CI build.

-- re2zero <yangwu@uniontech.com> Fri, 17 Jan 2025 14:45:45 +0800

dde-grand-search (5.5.12) unstable; urgency=medium

* update dde-grand-search V25 5.5.12 baseline version
Expand Down
Loading