├── .bzrignore ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── AUTHORS ├── BUILD_CONFIG ├── COPYING ├── INSTALL ├── LICENSE.md ├── NOTES ├── README.md ├── aptik.geany ├── aptik.pot ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── rules └── source │ └── format ├── icons ├── aptik-14.png ├── aptik-192.png ├── aptik-64.png ├── aptik.xcf └── index.list.~1~.~1~ ├── makefile ├── man ├── ChangeLog ├── Makefile.am ├── Makefile.in └── hello.1 ├── po ├── aptik-cs.po ├── aptik-it.po ├── aptik-ko.po ├── aptik-pt.po ├── aptik-ru.po └── aptik-sv.po ├── release ├── create-appimage └── sanity.config └── src ├── AboutWindow.vala ├── AdminWindow.vala ├── AptikConsole.vala ├── AptikGtk.vala ├── ConfigWindow.vala ├── CustomMessageDialog.vala ├── DonationWindow.vala ├── DownloadWindow.vala ├── Main.vala ├── MainWindow.vala ├── MountWindow.vala ├── OneClickSettingsDialog.vala ├── PackageManagerWindow.vala ├── PackageWindow.vala ├── PasswordWindow.vala ├── PpaWindow.vala ├── ProgressWindow.vala ├── TerminalWindow.vala ├── ThemeWindow.vala ├── UserAccountWindow.vala ├── UserDataSettingsDialog.vala ├── Utility ├── AppExcludeEntry.vala ├── Archive.vala ├── Archiver.vala ├── AsyncTask.vala ├── Classes.vala ├── CronTab.vala ├── DownloadManager.vala ├── FileItem.vala ├── SystemUser.vala ├── Theme.vala ├── Utility.vala └── Version.vala ├── aptik-launcher ├── aptik-uninstall ├── aptik.desktop ├── makefile └── share ├── aptik └── images │ ├── backup.svg │ ├── cache.svg │ ├── clock.png │ ├── config.svg │ ├── donate.svg │ ├── help-info.svg │ ├── home.svg │ ├── item-blue.png │ ├── item-gray.png │ ├── item-green.png │ ├── item-pink.png │ ├── item-red.png │ ├── item-yellow.png │ ├── lock.svg │ ├── mount.svg │ ├── package.svg │ ├── ppa.svg │ ├── progress.gif │ ├── restore.svg │ ├── system-users.svg │ └── theme.svg ├── pixmaps └── aptik.svg └── polkit-1 └── actions └── in.teejeetech.pkexec.aptik-gtk.policy /.bzrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/.bzrignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | 2 | Copyright (C) 2013 Tony George (teejee2008@gmail.com) 3 | 4 | -------------------------------------------------------------------------------- /BUILD_CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/BUILD_CONFIG -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/README.md -------------------------------------------------------------------------------- /aptik.geany: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/aptik.geany -------------------------------------------------------------------------------- /aptik.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/aptik.pot -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /icons/aptik-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/icons/aptik-14.png -------------------------------------------------------------------------------- /icons/aptik-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/icons/aptik-192.png -------------------------------------------------------------------------------- /icons/aptik-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/icons/aptik-64.png -------------------------------------------------------------------------------- /icons/aptik.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/icons/aptik.xcf -------------------------------------------------------------------------------- /icons/index.list.~1~.~1~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/icons/index.list.~1~.~1~ -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/makefile -------------------------------------------------------------------------------- /man/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/man/Makefile.in -------------------------------------------------------------------------------- /man/hello.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/man/hello.1 -------------------------------------------------------------------------------- /po/aptik-cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/po/aptik-cs.po -------------------------------------------------------------------------------- /po/aptik-it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/po/aptik-it.po -------------------------------------------------------------------------------- /po/aptik-ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/po/aptik-ko.po -------------------------------------------------------------------------------- /po/aptik-pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/po/aptik-pt.po -------------------------------------------------------------------------------- /po/aptik-ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/po/aptik-ru.po -------------------------------------------------------------------------------- /po/aptik-sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/po/aptik-sv.po -------------------------------------------------------------------------------- /release/create-appimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/release/create-appimage -------------------------------------------------------------------------------- /release/sanity.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/release/sanity.config -------------------------------------------------------------------------------- /src/AboutWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/AboutWindow.vala -------------------------------------------------------------------------------- /src/AdminWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/AdminWindow.vala -------------------------------------------------------------------------------- /src/AptikConsole.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/AptikConsole.vala -------------------------------------------------------------------------------- /src/AptikGtk.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/AptikGtk.vala -------------------------------------------------------------------------------- /src/ConfigWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/ConfigWindow.vala -------------------------------------------------------------------------------- /src/CustomMessageDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/CustomMessageDialog.vala -------------------------------------------------------------------------------- /src/DonationWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/DonationWindow.vala -------------------------------------------------------------------------------- /src/DownloadWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/DownloadWindow.vala -------------------------------------------------------------------------------- /src/Main.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/Main.vala -------------------------------------------------------------------------------- /src/MainWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/MainWindow.vala -------------------------------------------------------------------------------- /src/MountWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/MountWindow.vala -------------------------------------------------------------------------------- /src/OneClickSettingsDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/OneClickSettingsDialog.vala -------------------------------------------------------------------------------- /src/PackageManagerWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/PackageManagerWindow.vala -------------------------------------------------------------------------------- /src/PackageWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/PackageWindow.vala -------------------------------------------------------------------------------- /src/PasswordWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/PasswordWindow.vala -------------------------------------------------------------------------------- /src/PpaWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/PpaWindow.vala -------------------------------------------------------------------------------- /src/ProgressWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/ProgressWindow.vala -------------------------------------------------------------------------------- /src/TerminalWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/TerminalWindow.vala -------------------------------------------------------------------------------- /src/ThemeWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/ThemeWindow.vala -------------------------------------------------------------------------------- /src/UserAccountWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/UserAccountWindow.vala -------------------------------------------------------------------------------- /src/UserDataSettingsDialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/UserDataSettingsDialog.vala -------------------------------------------------------------------------------- /src/Utility/AppExcludeEntry.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/Utility/AppExcludeEntry.vala -------------------------------------------------------------------------------- /src/Utility/Archive.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/Utility/Archive.vala -------------------------------------------------------------------------------- /src/Utility/Archiver.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/Utility/Archiver.vala -------------------------------------------------------------------------------- /src/Utility/AsyncTask.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/Utility/AsyncTask.vala -------------------------------------------------------------------------------- /src/Utility/Classes.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/Utility/Classes.vala -------------------------------------------------------------------------------- /src/Utility/CronTab.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/Utility/CronTab.vala -------------------------------------------------------------------------------- /src/Utility/DownloadManager.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/Utility/DownloadManager.vala -------------------------------------------------------------------------------- /src/Utility/FileItem.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/Utility/FileItem.vala -------------------------------------------------------------------------------- /src/Utility/SystemUser.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/Utility/SystemUser.vala -------------------------------------------------------------------------------- /src/Utility/Theme.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/Utility/Theme.vala -------------------------------------------------------------------------------- /src/Utility/Utility.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/Utility/Utility.vala -------------------------------------------------------------------------------- /src/Utility/Version.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/Utility/Version.vala -------------------------------------------------------------------------------- /src/aptik-launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/aptik-launcher -------------------------------------------------------------------------------- /src/aptik-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/aptik-uninstall -------------------------------------------------------------------------------- /src/aptik.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/aptik.desktop -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/makefile -------------------------------------------------------------------------------- /src/share/aptik/images/backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/backup.svg -------------------------------------------------------------------------------- /src/share/aptik/images/cache.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/cache.svg -------------------------------------------------------------------------------- /src/share/aptik/images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/clock.png -------------------------------------------------------------------------------- /src/share/aptik/images/config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/config.svg -------------------------------------------------------------------------------- /src/share/aptik/images/donate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/donate.svg -------------------------------------------------------------------------------- /src/share/aptik/images/help-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/help-info.svg -------------------------------------------------------------------------------- /src/share/aptik/images/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/home.svg -------------------------------------------------------------------------------- /src/share/aptik/images/item-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/item-blue.png -------------------------------------------------------------------------------- /src/share/aptik/images/item-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/item-gray.png -------------------------------------------------------------------------------- /src/share/aptik/images/item-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/item-green.png -------------------------------------------------------------------------------- /src/share/aptik/images/item-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/item-pink.png -------------------------------------------------------------------------------- /src/share/aptik/images/item-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/item-red.png -------------------------------------------------------------------------------- /src/share/aptik/images/item-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/item-yellow.png -------------------------------------------------------------------------------- /src/share/aptik/images/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/lock.svg -------------------------------------------------------------------------------- /src/share/aptik/images/mount.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/mount.svg -------------------------------------------------------------------------------- /src/share/aptik/images/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/package.svg -------------------------------------------------------------------------------- /src/share/aptik/images/ppa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/ppa.svg -------------------------------------------------------------------------------- /src/share/aptik/images/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/progress.gif -------------------------------------------------------------------------------- /src/share/aptik/images/restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/restore.svg -------------------------------------------------------------------------------- /src/share/aptik/images/system-users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/system-users.svg -------------------------------------------------------------------------------- /src/share/aptik/images/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/aptik/images/theme.svg -------------------------------------------------------------------------------- /src/share/pixmaps/aptik.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/pixmaps/aptik.svg -------------------------------------------------------------------------------- /src/share/polkit-1/actions/in.teejeetech.pkexec.aptik-gtk.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teejee2008/aptik-legacy/HEAD/src/share/polkit-1/actions/in.teejeetech.pkexec.aptik-gtk.policy --------------------------------------------------------------------------------