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
| For VLC configure to detect QUIC and HTTP3 libraries | |
| Openssl | |
| ./config enable-tls1_3 --prefix=/home/devbox/devel/quic_research/build_openssl | |
| make -j$(nproc) | |
| make install_sw | |
| nghttp3 |
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
| root = "/tmp/ctrd/var/lib/containerd" | |
| state = "/tmp/ctrd/run/containerd" | |
| oom_score = 0 | |
| [grpc] | |
| address = "/tmp/ctrd/run/containerd/containerd.sock" | |
| uid = 502 | |
| gid = 0 | |
| max_recv_message_size = 0 | |
| max_send_message_size = 0 |
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
| <aniketh___> Aniketh Girish Also, there is a bug in the resource manager, https://bugs.kde.org/show_bug.cgi?id=359854 | |
| 5:27 PM got any work around to fix this thing? | |
| 5:27 PM The delete machanism is actually working, but the bundles duplicated due to this bug is causing an issue | |
| 5:27 PM S<scottyp_mobile> Scott petrovic Is that the resource manager? How do you edit a brush there | |
| 5:28 PM A preset is just a brush, not a bundle | |
| 5:28 PM A<aniketh___> Aniketh Girish I think the reporter might have mentioned about bundles I guess | |
| 5:28 PM or I send you the wrong bug report link | |
| 5:28 PM let me check | |
| 5:29 PM S<scottyp_mobile> Scott petrovic I don't see the word bundle in that report | |
| 5:29 PM A<aniketh___> Aniketh Girish yeah! |
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
| <aniketh___> Aniketh Girish leinir: Ping | |
| 2:48 PM โ Matombo quit ([email protected]) Ping timeout: 268 seconds | |
| 2:48 PM L<leinir> aniketh___: pong :) | |
| 2:49 PM A<aniketh___> Aniketh Girish leinir: Yeah :) So you where saying something about the project? I would love some clarity :) | |
| 2:50 PM L<leinir> Right! So, i'm guessing you've run across all those buttons scattered around KDE software that says things like "Get New Wallpapers" or that sort of thing? | |
| 2:50 PM A<aniketh___> Aniketh Girish yup :) | |
| 2:50 PM L<leinir> brilliant, makes it much easier to explain things ;) | |
| 2:51 PM A<aniketh___> Aniketh Girish heh :) | |
| 2:51 PM โ Bollebib_Tablet joined ([email protected]) | |
| 2:52 PM L<leinir> Those buttons, and the accompanying dialogues, are what is now in the KNewStuff3 library, but as of last autumn, we also have two others, one called KNewStuffQuick which is Qt Quick and likely not so relevant to what you're doing, and the one which /is/ relevant called KNewStuffCore |
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
| void ContentCreation::uploadFile() | |
| { | |
| doUpload(QString(), ui.uploadFile->url().toLocalFile()); | |
| } |
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
| void ContentDownload::download() | |
| { | |
| qDebug() << "download"; | |
| QTreeWidgetItem* selectedItem = ui.contentList->currentItem(); | |
| if (selectedItem && qVariantCanConvert<Content>(selectedItem->data(0, Qt::UserRole))) { | |
| Content c = qvariant_cast<Content>(selectedItem->data(0, Qt::UserRole)); | |
| ItemJob<DownloadItem>* job = m_provider.downloadLink(c.id()); | |
| connect(job, SIGNAL(finished(Attica::BaseJob*)), SLOT(downloadLinkLoaded(Attica::BaseJob*))); | |
| job->start(); | |
| } |
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
| void ContentDownload::download() | |
| { | |
| qDebug() << "download"; | |
| QTreeWidgetItem* selectedItem = ui.contentList->currentItem(); | |
| if (selectedItem && qVariantCanConvert<Content>(selectedItem->data(0, Qt::UserRole))) { | |
| Content c = qvariant_cast<Content>(selectedItem->data(0, Qt::UserRole)); | |
| ItemJob<DownloadItem>* job = m_provider.downloadLink(c.id()); | |
| connect(job, SIGNAL(finished(Attica::BaseJob*)), SLOT(downloadLinkLoaded(Attica::BaseJob*))); | |
| job->start(); | |
| } |
NewerOlder