├── .gitignore ├── CHANGELOG ├── LICENSE ├── README.md ├── create-translation.sh ├── notifier ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── octoxbps-notifier.desktop ├── octoxbps-notifier.pro ├── optionsdialog.cpp ├── optionsdialog.h ├── outputdialog.cpp ├── outputdialog.h ├── polkit │ ├── 49-nopasswd_limited_xbps_install_sync.rules │ └── org.freedesktop.policykit.pkexec.run-xbpsinstall.policy └── ui │ └── optionsdialog.ui ├── octoxbps-mainwindow.png ├── octoxbps.desktop ├── octoxbps.pro ├── release-languages.sh ├── resources.qrc ├── resources ├── images │ ├── applications-internet.png │ ├── binary.png │ ├── cachecleaner.png │ ├── collapse.png │ ├── commit.png │ ├── drive-harddisk.png │ ├── edit-copy.png │ ├── editfile.png │ ├── esf-border.png │ ├── esf-clear-active.png │ ├── esf-clear-hover.png │ ├── esf-clear.png │ ├── esf-search.png │ ├── exit.png │ ├── expand.png │ ├── fast_forward.png │ ├── find.png │ ├── folder.png │ ├── folder_gnome.png │ ├── foreign_green.png │ ├── foreign_red.png │ ├── install_item.png │ ├── installed.png │ ├── mirror-check.png │ ├── newer.png │ ├── noninstalled.png │ ├── octopi.png │ ├── octopi_green.png │ ├── octopi_red.png │ ├── octopi_transparent.png │ ├── octopi_yellow.png │ ├── outdated.png │ ├── refresh.png │ ├── remove_item.png │ ├── rollback.png │ ├── rss.png │ ├── show_groups.png │ ├── terminal.png │ ├── toinstall.png │ ├── toremove.png │ ├── unrequired.png │ └── window_close.png └── styles │ ├── branch-closed.png │ ├── branch-closed_BW.png │ ├── branch-end.png │ ├── branch-more.png │ ├── branch-open.png │ ├── branch-open_BW.png │ └── vline.png ├── src ├── QtSolutions │ ├── QtLockedFile │ ├── QtSingleApplication │ ├── qtlocalpeer.cpp │ ├── qtlocalpeer.h │ ├── qtlockedfile.cpp │ ├── qtlockedfile.h │ ├── qtlockedfile_unix.cpp │ ├── qtlockedfile_win.cpp │ ├── qtsingleapplication.cpp │ ├── qtsingleapplication.h │ ├── qtsingleapplication.pri │ ├── qtsinglecoreapplication.cpp │ ├── qtsinglecoreapplication.h │ └── qtsinglecoreapplication.pri ├── argumentlist.cpp ├── argumentlist.h ├── constants.h ├── globals.cpp ├── globals.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow_events.cpp ├── mainwindow_help.cpp ├── mainwindow_init.cpp ├── mainwindow_news.cpp ├── mainwindow_refresh.cpp ├── mainwindow_searchbar.cpp ├── mainwindow_transaction.cpp ├── model │ ├── packagemodel.cpp │ └── packagemodel.h ├── multiselectiondialog.cpp ├── multiselectiondialog.h ├── package.cpp ├── package.h ├── packagerepository.cpp ├── packagerepository.h ├── packagetreeview.cpp ├── packagetreeview.h ├── searchbar.cpp ├── searchbar.h ├── searchlineedit.cpp ├── searchlineedit.h ├── settingsmanager.cpp ├── settingsmanager.h ├── strconstants.cpp ├── strconstants.h ├── terminal.cpp ├── terminal.h ├── termwidget.cpp ├── termwidget.h ├── transactiondialog.cpp ├── transactiondialog.h ├── treeviewpackagesitemdelegate.cpp ├── treeviewpackagesitemdelegate.h ├── ui │ ├── octoxbpstabinfo.cpp │ └── octoxbpstabinfo.h ├── uihelper.h ├── unixcommand.cpp ├── unixcommand.h ├── utils.cpp ├── utils.h ├── wmhelper.cpp ├── wmhelper.h ├── xbpsexec.cpp └── xbpsexec.h ├── translations ├── octoxbps_de.ts ├── octoxbps_nl.ts ├── octoxbps_ru.ts └── octoxbps_tr.ts └── ui ├── mainwindow.ui └── transactiondialog.ui /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/README.md -------------------------------------------------------------------------------- /create-translation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/create-translation.sh -------------------------------------------------------------------------------- /notifier/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/notifier/main.cpp -------------------------------------------------------------------------------- /notifier/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/notifier/mainwindow.cpp -------------------------------------------------------------------------------- /notifier/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/notifier/mainwindow.h -------------------------------------------------------------------------------- /notifier/octoxbps-notifier.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/notifier/octoxbps-notifier.desktop -------------------------------------------------------------------------------- /notifier/octoxbps-notifier.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/notifier/octoxbps-notifier.pro -------------------------------------------------------------------------------- /notifier/optionsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/notifier/optionsdialog.cpp -------------------------------------------------------------------------------- /notifier/optionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/notifier/optionsdialog.h -------------------------------------------------------------------------------- /notifier/outputdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/notifier/outputdialog.cpp -------------------------------------------------------------------------------- /notifier/outputdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/notifier/outputdialog.h -------------------------------------------------------------------------------- /notifier/polkit/49-nopasswd_limited_xbps_install_sync.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/notifier/polkit/49-nopasswd_limited_xbps_install_sync.rules -------------------------------------------------------------------------------- /notifier/polkit/org.freedesktop.policykit.pkexec.run-xbpsinstall.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/notifier/polkit/org.freedesktop.policykit.pkexec.run-xbpsinstall.policy -------------------------------------------------------------------------------- /notifier/ui/optionsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/notifier/ui/optionsdialog.ui -------------------------------------------------------------------------------- /octoxbps-mainwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/octoxbps-mainwindow.png -------------------------------------------------------------------------------- /octoxbps.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/octoxbps.desktop -------------------------------------------------------------------------------- /octoxbps.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/octoxbps.pro -------------------------------------------------------------------------------- /release-languages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/release-languages.sh -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources.qrc -------------------------------------------------------------------------------- /resources/images/applications-internet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/applications-internet.png -------------------------------------------------------------------------------- /resources/images/binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/binary.png -------------------------------------------------------------------------------- /resources/images/cachecleaner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/cachecleaner.png -------------------------------------------------------------------------------- /resources/images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/collapse.png -------------------------------------------------------------------------------- /resources/images/commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/commit.png -------------------------------------------------------------------------------- /resources/images/drive-harddisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/drive-harddisk.png -------------------------------------------------------------------------------- /resources/images/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/edit-copy.png -------------------------------------------------------------------------------- /resources/images/editfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/editfile.png -------------------------------------------------------------------------------- /resources/images/esf-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/esf-border.png -------------------------------------------------------------------------------- /resources/images/esf-clear-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/esf-clear-active.png -------------------------------------------------------------------------------- /resources/images/esf-clear-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/esf-clear-hover.png -------------------------------------------------------------------------------- /resources/images/esf-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/esf-clear.png -------------------------------------------------------------------------------- /resources/images/esf-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/esf-search.png -------------------------------------------------------------------------------- /resources/images/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/exit.png -------------------------------------------------------------------------------- /resources/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/expand.png -------------------------------------------------------------------------------- /resources/images/fast_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/fast_forward.png -------------------------------------------------------------------------------- /resources/images/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/find.png -------------------------------------------------------------------------------- /resources/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/folder.png -------------------------------------------------------------------------------- /resources/images/folder_gnome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/folder_gnome.png -------------------------------------------------------------------------------- /resources/images/foreign_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/foreign_green.png -------------------------------------------------------------------------------- /resources/images/foreign_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/foreign_red.png -------------------------------------------------------------------------------- /resources/images/install_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/install_item.png -------------------------------------------------------------------------------- /resources/images/installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/installed.png -------------------------------------------------------------------------------- /resources/images/mirror-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/mirror-check.png -------------------------------------------------------------------------------- /resources/images/newer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/newer.png -------------------------------------------------------------------------------- /resources/images/noninstalled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/noninstalled.png -------------------------------------------------------------------------------- /resources/images/octopi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/octopi.png -------------------------------------------------------------------------------- /resources/images/octopi_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/octopi_green.png -------------------------------------------------------------------------------- /resources/images/octopi_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/octopi_red.png -------------------------------------------------------------------------------- /resources/images/octopi_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/octopi_transparent.png -------------------------------------------------------------------------------- /resources/images/octopi_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/octopi_yellow.png -------------------------------------------------------------------------------- /resources/images/outdated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/outdated.png -------------------------------------------------------------------------------- /resources/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/refresh.png -------------------------------------------------------------------------------- /resources/images/remove_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/remove_item.png -------------------------------------------------------------------------------- /resources/images/rollback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/rollback.png -------------------------------------------------------------------------------- /resources/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/rss.png -------------------------------------------------------------------------------- /resources/images/show_groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/show_groups.png -------------------------------------------------------------------------------- /resources/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/terminal.png -------------------------------------------------------------------------------- /resources/images/toinstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/toinstall.png -------------------------------------------------------------------------------- /resources/images/toremove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/toremove.png -------------------------------------------------------------------------------- /resources/images/unrequired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/unrequired.png -------------------------------------------------------------------------------- /resources/images/window_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/images/window_close.png -------------------------------------------------------------------------------- /resources/styles/branch-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/styles/branch-closed.png -------------------------------------------------------------------------------- /resources/styles/branch-closed_BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/styles/branch-closed_BW.png -------------------------------------------------------------------------------- /resources/styles/branch-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/styles/branch-end.png -------------------------------------------------------------------------------- /resources/styles/branch-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/styles/branch-more.png -------------------------------------------------------------------------------- /resources/styles/branch-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/styles/branch-open.png -------------------------------------------------------------------------------- /resources/styles/branch-open_BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/styles/branch-open_BW.png -------------------------------------------------------------------------------- /resources/styles/vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/resources/styles/vline.png -------------------------------------------------------------------------------- /src/QtSolutions/QtLockedFile: -------------------------------------------------------------------------------- 1 | #include "qtlockedfile.h" 2 | -------------------------------------------------------------------------------- /src/QtSolutions/QtSingleApplication: -------------------------------------------------------------------------------- 1 | #include "qtsingleapplication.h" 2 | -------------------------------------------------------------------------------- /src/QtSolutions/qtlocalpeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/QtSolutions/qtlocalpeer.cpp -------------------------------------------------------------------------------- /src/QtSolutions/qtlocalpeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/QtSolutions/qtlocalpeer.h -------------------------------------------------------------------------------- /src/QtSolutions/qtlockedfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/QtSolutions/qtlockedfile.cpp -------------------------------------------------------------------------------- /src/QtSolutions/qtlockedfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/QtSolutions/qtlockedfile.h -------------------------------------------------------------------------------- /src/QtSolutions/qtlockedfile_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/QtSolutions/qtlockedfile_unix.cpp -------------------------------------------------------------------------------- /src/QtSolutions/qtlockedfile_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/QtSolutions/qtlockedfile_win.cpp -------------------------------------------------------------------------------- /src/QtSolutions/qtsingleapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/QtSolutions/qtsingleapplication.cpp -------------------------------------------------------------------------------- /src/QtSolutions/qtsingleapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/QtSolutions/qtsingleapplication.h -------------------------------------------------------------------------------- /src/QtSolutions/qtsingleapplication.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/QtSolutions/qtsingleapplication.pri -------------------------------------------------------------------------------- /src/QtSolutions/qtsinglecoreapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/QtSolutions/qtsinglecoreapplication.cpp -------------------------------------------------------------------------------- /src/QtSolutions/qtsinglecoreapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/QtSolutions/qtsinglecoreapplication.h -------------------------------------------------------------------------------- /src/QtSolutions/qtsinglecoreapplication.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/QtSolutions/qtsinglecoreapplication.pri -------------------------------------------------------------------------------- /src/argumentlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/argumentlist.cpp -------------------------------------------------------------------------------- /src/argumentlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/argumentlist.h -------------------------------------------------------------------------------- /src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/constants.h -------------------------------------------------------------------------------- /src/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/globals.cpp -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/globals.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/mainwindow_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/mainwindow_events.cpp -------------------------------------------------------------------------------- /src/mainwindow_help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/mainwindow_help.cpp -------------------------------------------------------------------------------- /src/mainwindow_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/mainwindow_init.cpp -------------------------------------------------------------------------------- /src/mainwindow_news.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/mainwindow_news.cpp -------------------------------------------------------------------------------- /src/mainwindow_refresh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/mainwindow_refresh.cpp -------------------------------------------------------------------------------- /src/mainwindow_searchbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/mainwindow_searchbar.cpp -------------------------------------------------------------------------------- /src/mainwindow_transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/mainwindow_transaction.cpp -------------------------------------------------------------------------------- /src/model/packagemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/model/packagemodel.cpp -------------------------------------------------------------------------------- /src/model/packagemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/model/packagemodel.h -------------------------------------------------------------------------------- /src/multiselectiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/multiselectiondialog.cpp -------------------------------------------------------------------------------- /src/multiselectiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/multiselectiondialog.h -------------------------------------------------------------------------------- /src/package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/package.cpp -------------------------------------------------------------------------------- /src/package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/package.h -------------------------------------------------------------------------------- /src/packagerepository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/packagerepository.cpp -------------------------------------------------------------------------------- /src/packagerepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/packagerepository.h -------------------------------------------------------------------------------- /src/packagetreeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/packagetreeview.cpp -------------------------------------------------------------------------------- /src/packagetreeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/packagetreeview.h -------------------------------------------------------------------------------- /src/searchbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/searchbar.cpp -------------------------------------------------------------------------------- /src/searchbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/searchbar.h -------------------------------------------------------------------------------- /src/searchlineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/searchlineedit.cpp -------------------------------------------------------------------------------- /src/searchlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/searchlineedit.h -------------------------------------------------------------------------------- /src/settingsmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/settingsmanager.cpp -------------------------------------------------------------------------------- /src/settingsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/settingsmanager.h -------------------------------------------------------------------------------- /src/strconstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/strconstants.cpp -------------------------------------------------------------------------------- /src/strconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/strconstants.h -------------------------------------------------------------------------------- /src/terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/terminal.cpp -------------------------------------------------------------------------------- /src/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/terminal.h -------------------------------------------------------------------------------- /src/termwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/termwidget.cpp -------------------------------------------------------------------------------- /src/termwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/termwidget.h -------------------------------------------------------------------------------- /src/transactiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/transactiondialog.cpp -------------------------------------------------------------------------------- /src/transactiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/transactiondialog.h -------------------------------------------------------------------------------- /src/treeviewpackagesitemdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/treeviewpackagesitemdelegate.cpp -------------------------------------------------------------------------------- /src/treeviewpackagesitemdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/treeviewpackagesitemdelegate.h -------------------------------------------------------------------------------- /src/ui/octoxbpstabinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/ui/octoxbpstabinfo.cpp -------------------------------------------------------------------------------- /src/ui/octoxbpstabinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/ui/octoxbpstabinfo.h -------------------------------------------------------------------------------- /src/uihelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/uihelper.h -------------------------------------------------------------------------------- /src/unixcommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/unixcommand.cpp -------------------------------------------------------------------------------- /src/unixcommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/unixcommand.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/wmhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/wmhelper.cpp -------------------------------------------------------------------------------- /src/wmhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/wmhelper.h -------------------------------------------------------------------------------- /src/xbpsexec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/xbpsexec.cpp -------------------------------------------------------------------------------- /src/xbpsexec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/src/xbpsexec.h -------------------------------------------------------------------------------- /translations/octoxbps_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/translations/octoxbps_de.ts -------------------------------------------------------------------------------- /translations/octoxbps_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/translations/octoxbps_nl.ts -------------------------------------------------------------------------------- /translations/octoxbps_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/translations/octoxbps_ru.ts -------------------------------------------------------------------------------- /translations/octoxbps_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/translations/octoxbps_tr.ts -------------------------------------------------------------------------------- /ui/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/ui/mainwindow.ui -------------------------------------------------------------------------------- /ui/transactiondialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarnt/octoxbps/HEAD/ui/transactiondialog.ui --------------------------------------------------------------------------------