On 6/11/26 10:49 PM, Calvin Morrison via tde-devels wrote:
oh me and the little AI elves... sorry the new upstream git repo is hosted on the TDE Gitea.
Calvin
Oh, Thank You!
What are the little binary blobs gitea inserts with the .git/objects/xx/?, e.g.:
diff --git a/../../tmix/.git/objects/16/cf571ffad1908dafffe3b05983cc1011c644d7 b/../../tmix/.git/objects/16/cf571ffad1908dafffe3b05983cc1011c644d7 new file mode 100644 index 0000000..794b725 --- /dev/null +++ b/../../tmix/.git/objects/16/cf571ffad1908dafffe3b05983cc1011c644d7 @@ -0,0 +1 @@ ????6???t?(?-?*??????!??x?T[??????t??6?We]??????j?(8? ????O?tL?!_??}z]?J??? ?Y?,b?????k?E?4?y?~?f8??&?#8?o??????S??r?^f!?8vt.???`? \ No newline at end of file
Is that just something extra gitea inserts into the commit metadata to make it more useful or a different hash used? Most just list that the binary files differ.
So far it looks like there are only a few substantive commits that differ:
diff --git a/./src/ui/mixerwindow.cpp b/../../tmix/src/ui/mixerwindow.cpp index 3311b9c..2bc5b4c 100644 --- a/./src/ui/mixerwindow.cpp +++ b/../../tmix/src/ui/mixerwindow.cpp @@ -267,21 +267,6 @@ void MixerWindow::showDevices() bringToFront(); }
-void MixerWindow::showMixer() -{ - if ( m_devicesInTabs ) { - m_outerStack->raiseWidget( 0 ); - if ( m_tabs->currentPage() == m_devicesPage ) - m_tabs->showPage( m_output.scroll ); - } else { - m_outerStack->raiseWidget( 0 ); - updateDevicesButton(); - repositionDevicesBtn(); - m_devicesBtn->raise(); - } - bringToFront(); -} - void MixerWindow::showAbout() { TDEAboutData about( diff --git a/./src/ui/mixerwindow.h b/../../tmix/src/ui/mixerwindow.h index 0901099..170c4e8 100644 --- a/./src/ui/mixerwindow.h +++ b/../../tmix/src/ui/mixerwindow.h @@ -42,7 +42,6 @@ signals: public slots: void bringToFront(); void showDevices(); - void showMixer();
private slots: void onDeviceAdded( AudioDevice *dev ); diff --git a/./src/ui/tmixtray.cpp b/../../tmix/src/ui/tmixtray.cpp index 796cfae..c6d43c8 100644 --- a/./src/ui/tmixtray.cpp +++ b/../../tmix/src/ui/tmixtray.cpp @@ -250,7 +250,7 @@ void TmixTray::contextMenuAboutToShow( TDEPopupMenu *menu ) MixerWindow *win = static_cast<MixerWindow*>( parentWidget() );
menu->insertItem( SmallIcon("tmix"), i18n("&Open Mixer"), - win, TQ_SLOT(showMixer()) ); + win, TQ_SLOT(bringToFront()) ); menu->insertItem( i18n("&Open Devices"), win, TQ_SLOT(showDevices()) ); menu->insertSeparator();
That's it on the code changes between ceux and gitea. There are ways to synchronize the repositories if you are interested, but I'd have to go back and look it up :) I used to mirror repositories on different servers off-site just in case....
Thanks for your work on this, it will be a great tool for TDE and a go-by for my screen brightness app.