Skip to content

Commit

Permalink
chore(deps): Bump toxic from 9cc7aba to cb4e3a7
Browse files Browse the repository at this point in the history
Bumps [toxic](https://github.com/TokTok/toxic) from `9cc7aba` to `cb4e3a7`.
- [Release notes](https://github.com/TokTok/toxic/releases)
- [Commits](TokTok/toxic@9cc7aba...cb4e3a7)

---
updated-dependencies:
- dependency-name: toxic
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and iphydf committed Jan 25, 2025
1 parent 49c1f14 commit a601abd
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion c-toxcore
Submodule c-toxcore updated 2 files
+28 −0 .circleci/config.yml
+33 −100 .cirrus.yml
2 changes: 1 addition & 1 deletion dockerfiles
2 changes: 1 addition & 1 deletion hs-cimple
2 changes: 1 addition & 1 deletion hs-tokstyle
2 changes: 1 addition & 1 deletion qtox
Submodule qtox updated 62 files
+1 −0 .ci-scripts/build-qtox-linux.sh
+15 −7 .clang-tidy
+1 −1 audio/include/audio/iaudiosink.h
+7 −7 audio/src/backend/openal.cpp
+1 −1 audio/src/backend/openal.h
+12 −12 src/appmanager.cpp
+1 −1 src/appmanager.h
+5 −5 src/chatlog/chatwidget.cpp
+1 −1 src/chatlog/chatwidget.h
+1 −1 src/chatlog/content/filetransferwidget.h
+2 −2 src/conferencelist.cpp
+2 −2 src/core/core.cpp
+2 −2 src/core/core.h
+1 −1 src/core/coreav.cpp
+1 −1 src/friendlist.cpp
+1 −1 src/ipc.cpp
+1 −1 src/model/about/aboutfriend.h
+2 −2 src/model/chathistory.cpp
+3 −3 src/model/chatroom/conferenceroom.cpp
+5 −5 src/model/chatroom/friendchatroom.cpp
+2 −2 src/model/conference.h
+4 −4 src/model/debug/debugobjecttreemodel.cpp
+1 −1 src/model/exiftransform.cpp
+1 −1 src/model/friendlist/friendlistmanager.h
+2 −2 src/model/profile/profileinfo.h
+0 −1 src/net/bootstrapnodeupdater.cpp
+1 −1 src/net/updatecheck.h
+2 −2 src/persistence/db/rawdatabaseimpl.h
+1 −1 src/persistence/profile.cpp
+1 −1 src/persistence/profile.h
+1 −1 src/persistence/settings.cpp
+2 −5 src/persistence/settingsserializer.cpp
+1 −1 src/persistence/settingsserializer.h
+1 −1 src/persistence/toxsave.cpp
+1 −1 src/platform/posixsignalnotifier.cpp
+0 −2 src/video/cameradevice.cpp
+6 −7 src/video/videoframe.h
+1 −1 src/widget/categorywidget.h
+1 −1 src/widget/circlewidget.cpp
+10 −10 src/widget/contentdialog.cpp
+7 −7 src/widget/contentdialogmanager.cpp
+3 −2 src/widget/contentdialogmanager.h
+2 −2 src/widget/form/addfriendform.h
+4 −4 src/widget/form/chatform.cpp
+1 −1 src/widget/form/conferenceinvitewidget.cpp
+1 −1 src/widget/form/conferenceinvitewidget.h
+2 −2 src/widget/form/filesform.cpp
+2 −2 src/widget/form/genericchatform.cpp
+1 −1 src/widget/form/genericchatform.h
+6 −6 src/widget/form/searchsettingsform.h
+3 −1 src/widget/form/setpassworddialog.h
+2 −2 src/widget/form/settings/aboutform.cpp
+1 −5 src/widget/form/settings/advancedform.cpp
+1 −1 src/widget/form/settings/avform.h
+6 −6 src/widget/friendlistwidget.cpp
+1 −1 src/widget/friendlistwidget.h
+30 −29 src/widget/friendwidget.cpp
+5 −6 src/widget/style.cpp
+6 −7 src/widget/style.h
+22 −22 src/widget/widget.cpp
+5 −5 test/model/friendlistmanager_test.cpp
+3 −3 test/platform/posixsignalnotifier_test.cpp
2 changes: 1 addition & 1 deletion tokhub
Submodule tokhub updated 49 files
+15 −0 .github/workflows/ci.yml
+5 −20 .metadata
+8 −0 .restyled.yaml
+1 −1 android/app/build.gradle
+1 −1 android/app/src/main/AndroidManifest.xml
+3 −1 android/gradle/wrapper/gradle-wrapper.properties
+2 −2 android/settings.gradle
+7 −6 cspell.config.yaml
+23 −11 lib/data_object.dart
+30 −0 lib/db/database.dart
+12 −0 lib/db/native.dart
+3 −0 lib/db/shared.dart
+3 −0 lib/db/unsupported.dart
+11 −0 lib/db/web.dart
+20 −1 lib/logger.dart
+18 −1 lib/models/check_status.dart
+110 −233 lib/models/github.dart
+33 −0 lib/models/json_enum.dart
+7 −6 lib/models/pull_request_info.dart
+0 −333 lib/objectbox-model.json
+75 −73 lib/pages/home_page.dart
+0 −94 lib/providers/check_runs.dart
+30 −38 lib/providers/check_status.dart
+0 −99 lib/providers/combined_repository_status.dart
+13 −0 lib/providers/database.dart
+0 −26 lib/providers/objectbox.dart
+56 −0 lib/providers/orgs/repos.dart
+0 −170 lib/providers/pull_request.dart
+0 −33 lib/providers/pull_request_info.dart
+72 −0 lib/providers/repos/commits/check_runs.dart
+74 −0 lib/providers/repos/commits/status.dart
+133 −0 lib/providers/repos/pulls.dart
+0 −64 lib/providers/repository.dart
+39 −0 lib/widgets/home_view.dart
+11 −8 lib/widgets/pull_request_tile.dart
+46 −36 lib/widgets/pull_requests_view.dart
+22 −11 lib/widgets/repositories_view.dart
+4 −4 linux/flutter/generated_plugin_registrant.cc
+1 −1 linux/flutter/generated_plugins.cmake
+3 −3 linux/my_application.cc
+2 −2 macos/Flutter/GeneratedPluginRegistrant.swift
+25 −10 macos/Podfile.lock
+100 −84 pubspec.lock
+11 −8 pubspec.yaml
+3 −0 tools/prepare
+13 −0 tools/prepare-web
+2 −0 web/.gitignore
+3 −3 windows/flutter/generated_plugin_registrant.cc
+1 −1 windows/flutter/generated_plugins.cmake
2 changes: 1 addition & 1 deletion toxic

0 comments on commit a601abd

Please sign in to comment.