├── .gitignore ├── Archlinux ├── PKGBUILD └── pointdownload.install ├── COPYING ├── PInterface ├── Message │ ├── Message.pri │ ├── normalnotice.cpp │ └── normalnotice.h ├── PEventFilter │ ├── PEventFilter.pri │ ├── peventfilter.cpp │ └── peventfilter.h ├── QtSingleApplication │ ├── 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 ├── Task │ ├── Task.pri │ ├── YouGetTask │ │ ├── yougettask_.cpp │ │ └── yougettask_.h │ ├── task.cpp │ ├── task.h │ ├── taskfileitem.cpp │ ├── taskfileitem.h │ ├── taskinfo.cpp │ └── taskinfo.h └── XmlHandler │ ├── XmlHandler.pri │ ├── downloadxmlhandler.cpp │ ├── downloadxmlhandler.h │ ├── settingxmlhandler.cpp │ └── settingxmlhandler.h ├── PointChromeExtension ├── COPYING ├── Extension │ ├── background.js │ ├── manifest.json │ ├── point-19.png │ ├── point-38.png │ ├── point-64.png │ ├── point-w-19.png │ ├── popup.html │ └── popup.js ├── PointChromeExtension.crx ├── PointExtension.pem ├── README.md ├── nkbchchceepbameamioagcjlhnghdoff.json └── pointdownload.json ├── PointDownload ├── COPYING ├── Controler │ ├── SettingWin │ │ ├── dropzonesettingcontroler.cpp │ │ ├── dropzonesettingcontroler.h │ │ ├── settingcontroler.cpp │ │ ├── settingcontroler.h │ │ ├── xwaresettingcontroler.cpp │ │ ├── xwaresettingcontroler.h │ │ ├── yougetsettingcontroler.cpp │ │ └── yougetsettingcontroler.h │ ├── dldataconverter.cpp │ ├── dldataconverter.h │ ├── middlesender.cpp │ ├── middlesender.h │ ├── monitorClipBoard.cpp │ ├── monitorClipBoard.h │ ├── topcontrl.cpp │ ├── topcontrl.h │ ├── urlserver.cpp │ └── urlserver.h ├── Download │ ├── Aria2Task │ │ ├── aria2process.cpp │ │ ├── aria2process.h │ │ ├── aria2task.cpp │ │ └── aria2task.h │ ├── DataType.h │ ├── PointTask │ │ ├── HttpTask │ │ │ ├── httptask.cpp │ │ │ ├── httptask.h │ │ │ ├── httpthread.cpp │ │ │ ├── httpthread.h │ │ │ ├── httpthreadmanager.cpp │ │ │ └── httpthreadmanager.h │ │ ├── pointtask.cpp │ │ └── pointtask.h │ ├── XwareTask │ │ ├── XwareConstants.h │ │ ├── XwareDataType.h │ │ ├── completedlistwebview.cpp │ │ ├── completedlistwebview.h │ │ ├── mynetworkaccessmanager.cpp │ │ ├── mynetworkaccessmanager.h │ │ ├── mywebview.cpp │ │ ├── mywebview.h │ │ ├── webctrlviewtest.cpp │ │ ├── webctrlviewtest.h │ │ ├── xwarecontroller.cpp │ │ ├── xwarecontroller.h │ │ ├── xwarepopulateobject.cpp │ │ ├── xwarepopulateobject.h │ │ ├── xwaresetting.cpp │ │ ├── xwaresetting.h │ │ ├── xwaretask.cpp │ │ ├── xwaretask.h │ │ ├── xwaretaskentity.cpp │ │ ├── xwaretaskentity.h │ │ ├── xwarewebcontroller.cpp │ │ └── xwarewebcontroller.h │ ├── YouGetTask │ │ ├── yougetprocess.cpp │ │ ├── yougetprocess.h │ │ ├── yougettask.cpp │ │ └── yougettask.h │ ├── unifiedinterface.cpp │ └── unifiedinterface.h ├── PointDownload.pro ├── PointDownload64.png ├── PointDownload80.png ├── PointDownload_ja_JP.ts ├── PointDownload_zh_CN.ts ├── README.MD ├── SysData │ ├── dataflow.cpp │ ├── dataflow.h │ ├── getspeed.cpp │ └── getspeed.h ├── main.cpp ├── qml │ └── PointDownload │ │ ├── AboutPoint │ │ ├── AboutMain.qml │ │ ├── AboutPanel.qml │ │ ├── AboutPoint.js │ │ ├── HelpUsPanle.qml │ │ ├── LeftSlider.qml │ │ ├── RightView.qml │ │ └── SoftwarePanel.qml │ │ ├── Dropzone │ │ ├── Dropzone.js │ │ ├── Dropzone.qml │ │ ├── InnerCircle │ │ │ └── InnerMainCircle.qml │ │ ├── OuterCircle │ │ │ ├── OuterMainCircle.qml │ │ │ └── SectorWidget.qml │ │ └── SettingWin │ │ │ ├── DropzoneSetting │ │ │ └── DropzoneSettingPage.qml │ │ │ ├── GenericSetting │ │ │ ├── GenericSettingPage.qml │ │ │ ├── InputItem.qml │ │ │ ├── PriorityToolItem.qml │ │ │ └── SavePathItem.qml │ │ │ ├── Help │ │ │ ├── HelpItem.qml │ │ │ └── HelpPage.qml │ │ │ ├── SettingBody.qml │ │ │ ├── SettingMainItem.qml │ │ │ ├── SettingWin.js │ │ │ ├── SettingWin.qml │ │ │ ├── SwitchItem.qml │ │ │ ├── XwareSetting │ │ │ ├── LoginPage.qml │ │ │ ├── LogoutPage.qml │ │ │ ├── ValueInputBox.qml │ │ │ └── XwareSettingPage.qml │ │ │ └── YouGetSettingPage.qml │ │ ├── LeftPanel │ │ ├── LeftMainPanel.qml │ │ ├── NavigationBar.qml │ │ ├── NavigationButton.qml │ │ ├── ShortcutBar.qml │ │ └── ShortcutButton.qml │ │ ├── Message │ │ ├── NormalNoticePage.js │ │ └── NormalNoticePage.qml │ │ ├── RightPanel │ │ ├── Bottom │ │ │ ├── DataFormatHelper.js │ │ │ ├── DownloadTrashPanel.qml │ │ │ ├── DownloadedPanel.qml │ │ │ ├── DownloadingPanel.qml │ │ │ ├── Item │ │ │ │ ├── DownloadedItem.qml │ │ │ │ ├── DownloadedMenu.qml │ │ │ │ ├── DownloadingItem.qml │ │ │ │ ├── DownloadingMenu.qml │ │ │ │ ├── MenuButton.qml │ │ │ │ ├── TrashItem.qml │ │ │ │ └── TrashMenu.qml │ │ │ ├── SearchPanel.qml │ │ │ ├── TaskListHandler.js │ │ │ └── TaskListView.qml │ │ ├── Middle │ │ │ ├── HistogramPanel.qml │ │ │ ├── HistogramRectangle.qml │ │ │ ├── InfoCircle.qml │ │ │ └── MiddlePanel.qml │ │ ├── RightMainPanel.qml │ │ ├── Setting │ │ │ ├── PopupWin │ │ │ │ ├── SliderWin.qml │ │ │ │ └── SliderWinCreater.js │ │ │ ├── SettingItem.qml │ │ │ └── SettingMainPanel.qml │ │ └── Top │ │ │ ├── BlueButton.qml │ │ │ ├── FButton.qml │ │ │ ├── InputBox.qml │ │ │ └── TopPanel.qml │ │ ├── ToolTip │ │ ├── CloseTip.qml │ │ ├── CloseTipCreator.js │ │ ├── MenuToolTip.qml │ │ └── MenuTooltipCreator.js │ │ └── main.qml ├── qtquick2applicationviewer │ ├── qtquick2applicationviewer.cpp │ ├── qtquick2applicationviewer.h │ └── qtquick2applicationviewer.pri ├── resources.qrc └── resources │ ├── LANG │ ├── PointDownload_ja_JP.qm │ └── PointDownload_zh_CN.qm │ ├── Tone │ └── complete.wav │ ├── images │ ├── aboutpoint │ │ ├── arrow-lightblue.png │ │ ├── arrow-lightpurple.png │ │ ├── arrow-red.png │ │ ├── arrow-white.png │ │ ├── button.png │ │ └── quit.png │ ├── dropzone │ │ ├── .directory │ │ ├── checked.png │ │ ├── cloosebutton.png │ │ ├── disable.png │ │ ├── doing.png │ │ ├── enable.png │ │ ├── generic │ │ │ └── .directory │ │ ├── help │ │ │ ├── about.png │ │ │ ├── checkupdate.png │ │ │ └── skills.png │ │ ├── itemback.png │ │ ├── login-back.png │ │ ├── maxsize.png │ │ ├── newjob.png │ │ ├── off.png │ │ ├── on.png │ │ ├── quit.png │ │ ├── setting.png │ │ ├── startall.png │ │ ├── stopall.png │ │ ├── storage.png │ │ ├── tback.png │ │ ├── thunder64.png │ │ ├── uncheck.png │ │ └── user&passwd.png │ ├── main │ │ ├── .directory │ │ ├── point-24.png │ │ ├── point-32.png │ │ ├── point-96-w.png │ │ └── triangle.png │ ├── navigation │ │ ├── .directory │ │ ├── SaveFolder.png │ │ ├── checkBox-blue-checked.png │ │ ├── checkBox-blue-mone.png │ │ ├── checkBox-blue-uncheck.png │ │ ├── checkBox-red-checked.png │ │ ├── checkBox-red-none.png │ │ ├── checkBox-red-uncheck.png │ │ ├── checkBox-yello-checked.png │ │ ├── checkBox-yello-none.png │ │ ├── checkBox-yello-uncheck.png │ │ ├── downarrow.png │ │ ├── downloaded-g.png │ │ ├── downloaded-w.png │ │ ├── downloading-g.png │ │ ├── downloading-w.png │ │ ├── home-g.png │ │ ├── home-w.png │ │ ├── left-split.png │ │ ├── plus.png │ │ ├── quit.png │ │ ├── right-split.png │ │ ├── search.png │ │ ├── setting-g.png │ │ ├── setting-w.png │ │ ├── smaller.png │ │ ├── style.png │ │ ├── trash-g.png │ │ └── trash-w.png │ ├── right │ │ ├── .directory │ │ ├── Priority.png │ │ ├── check.png │ │ ├── delete.png │ │ ├── download.png │ │ ├── filetype │ │ │ ├── .directory │ │ │ ├── adobe.png │ │ │ ├── archive.png │ │ │ ├── audio.png │ │ │ ├── binary.png │ │ │ ├── image.png │ │ │ ├── ms-doc.png │ │ │ ├── ms-xls.png │ │ │ ├── noicon.png │ │ │ ├── pdf.png │ │ │ ├── txt.png │ │ │ ├── video.png │ │ │ └── xml.png │ │ ├── folder.png │ │ ├── hightspeed.png │ │ ├── offlinedownload.png │ │ ├── resume.png │ │ ├── start.png │ │ ├── suspend.png │ │ ├── trash.png │ │ └── uncheck.png │ ├── setting │ │ ├── .directory │ │ ├── Beep.png │ │ ├── Close.png │ │ ├── DSPath.png │ │ ├── LeftArrow.png │ │ ├── MDSpeed.png │ │ ├── MJob.png │ │ ├── SettingButton.png │ │ └── ThreadCount.png │ ├── tooltip │ │ ├── .directory │ │ ├── checkbox-check.png │ │ ├── checkbox-uncheck.png │ │ ├── radio-check.png │ │ └── radio-uncheck.png │ └── trayicon │ │ ├── .directory │ │ ├── about.png │ │ ├── home.png │ │ ├── quit.png │ │ ├── tool.png │ │ └── update.png │ └── xware │ ├── xware_login.js │ └── xware_main.js ├── PointFirefoxExtension.xpi ├── PointFirefoxExtension.xpi ├── chrome.manifest ├── chrome │ ├── content │ │ ├── Point.js │ │ ├── decode.js │ │ ├── main.js │ │ ├── main.xul │ │ ├── pluginButton.uc.js │ │ ├── saveas.js │ │ └── saveas.xul │ └── skin │ │ ├── menu.css │ │ ├── point-16.png │ │ └── point-19.png └── install.rdf ├── PointPopup ├── BtAndMagnetInfo │ ├── CyoDecode.cpp │ ├── CyoDecode.h │ ├── CyoEncode.cpp │ ├── CyoEncode.h │ ├── bencodeparser.cpp │ ├── bencodeparser.h │ ├── metainfo.cpp │ └── metainfo.h ├── COPYING ├── DownloadToolsPanel.qml ├── FileNameListPanel.qml ├── PointPopup.pro ├── PointPopup_zh_CN.qm ├── PointPopup_zh_CN.ts ├── README.MD ├── SavePathPanel.qml ├── SettingSpinBox.qml ├── control │ ├── datacontroler.cpp │ ├── datacontroler.h │ ├── getsavepathdialog.cpp │ ├── getsavepathdialog.h │ ├── urlinfogeter.cpp │ └── urlinfogeter.h ├── deployment.pri ├── main.cpp ├── main.qml ├── qml.qrc ├── resources.qrc └── resources │ ├── LANG │ └── PointPopup_zh_CN.qm │ └── images │ ├── .directory │ ├── bt-24.png │ ├── checkBox-blue-check.png │ ├── checkBox-blue-none.png │ ├── loading.gif │ ├── point-32.png │ ├── switch-off.png │ └── switch-on.png ├── README.md ├── XwareMask ├── README.md └── mask.c ├── XwareStartUp ├── README.md ├── XwareStartUp.pro ├── debian │ └── pointdownload │ │ └── opt │ │ └── XwareStartUp │ │ └── bin │ │ └── XwareStartUp ├── deployment.pri └── main.cpp ├── debian ├── changelog ├── compat ├── control ├── copyright ├── files ├── pointdownload.install ├── postinst ├── postrm ├── preinst ├── prerm └── rules ├── point.png ├── pointdownload.desktop ├── pointdownload.pro └── pointpopup.desktop /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/.gitignore -------------------------------------------------------------------------------- /Archlinux/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/Archlinux/PKGBUILD -------------------------------------------------------------------------------- /Archlinux/pointdownload.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/Archlinux/pointdownload.install -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/COPYING -------------------------------------------------------------------------------- /PInterface/Message/Message.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/Message/Message.pri -------------------------------------------------------------------------------- /PInterface/Message/normalnotice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/Message/normalnotice.cpp -------------------------------------------------------------------------------- /PInterface/Message/normalnotice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/Message/normalnotice.h -------------------------------------------------------------------------------- /PInterface/PEventFilter/PEventFilter.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/PEventFilter/PEventFilter.pri -------------------------------------------------------------------------------- /PInterface/PEventFilter/peventfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/PEventFilter/peventfilter.cpp -------------------------------------------------------------------------------- /PInterface/PEventFilter/peventfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/PEventFilter/peventfilter.h -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/QtLockedFile: -------------------------------------------------------------------------------- 1 | #include "qtlockedfile.h" 2 | -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/QtSingleApplication: -------------------------------------------------------------------------------- 1 | #include "qtsingleapplication.h" 2 | -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/qtlocalpeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/QtSingleApplication/qtlocalpeer.cpp -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/qtlocalpeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/QtSingleApplication/qtlocalpeer.h -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/qtlockedfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/QtSingleApplication/qtlockedfile.cpp -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/qtlockedfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/QtSingleApplication/qtlockedfile.h -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/qtlockedfile_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/QtSingleApplication/qtlockedfile_unix.cpp -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/qtlockedfile_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/QtSingleApplication/qtlockedfile_win.cpp -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/qtsingleapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/QtSingleApplication/qtsingleapplication.cpp -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/qtsingleapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/QtSingleApplication/qtsingleapplication.h -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/qtsingleapplication.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/QtSingleApplication/qtsingleapplication.pri -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/qtsinglecoreapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/QtSingleApplication/qtsinglecoreapplication.cpp -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/qtsinglecoreapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/QtSingleApplication/qtsinglecoreapplication.h -------------------------------------------------------------------------------- /PInterface/QtSingleApplication/qtsinglecoreapplication.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/QtSingleApplication/qtsinglecoreapplication.pri -------------------------------------------------------------------------------- /PInterface/Task/Task.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/Task/Task.pri -------------------------------------------------------------------------------- /PInterface/Task/YouGetTask/yougettask_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/Task/YouGetTask/yougettask_.cpp -------------------------------------------------------------------------------- /PInterface/Task/YouGetTask/yougettask_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/Task/YouGetTask/yougettask_.h -------------------------------------------------------------------------------- /PInterface/Task/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/Task/task.cpp -------------------------------------------------------------------------------- /PInterface/Task/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/Task/task.h -------------------------------------------------------------------------------- /PInterface/Task/taskfileitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/Task/taskfileitem.cpp -------------------------------------------------------------------------------- /PInterface/Task/taskfileitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/Task/taskfileitem.h -------------------------------------------------------------------------------- /PInterface/Task/taskinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/Task/taskinfo.cpp -------------------------------------------------------------------------------- /PInterface/Task/taskinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/Task/taskinfo.h -------------------------------------------------------------------------------- /PInterface/XmlHandler/XmlHandler.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/XmlHandler/XmlHandler.pri -------------------------------------------------------------------------------- /PInterface/XmlHandler/downloadxmlhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/XmlHandler/downloadxmlhandler.cpp -------------------------------------------------------------------------------- /PInterface/XmlHandler/downloadxmlhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/XmlHandler/downloadxmlhandler.h -------------------------------------------------------------------------------- /PInterface/XmlHandler/settingxmlhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/XmlHandler/settingxmlhandler.cpp -------------------------------------------------------------------------------- /PInterface/XmlHandler/settingxmlhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PInterface/XmlHandler/settingxmlhandler.h -------------------------------------------------------------------------------- /PointChromeExtension/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/COPYING -------------------------------------------------------------------------------- /PointChromeExtension/Extension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/Extension/background.js -------------------------------------------------------------------------------- /PointChromeExtension/Extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/Extension/manifest.json -------------------------------------------------------------------------------- /PointChromeExtension/Extension/point-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/Extension/point-19.png -------------------------------------------------------------------------------- /PointChromeExtension/Extension/point-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/Extension/point-38.png -------------------------------------------------------------------------------- /PointChromeExtension/Extension/point-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/Extension/point-64.png -------------------------------------------------------------------------------- /PointChromeExtension/Extension/point-w-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/Extension/point-w-19.png -------------------------------------------------------------------------------- /PointChromeExtension/Extension/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/Extension/popup.html -------------------------------------------------------------------------------- /PointChromeExtension/Extension/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/Extension/popup.js -------------------------------------------------------------------------------- /PointChromeExtension/PointChromeExtension.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/PointChromeExtension.crx -------------------------------------------------------------------------------- /PointChromeExtension/PointExtension.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/PointExtension.pem -------------------------------------------------------------------------------- /PointChromeExtension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/README.md -------------------------------------------------------------------------------- /PointChromeExtension/nkbchchceepbameamioagcjlhnghdoff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/nkbchchceepbameamioagcjlhnghdoff.json -------------------------------------------------------------------------------- /PointChromeExtension/pointdownload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointChromeExtension/pointdownload.json -------------------------------------------------------------------------------- /PointDownload/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/COPYING -------------------------------------------------------------------------------- /PointDownload/Controler/SettingWin/dropzonesettingcontroler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/SettingWin/dropzonesettingcontroler.cpp -------------------------------------------------------------------------------- /PointDownload/Controler/SettingWin/dropzonesettingcontroler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/SettingWin/dropzonesettingcontroler.h -------------------------------------------------------------------------------- /PointDownload/Controler/SettingWin/settingcontroler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/SettingWin/settingcontroler.cpp -------------------------------------------------------------------------------- /PointDownload/Controler/SettingWin/settingcontroler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/SettingWin/settingcontroler.h -------------------------------------------------------------------------------- /PointDownload/Controler/SettingWin/xwaresettingcontroler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/SettingWin/xwaresettingcontroler.cpp -------------------------------------------------------------------------------- /PointDownload/Controler/SettingWin/xwaresettingcontroler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/SettingWin/xwaresettingcontroler.h -------------------------------------------------------------------------------- /PointDownload/Controler/SettingWin/yougetsettingcontroler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/SettingWin/yougetsettingcontroler.cpp -------------------------------------------------------------------------------- /PointDownload/Controler/SettingWin/yougetsettingcontroler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/SettingWin/yougetsettingcontroler.h -------------------------------------------------------------------------------- /PointDownload/Controler/dldataconverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/dldataconverter.cpp -------------------------------------------------------------------------------- /PointDownload/Controler/dldataconverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/dldataconverter.h -------------------------------------------------------------------------------- /PointDownload/Controler/middlesender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/middlesender.cpp -------------------------------------------------------------------------------- /PointDownload/Controler/middlesender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/middlesender.h -------------------------------------------------------------------------------- /PointDownload/Controler/monitorClipBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/monitorClipBoard.cpp -------------------------------------------------------------------------------- /PointDownload/Controler/monitorClipBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/monitorClipBoard.h -------------------------------------------------------------------------------- /PointDownload/Controler/topcontrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/topcontrl.cpp -------------------------------------------------------------------------------- /PointDownload/Controler/topcontrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/topcontrl.h -------------------------------------------------------------------------------- /PointDownload/Controler/urlserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/urlserver.cpp -------------------------------------------------------------------------------- /PointDownload/Controler/urlserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Controler/urlserver.h -------------------------------------------------------------------------------- /PointDownload/Download/Aria2Task/aria2process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/Aria2Task/aria2process.cpp -------------------------------------------------------------------------------- /PointDownload/Download/Aria2Task/aria2process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/Aria2Task/aria2process.h -------------------------------------------------------------------------------- /PointDownload/Download/Aria2Task/aria2task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/Aria2Task/aria2task.cpp -------------------------------------------------------------------------------- /PointDownload/Download/Aria2Task/aria2task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/Aria2Task/aria2task.h -------------------------------------------------------------------------------- /PointDownload/Download/DataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/DataType.h -------------------------------------------------------------------------------- /PointDownload/Download/PointTask/HttpTask/httptask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/PointTask/HttpTask/httptask.cpp -------------------------------------------------------------------------------- /PointDownload/Download/PointTask/HttpTask/httptask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/PointTask/HttpTask/httptask.h -------------------------------------------------------------------------------- /PointDownload/Download/PointTask/HttpTask/httpthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/PointTask/HttpTask/httpthread.cpp -------------------------------------------------------------------------------- /PointDownload/Download/PointTask/HttpTask/httpthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/PointTask/HttpTask/httpthread.h -------------------------------------------------------------------------------- /PointDownload/Download/PointTask/HttpTask/httpthreadmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/PointTask/HttpTask/httpthreadmanager.cpp -------------------------------------------------------------------------------- /PointDownload/Download/PointTask/HttpTask/httpthreadmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/PointTask/HttpTask/httpthreadmanager.h -------------------------------------------------------------------------------- /PointDownload/Download/PointTask/pointtask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/PointTask/pointtask.cpp -------------------------------------------------------------------------------- /PointDownload/Download/PointTask/pointtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/PointTask/pointtask.h -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/XwareConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/XwareConstants.h -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/XwareDataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/XwareDataType.h -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/completedlistwebview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/completedlistwebview.cpp -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/completedlistwebview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/completedlistwebview.h -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/mynetworkaccessmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/mynetworkaccessmanager.cpp -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/mynetworkaccessmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/mynetworkaccessmanager.h -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/mywebview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/mywebview.cpp -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/mywebview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/mywebview.h -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/webctrlviewtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/webctrlviewtest.cpp -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/webctrlviewtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/webctrlviewtest.h -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/xwarecontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/xwarecontroller.cpp -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/xwarecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/xwarecontroller.h -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/xwarepopulateobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/xwarepopulateobject.cpp -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/xwarepopulateobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/xwarepopulateobject.h -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/xwaresetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/xwaresetting.cpp -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/xwaresetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/xwaresetting.h -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/xwaretask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/xwaretask.cpp -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/xwaretask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/xwaretask.h -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/xwaretaskentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/xwaretaskentity.cpp -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/xwaretaskentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/xwaretaskentity.h -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/xwarewebcontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/xwarewebcontroller.cpp -------------------------------------------------------------------------------- /PointDownload/Download/XwareTask/xwarewebcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/XwareTask/xwarewebcontroller.h -------------------------------------------------------------------------------- /PointDownload/Download/YouGetTask/yougetprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/YouGetTask/yougetprocess.cpp -------------------------------------------------------------------------------- /PointDownload/Download/YouGetTask/yougetprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/YouGetTask/yougetprocess.h -------------------------------------------------------------------------------- /PointDownload/Download/YouGetTask/yougettask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/YouGetTask/yougettask.cpp -------------------------------------------------------------------------------- /PointDownload/Download/YouGetTask/yougettask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/YouGetTask/yougettask.h -------------------------------------------------------------------------------- /PointDownload/Download/unifiedinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/unifiedinterface.cpp -------------------------------------------------------------------------------- /PointDownload/Download/unifiedinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/Download/unifiedinterface.h -------------------------------------------------------------------------------- /PointDownload/PointDownload.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/PointDownload.pro -------------------------------------------------------------------------------- /PointDownload/PointDownload64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/PointDownload64.png -------------------------------------------------------------------------------- /PointDownload/PointDownload80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/PointDownload80.png -------------------------------------------------------------------------------- /PointDownload/PointDownload_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/PointDownload_ja_JP.ts -------------------------------------------------------------------------------- /PointDownload/PointDownload_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/PointDownload_zh_CN.ts -------------------------------------------------------------------------------- /PointDownload/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/README.MD -------------------------------------------------------------------------------- /PointDownload/SysData/dataflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/SysData/dataflow.cpp -------------------------------------------------------------------------------- /PointDownload/SysData/dataflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/SysData/dataflow.h -------------------------------------------------------------------------------- /PointDownload/SysData/getspeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/SysData/getspeed.cpp -------------------------------------------------------------------------------- /PointDownload/SysData/getspeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/SysData/getspeed.h -------------------------------------------------------------------------------- /PointDownload/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/main.cpp -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/AboutPoint/AboutMain.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/AboutPoint/AboutMain.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/AboutPoint/AboutPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/AboutPoint/AboutPanel.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/AboutPoint/AboutPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/AboutPoint/AboutPoint.js -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/AboutPoint/HelpUsPanle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/AboutPoint/HelpUsPanle.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/AboutPoint/LeftSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/AboutPoint/LeftSlider.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/AboutPoint/RightView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/AboutPoint/RightView.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/AboutPoint/SoftwarePanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/AboutPoint/SoftwarePanel.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/Dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/Dropzone.js -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/Dropzone.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/Dropzone.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/InnerCircle/InnerMainCircle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/InnerCircle/InnerMainCircle.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/OuterCircle/OuterMainCircle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/OuterCircle/OuterMainCircle.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/OuterCircle/SectorWidget.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/OuterCircle/SectorWidget.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/DropzoneSetting/DropzoneSettingPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/DropzoneSetting/DropzoneSettingPage.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/GenericSetting/GenericSettingPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/GenericSetting/GenericSettingPage.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/GenericSetting/InputItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/GenericSetting/InputItem.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/GenericSetting/PriorityToolItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/GenericSetting/PriorityToolItem.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/GenericSetting/SavePathItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/GenericSetting/SavePathItem.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/Help/HelpItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/Help/HelpItem.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/Help/HelpPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/Help/HelpPage.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/SettingBody.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/SettingBody.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/SettingMainItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/SettingMainItem.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/SettingWin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/SettingWin.js -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/SettingWin.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/SettingWin.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/SwitchItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/SwitchItem.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/XwareSetting/LoginPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/XwareSetting/LoginPage.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/XwareSetting/LogoutPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/XwareSetting/LogoutPage.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/XwareSetting/ValueInputBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/XwareSetting/ValueInputBox.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/XwareSetting/XwareSettingPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/XwareSetting/XwareSettingPage.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Dropzone/SettingWin/YouGetSettingPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Dropzone/SettingWin/YouGetSettingPage.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/LeftPanel/LeftMainPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/LeftPanel/LeftMainPanel.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/LeftPanel/NavigationBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/LeftPanel/NavigationBar.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/LeftPanel/NavigationButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/LeftPanel/NavigationButton.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/LeftPanel/ShortcutBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/LeftPanel/ShortcutBar.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/LeftPanel/ShortcutButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/LeftPanel/ShortcutButton.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Message/NormalNoticePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Message/NormalNoticePage.js -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/Message/NormalNoticePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/Message/NormalNoticePage.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/DataFormatHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/DataFormatHelper.js -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/DownloadTrashPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/DownloadTrashPanel.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/DownloadedPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/DownloadedPanel.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/DownloadingPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/DownloadingPanel.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/Item/DownloadedItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/Item/DownloadedItem.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/Item/DownloadedMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/Item/DownloadedMenu.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/Item/DownloadingItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/Item/DownloadingItem.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/Item/DownloadingMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/Item/DownloadingMenu.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/Item/MenuButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/Item/MenuButton.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/Item/TrashItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/Item/TrashItem.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/Item/TrashMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/Item/TrashMenu.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/SearchPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/SearchPanel.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/TaskListHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/TaskListHandler.js -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Bottom/TaskListView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Bottom/TaskListView.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Middle/HistogramPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Middle/HistogramPanel.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Middle/HistogramRectangle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Middle/HistogramRectangle.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Middle/InfoCircle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Middle/InfoCircle.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Middle/MiddlePanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Middle/MiddlePanel.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/RightMainPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/RightMainPanel.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Setting/PopupWin/SliderWin.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Setting/PopupWin/SliderWin.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Setting/PopupWin/SliderWinCreater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Setting/PopupWin/SliderWinCreater.js -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Setting/SettingItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Setting/SettingItem.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Setting/SettingMainPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Setting/SettingMainPanel.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Top/BlueButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Top/BlueButton.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Top/FButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Top/FButton.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Top/InputBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Top/InputBox.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/RightPanel/Top/TopPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/RightPanel/Top/TopPanel.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/ToolTip/CloseTip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/ToolTip/CloseTip.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/ToolTip/CloseTipCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/ToolTip/CloseTipCreator.js -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/ToolTip/MenuToolTip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/ToolTip/MenuToolTip.qml -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/ToolTip/MenuTooltipCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/ToolTip/MenuTooltipCreator.js -------------------------------------------------------------------------------- /PointDownload/qml/PointDownload/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qml/PointDownload/main.qml -------------------------------------------------------------------------------- /PointDownload/qtquick2applicationviewer/qtquick2applicationviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qtquick2applicationviewer/qtquick2applicationviewer.cpp -------------------------------------------------------------------------------- /PointDownload/qtquick2applicationviewer/qtquick2applicationviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qtquick2applicationviewer/qtquick2applicationviewer.h -------------------------------------------------------------------------------- /PointDownload/qtquick2applicationviewer/qtquick2applicationviewer.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/qtquick2applicationviewer/qtquick2applicationviewer.pri -------------------------------------------------------------------------------- /PointDownload/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources.qrc -------------------------------------------------------------------------------- /PointDownload/resources/LANG/PointDownload_ja_JP.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/LANG/PointDownload_ja_JP.qm -------------------------------------------------------------------------------- /PointDownload/resources/LANG/PointDownload_zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/LANG/PointDownload_zh_CN.qm -------------------------------------------------------------------------------- /PointDownload/resources/Tone/complete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/Tone/complete.wav -------------------------------------------------------------------------------- /PointDownload/resources/images/aboutpoint/arrow-lightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/aboutpoint/arrow-lightblue.png -------------------------------------------------------------------------------- /PointDownload/resources/images/aboutpoint/arrow-lightpurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/aboutpoint/arrow-lightpurple.png -------------------------------------------------------------------------------- /PointDownload/resources/images/aboutpoint/arrow-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/aboutpoint/arrow-red.png -------------------------------------------------------------------------------- /PointDownload/resources/images/aboutpoint/arrow-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/aboutpoint/arrow-white.png -------------------------------------------------------------------------------- /PointDownload/resources/images/aboutpoint/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/aboutpoint/button.png -------------------------------------------------------------------------------- /PointDownload/resources/images/aboutpoint/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/aboutpoint/quit.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2014,7,27,14,24,8 4 | Version=3 5 | -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/checked.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/cloosebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/cloosebutton.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/disable.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/doing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/doing.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/enable.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/generic/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2014,8,5,16,23,10 4 | Version=3 5 | -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/help/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/help/about.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/help/checkupdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/help/checkupdate.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/help/skills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/help/skills.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/itemback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/itemback.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/login-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/login-back.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/maxsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/maxsize.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/newjob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/newjob.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/off.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/on.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/quit.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/setting.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/startall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/startall.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/stopall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/stopall.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/storage.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/tback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/tback.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/thunder64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/thunder64.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/uncheck.png -------------------------------------------------------------------------------- /PointDownload/resources/images/dropzone/user&passwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/dropzone/user&passwd.png -------------------------------------------------------------------------------- /PointDownload/resources/images/main/.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/main/.directory -------------------------------------------------------------------------------- /PointDownload/resources/images/main/point-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/main/point-24.png -------------------------------------------------------------------------------- /PointDownload/resources/images/main/point-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/main/point-32.png -------------------------------------------------------------------------------- /PointDownload/resources/images/main/point-96-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/main/point-96-w.png -------------------------------------------------------------------------------- /PointDownload/resources/images/main/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/main/triangle.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2014,6,6,22,9,44 4 | Version=3 5 | -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/SaveFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/SaveFolder.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/checkBox-blue-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/checkBox-blue-checked.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/checkBox-blue-mone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/checkBox-blue-mone.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/checkBox-blue-uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/checkBox-blue-uncheck.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/checkBox-red-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/checkBox-red-checked.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/checkBox-red-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/checkBox-red-none.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/checkBox-red-uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/checkBox-red-uncheck.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/checkBox-yello-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/checkBox-yello-checked.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/checkBox-yello-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/checkBox-yello-none.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/checkBox-yello-uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/checkBox-yello-uncheck.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/downarrow.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/downloaded-g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/downloaded-g.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/downloaded-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/downloaded-w.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/downloading-g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/downloading-g.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/downloading-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/downloading-w.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/home-g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/home-g.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/home-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/home-w.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/left-split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/left-split.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/plus.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/quit.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/right-split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/right-split.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/search.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/setting-g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/setting-g.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/setting-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/setting-w.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/smaller.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/style.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/trash-g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/trash-g.png -------------------------------------------------------------------------------- /PointDownload/resources/images/navigation/trash-w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/navigation/trash-w.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2014,5,7,19,48,4 4 | Version=3 5 | -------------------------------------------------------------------------------- /PointDownload/resources/images/right/Priority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/Priority.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/check.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/delete.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/download.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/filetype/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2014,6,6,22,9,30 4 | Version=3 5 | -------------------------------------------------------------------------------- /PointDownload/resources/images/right/filetype/adobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/filetype/adobe.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/filetype/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/filetype/archive.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/filetype/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/filetype/audio.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/filetype/binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/filetype/binary.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/filetype/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/filetype/image.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/filetype/ms-doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/filetype/ms-doc.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/filetype/ms-xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/filetype/ms-xls.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/filetype/noicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/filetype/noicon.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/filetype/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/filetype/pdf.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/filetype/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/filetype/txt.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/filetype/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/filetype/video.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/filetype/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/filetype/xml.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/folder.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/hightspeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/hightspeed.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/offlinedownload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/offlinedownload.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/resume.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/start.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/suspend.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/trash.png -------------------------------------------------------------------------------- /PointDownload/resources/images/right/uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/right/uncheck.png -------------------------------------------------------------------------------- /PointDownload/resources/images/setting/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2014,5,1,23,8,29 4 | Version=3 5 | -------------------------------------------------------------------------------- /PointDownload/resources/images/setting/Beep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/setting/Beep.png -------------------------------------------------------------------------------- /PointDownload/resources/images/setting/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/setting/Close.png -------------------------------------------------------------------------------- /PointDownload/resources/images/setting/DSPath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/setting/DSPath.png -------------------------------------------------------------------------------- /PointDownload/resources/images/setting/LeftArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/setting/LeftArrow.png -------------------------------------------------------------------------------- /PointDownload/resources/images/setting/MDSpeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/setting/MDSpeed.png -------------------------------------------------------------------------------- /PointDownload/resources/images/setting/MJob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/setting/MJob.png -------------------------------------------------------------------------------- /PointDownload/resources/images/setting/SettingButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/setting/SettingButton.png -------------------------------------------------------------------------------- /PointDownload/resources/images/setting/ThreadCount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/setting/ThreadCount.png -------------------------------------------------------------------------------- /PointDownload/resources/images/tooltip/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2014,5,7,19,47,46 4 | Version=3 5 | -------------------------------------------------------------------------------- /PointDownload/resources/images/tooltip/checkbox-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/tooltip/checkbox-check.png -------------------------------------------------------------------------------- /PointDownload/resources/images/tooltip/checkbox-uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/tooltip/checkbox-uncheck.png -------------------------------------------------------------------------------- /PointDownload/resources/images/tooltip/radio-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/tooltip/radio-check.png -------------------------------------------------------------------------------- /PointDownload/resources/images/tooltip/radio-uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/tooltip/radio-uncheck.png -------------------------------------------------------------------------------- /PointDownload/resources/images/trayicon/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2014,5,7,19,47,25 4 | Version=3 5 | -------------------------------------------------------------------------------- /PointDownload/resources/images/trayicon/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/trayicon/about.png -------------------------------------------------------------------------------- /PointDownload/resources/images/trayicon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/trayicon/home.png -------------------------------------------------------------------------------- /PointDownload/resources/images/trayicon/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/trayicon/quit.png -------------------------------------------------------------------------------- /PointDownload/resources/images/trayicon/tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/trayicon/tool.png -------------------------------------------------------------------------------- /PointDownload/resources/images/trayicon/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/images/trayicon/update.png -------------------------------------------------------------------------------- /PointDownload/resources/xware/xware_login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/xware/xware_login.js -------------------------------------------------------------------------------- /PointDownload/resources/xware/xware_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointDownload/resources/xware/xware_main.js -------------------------------------------------------------------------------- /PointFirefoxExtension.xpi/PointFirefoxExtension.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointFirefoxExtension.xpi/PointFirefoxExtension.xpi -------------------------------------------------------------------------------- /PointFirefoxExtension.xpi/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointFirefoxExtension.xpi/chrome.manifest -------------------------------------------------------------------------------- /PointFirefoxExtension.xpi/chrome/content/Point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointFirefoxExtension.xpi/chrome/content/Point.js -------------------------------------------------------------------------------- /PointFirefoxExtension.xpi/chrome/content/decode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointFirefoxExtension.xpi/chrome/content/decode.js -------------------------------------------------------------------------------- /PointFirefoxExtension.xpi/chrome/content/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointFirefoxExtension.xpi/chrome/content/main.js -------------------------------------------------------------------------------- /PointFirefoxExtension.xpi/chrome/content/main.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointFirefoxExtension.xpi/chrome/content/main.xul -------------------------------------------------------------------------------- /PointFirefoxExtension.xpi/chrome/content/pluginButton.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointFirefoxExtension.xpi/chrome/content/pluginButton.uc.js -------------------------------------------------------------------------------- /PointFirefoxExtension.xpi/chrome/content/saveas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointFirefoxExtension.xpi/chrome/content/saveas.js -------------------------------------------------------------------------------- /PointFirefoxExtension.xpi/chrome/content/saveas.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointFirefoxExtension.xpi/chrome/content/saveas.xul -------------------------------------------------------------------------------- /PointFirefoxExtension.xpi/chrome/skin/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointFirefoxExtension.xpi/chrome/skin/menu.css -------------------------------------------------------------------------------- /PointFirefoxExtension.xpi/chrome/skin/point-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointFirefoxExtension.xpi/chrome/skin/point-16.png -------------------------------------------------------------------------------- /PointFirefoxExtension.xpi/chrome/skin/point-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointFirefoxExtension.xpi/chrome/skin/point-19.png -------------------------------------------------------------------------------- /PointFirefoxExtension.xpi/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointFirefoxExtension.xpi/install.rdf -------------------------------------------------------------------------------- /PointPopup/BtAndMagnetInfo/CyoDecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/BtAndMagnetInfo/CyoDecode.cpp -------------------------------------------------------------------------------- /PointPopup/BtAndMagnetInfo/CyoDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/BtAndMagnetInfo/CyoDecode.h -------------------------------------------------------------------------------- /PointPopup/BtAndMagnetInfo/CyoEncode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/BtAndMagnetInfo/CyoEncode.cpp -------------------------------------------------------------------------------- /PointPopup/BtAndMagnetInfo/CyoEncode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/BtAndMagnetInfo/CyoEncode.h -------------------------------------------------------------------------------- /PointPopup/BtAndMagnetInfo/bencodeparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/BtAndMagnetInfo/bencodeparser.cpp -------------------------------------------------------------------------------- /PointPopup/BtAndMagnetInfo/bencodeparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/BtAndMagnetInfo/bencodeparser.h -------------------------------------------------------------------------------- /PointPopup/BtAndMagnetInfo/metainfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/BtAndMagnetInfo/metainfo.cpp -------------------------------------------------------------------------------- /PointPopup/BtAndMagnetInfo/metainfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/BtAndMagnetInfo/metainfo.h -------------------------------------------------------------------------------- /PointPopup/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/COPYING -------------------------------------------------------------------------------- /PointPopup/DownloadToolsPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/DownloadToolsPanel.qml -------------------------------------------------------------------------------- /PointPopup/FileNameListPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/FileNameListPanel.qml -------------------------------------------------------------------------------- /PointPopup/PointPopup.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/PointPopup.pro -------------------------------------------------------------------------------- /PointPopup/PointPopup_zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/PointPopup_zh_CN.qm -------------------------------------------------------------------------------- /PointPopup/PointPopup_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/PointPopup_zh_CN.ts -------------------------------------------------------------------------------- /PointPopup/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/README.MD -------------------------------------------------------------------------------- /PointPopup/SavePathPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/SavePathPanel.qml -------------------------------------------------------------------------------- /PointPopup/SettingSpinBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/SettingSpinBox.qml -------------------------------------------------------------------------------- /PointPopup/control/datacontroler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/control/datacontroler.cpp -------------------------------------------------------------------------------- /PointPopup/control/datacontroler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/control/datacontroler.h -------------------------------------------------------------------------------- /PointPopup/control/getsavepathdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/control/getsavepathdialog.cpp -------------------------------------------------------------------------------- /PointPopup/control/getsavepathdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/control/getsavepathdialog.h -------------------------------------------------------------------------------- /PointPopup/control/urlinfogeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/control/urlinfogeter.cpp -------------------------------------------------------------------------------- /PointPopup/control/urlinfogeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/control/urlinfogeter.h -------------------------------------------------------------------------------- /PointPopup/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/deployment.pri -------------------------------------------------------------------------------- /PointPopup/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/main.cpp -------------------------------------------------------------------------------- /PointPopup/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/main.qml -------------------------------------------------------------------------------- /PointPopup/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/qml.qrc -------------------------------------------------------------------------------- /PointPopup/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/resources.qrc -------------------------------------------------------------------------------- /PointPopup/resources/LANG/PointPopup_zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/resources/LANG/PointPopup_zh_CN.qm -------------------------------------------------------------------------------- /PointPopup/resources/images/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2014,6,16,8,42,42 4 | Version=3 5 | -------------------------------------------------------------------------------- /PointPopup/resources/images/bt-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/resources/images/bt-24.png -------------------------------------------------------------------------------- /PointPopup/resources/images/checkBox-blue-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/resources/images/checkBox-blue-check.png -------------------------------------------------------------------------------- /PointPopup/resources/images/checkBox-blue-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/resources/images/checkBox-blue-none.png -------------------------------------------------------------------------------- /PointPopup/resources/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/resources/images/loading.gif -------------------------------------------------------------------------------- /PointPopup/resources/images/point-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/resources/images/point-32.png -------------------------------------------------------------------------------- /PointPopup/resources/images/switch-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/resources/images/switch-off.png -------------------------------------------------------------------------------- /PointPopup/resources/images/switch-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/PointPopup/resources/images/switch-on.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/README.md -------------------------------------------------------------------------------- /XwareMask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/XwareMask/README.md -------------------------------------------------------------------------------- /XwareMask/mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/XwareMask/mask.c -------------------------------------------------------------------------------- /XwareStartUp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/XwareStartUp/README.md -------------------------------------------------------------------------------- /XwareStartUp/XwareStartUp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/XwareStartUp/XwareStartUp.pro -------------------------------------------------------------------------------- /XwareStartUp/debian/pointdownload/opt/XwareStartUp/bin/XwareStartUp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/XwareStartUp/debian/pointdownload/opt/XwareStartUp/bin/XwareStartUp -------------------------------------------------------------------------------- /XwareStartUp/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/XwareStartUp/deployment.pri -------------------------------------------------------------------------------- /XwareStartUp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/XwareStartUp/main.cpp -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/files: -------------------------------------------------------------------------------- 1 | pointdownload_1.2.0_amd64.deb net optional 2 | -------------------------------------------------------------------------------- /debian/pointdownload.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/debian/pointdownload.install -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/debian/postrm -------------------------------------------------------------------------------- /debian/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/debian/preinst -------------------------------------------------------------------------------- /debian/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/debian/prerm -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/debian/rules -------------------------------------------------------------------------------- /point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/point.png -------------------------------------------------------------------------------- /pointdownload.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/pointdownload.desktop -------------------------------------------------------------------------------- /pointdownload.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/pointdownload.pro -------------------------------------------------------------------------------- /pointpopup.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PointTeam/PointDownload/HEAD/pointpopup.desktop --------------------------------------------------------------------------------