├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Package_request.md ├── issue_template.md ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── excavator.yml │ ├── issue_comment.yml │ ├── issues.yml │ └── pull_request.yml ├── .gitignore ├── .markdownlint.json ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── Scoop-Bucket.Tests.ps1 ├── bin ├── auto-pr.ps1 ├── checkurls.ps1 ├── checkver.ps1 ├── formatjson.ps1 ├── missing-checkver.ps1 └── test.ps1 ├── bucket ├── .gitkeep ├── adrive.json ├── aget-rs.json ├── arturo-nightly.json ├── arturo.json ├── autohotkey2.1.json ├── bark-server-v2.json ├── bark-server-v3.json ├── bark-server-v4.json ├── bark-server.json ├── bbdown.json ├── bcdown.json ├── bdinfo.json ├── bilibili-desktop.json ├── bilimini.json ├── bind-lean.json ├── cargo-binstall.json ├── clash-for-windows.json ├── clash-verge.json ├── cleanmywechat.json ├── cpu-z-zh-cn.json ├── ddns-go.json ├── deep-explorer.json ├── desktoppet.json ├── dgmpgdec.json ├── double-finder.json ├── dsynchronize-zh-cn.json ├── dvm.json ├── fido.json ├── filebrowser.json ├── firefox-eme-free-zh-cn.json ├── firefox-esr-zh-cn.json ├── firefox-zh-cn.json ├── hfsexplorer.json ├── huorong-popblock.json ├── idm-trial-reset.json ├── imazing-converter.json ├── ipatool.json ├── iris.json ├── iwck.json ├── jijidown.json ├── librime.json ├── ls-interactive.json ├── magicsplat-tcl-tk.json ├── massigra.json ├── mdict.json ├── microdicom-dicom-viewer.json ├── mihome-token.json ├── minesweeper-arbiter.json ├── new-isofile.json ├── odin.json ├── parallels-client.json ├── parsify-desktop.json ├── pcl2-ce.json ├── pijul.json ├── pixpin.json ├── plain-craft-launcher.json ├── portable-build-tools.json ├── posh-cargo.json ├── posh-cd.json ├── powercolorls.json ├── qqplayer.json ├── quark-cloud-drive.json ├── rabbit-nightly.json ├── rabbit.json ├── radarr.json ├── rains.json ├── revokemsgpatcher.json ├── rubick.json ├── rust-sl.json ├── scoop-find.json ├── scoop-hook.json ├── setacl-studio.json ├── setacl.json ├── smartzip.json ├── sonarr.json ├── sound-keeper.json ├── spim.json ├── sublime-text-3.json ├── tally-marks.json ├── tautulli.json ├── todesk.json ├── treeline.json ├── uip.json ├── unlock-music-cli.json ├── vmping.json ├── voidimageviewer.json ├── wechatexporter.json ├── winrar-zh-cn.json ├── xmcl.json ├── xplist.json ├── yahei-fira-icon-hybrid.json ├── yakc.json ├── you-get.json └── yourav.json ├── deprecated ├── .gitkeep ├── 86box-manager.json ├── 86box-romset.json ├── 86box.json ├── diskgenius-zh-cn.json ├── keep-jbl-go.json ├── qsv.json ├── shakemousetolocate.json ├── snipaste-x86.json ├── stellarium.json ├── vfilename.json ├── wechat.json ├── wiliwili.json └── yong-im.json └── scripts ├── .gitkeep └── sublime-text-3 ├── install-context.reg └── uninstall-context.reg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Package_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.github/ISSUE_TEMPLATE/Package_request.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/excavator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.github/workflows/excavator.yml -------------------------------------------------------------------------------- /.github/workflows/issue_comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.github/workflows/issue_comment.yml -------------------------------------------------------------------------------- /.github/workflows/issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.github/workflows/issues.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/README.md -------------------------------------------------------------------------------- /Scoop-Bucket.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/Scoop-Bucket.Tests.ps1 -------------------------------------------------------------------------------- /bin/auto-pr.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bin/auto-pr.ps1 -------------------------------------------------------------------------------- /bin/checkurls.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bin/checkurls.ps1 -------------------------------------------------------------------------------- /bin/checkver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bin/checkver.ps1 -------------------------------------------------------------------------------- /bin/formatjson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bin/formatjson.ps1 -------------------------------------------------------------------------------- /bin/missing-checkver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bin/missing-checkver.ps1 -------------------------------------------------------------------------------- /bin/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bin/test.ps1 -------------------------------------------------------------------------------- /bucket/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/.gitkeep -------------------------------------------------------------------------------- /bucket/adrive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/adrive.json -------------------------------------------------------------------------------- /bucket/aget-rs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/aget-rs.json -------------------------------------------------------------------------------- /bucket/arturo-nightly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/arturo-nightly.json -------------------------------------------------------------------------------- /bucket/arturo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/arturo.json -------------------------------------------------------------------------------- /bucket/autohotkey2.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/autohotkey2.1.json -------------------------------------------------------------------------------- /bucket/bark-server-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/bark-server-v2.json -------------------------------------------------------------------------------- /bucket/bark-server-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/bark-server-v3.json -------------------------------------------------------------------------------- /bucket/bark-server-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/bark-server-v4.json -------------------------------------------------------------------------------- /bucket/bark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/bark-server.json -------------------------------------------------------------------------------- /bucket/bbdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/bbdown.json -------------------------------------------------------------------------------- /bucket/bcdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/bcdown.json -------------------------------------------------------------------------------- /bucket/bdinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/bdinfo.json -------------------------------------------------------------------------------- /bucket/bilibili-desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/bilibili-desktop.json -------------------------------------------------------------------------------- /bucket/bilimini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/bilimini.json -------------------------------------------------------------------------------- /bucket/bind-lean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/bind-lean.json -------------------------------------------------------------------------------- /bucket/cargo-binstall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/cargo-binstall.json -------------------------------------------------------------------------------- /bucket/clash-for-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/clash-for-windows.json -------------------------------------------------------------------------------- /bucket/clash-verge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/clash-verge.json -------------------------------------------------------------------------------- /bucket/cleanmywechat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/cleanmywechat.json -------------------------------------------------------------------------------- /bucket/cpu-z-zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/cpu-z-zh-cn.json -------------------------------------------------------------------------------- /bucket/ddns-go.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/ddns-go.json -------------------------------------------------------------------------------- /bucket/deep-explorer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/deep-explorer.json -------------------------------------------------------------------------------- /bucket/desktoppet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/desktoppet.json -------------------------------------------------------------------------------- /bucket/dgmpgdec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/dgmpgdec.json -------------------------------------------------------------------------------- /bucket/double-finder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/double-finder.json -------------------------------------------------------------------------------- /bucket/dsynchronize-zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/dsynchronize-zh-cn.json -------------------------------------------------------------------------------- /bucket/dvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/dvm.json -------------------------------------------------------------------------------- /bucket/fido.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/fido.json -------------------------------------------------------------------------------- /bucket/filebrowser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/filebrowser.json -------------------------------------------------------------------------------- /bucket/firefox-eme-free-zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/firefox-eme-free-zh-cn.json -------------------------------------------------------------------------------- /bucket/firefox-esr-zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/firefox-esr-zh-cn.json -------------------------------------------------------------------------------- /bucket/firefox-zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/firefox-zh-cn.json -------------------------------------------------------------------------------- /bucket/hfsexplorer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/hfsexplorer.json -------------------------------------------------------------------------------- /bucket/huorong-popblock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/huorong-popblock.json -------------------------------------------------------------------------------- /bucket/idm-trial-reset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/idm-trial-reset.json -------------------------------------------------------------------------------- /bucket/imazing-converter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/imazing-converter.json -------------------------------------------------------------------------------- /bucket/ipatool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/ipatool.json -------------------------------------------------------------------------------- /bucket/iris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/iris.json -------------------------------------------------------------------------------- /bucket/iwck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/iwck.json -------------------------------------------------------------------------------- /bucket/jijidown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/jijidown.json -------------------------------------------------------------------------------- /bucket/librime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/librime.json -------------------------------------------------------------------------------- /bucket/ls-interactive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/ls-interactive.json -------------------------------------------------------------------------------- /bucket/magicsplat-tcl-tk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/magicsplat-tcl-tk.json -------------------------------------------------------------------------------- /bucket/massigra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/massigra.json -------------------------------------------------------------------------------- /bucket/mdict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/mdict.json -------------------------------------------------------------------------------- /bucket/microdicom-dicom-viewer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/microdicom-dicom-viewer.json -------------------------------------------------------------------------------- /bucket/mihome-token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/mihome-token.json -------------------------------------------------------------------------------- /bucket/minesweeper-arbiter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/minesweeper-arbiter.json -------------------------------------------------------------------------------- /bucket/new-isofile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/new-isofile.json -------------------------------------------------------------------------------- /bucket/odin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/odin.json -------------------------------------------------------------------------------- /bucket/parallels-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/parallels-client.json -------------------------------------------------------------------------------- /bucket/parsify-desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/parsify-desktop.json -------------------------------------------------------------------------------- /bucket/pcl2-ce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/pcl2-ce.json -------------------------------------------------------------------------------- /bucket/pijul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/pijul.json -------------------------------------------------------------------------------- /bucket/pixpin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/pixpin.json -------------------------------------------------------------------------------- /bucket/plain-craft-launcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/plain-craft-launcher.json -------------------------------------------------------------------------------- /bucket/portable-build-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/portable-build-tools.json -------------------------------------------------------------------------------- /bucket/posh-cargo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/posh-cargo.json -------------------------------------------------------------------------------- /bucket/posh-cd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/posh-cd.json -------------------------------------------------------------------------------- /bucket/powercolorls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/powercolorls.json -------------------------------------------------------------------------------- /bucket/qqplayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/qqplayer.json -------------------------------------------------------------------------------- /bucket/quark-cloud-drive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/quark-cloud-drive.json -------------------------------------------------------------------------------- /bucket/rabbit-nightly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/rabbit-nightly.json -------------------------------------------------------------------------------- /bucket/rabbit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/rabbit.json -------------------------------------------------------------------------------- /bucket/radarr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/radarr.json -------------------------------------------------------------------------------- /bucket/rains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/rains.json -------------------------------------------------------------------------------- /bucket/revokemsgpatcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/revokemsgpatcher.json -------------------------------------------------------------------------------- /bucket/rubick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/rubick.json -------------------------------------------------------------------------------- /bucket/rust-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/rust-sl.json -------------------------------------------------------------------------------- /bucket/scoop-find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/scoop-find.json -------------------------------------------------------------------------------- /bucket/scoop-hook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/scoop-hook.json -------------------------------------------------------------------------------- /bucket/setacl-studio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/setacl-studio.json -------------------------------------------------------------------------------- /bucket/setacl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/setacl.json -------------------------------------------------------------------------------- /bucket/smartzip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/smartzip.json -------------------------------------------------------------------------------- /bucket/sonarr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/sonarr.json -------------------------------------------------------------------------------- /bucket/sound-keeper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/sound-keeper.json -------------------------------------------------------------------------------- /bucket/spim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/spim.json -------------------------------------------------------------------------------- /bucket/sublime-text-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/sublime-text-3.json -------------------------------------------------------------------------------- /bucket/tally-marks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/tally-marks.json -------------------------------------------------------------------------------- /bucket/tautulli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/tautulli.json -------------------------------------------------------------------------------- /bucket/todesk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/todesk.json -------------------------------------------------------------------------------- /bucket/treeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/treeline.json -------------------------------------------------------------------------------- /bucket/uip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/uip.json -------------------------------------------------------------------------------- /bucket/unlock-music-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/unlock-music-cli.json -------------------------------------------------------------------------------- /bucket/vmping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/vmping.json -------------------------------------------------------------------------------- /bucket/voidimageviewer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/voidimageviewer.json -------------------------------------------------------------------------------- /bucket/wechatexporter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/wechatexporter.json -------------------------------------------------------------------------------- /bucket/winrar-zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/winrar-zh-cn.json -------------------------------------------------------------------------------- /bucket/xmcl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/xmcl.json -------------------------------------------------------------------------------- /bucket/xplist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/xplist.json -------------------------------------------------------------------------------- /bucket/yahei-fira-icon-hybrid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/yahei-fira-icon-hybrid.json -------------------------------------------------------------------------------- /bucket/yakc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/yakc.json -------------------------------------------------------------------------------- /bucket/you-get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/you-get.json -------------------------------------------------------------------------------- /bucket/yourav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/bucket/yourav.json -------------------------------------------------------------------------------- /deprecated/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/.gitkeep -------------------------------------------------------------------------------- /deprecated/86box-manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/86box-manager.json -------------------------------------------------------------------------------- /deprecated/86box-romset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/86box-romset.json -------------------------------------------------------------------------------- /deprecated/86box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/86box.json -------------------------------------------------------------------------------- /deprecated/diskgenius-zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/diskgenius-zh-cn.json -------------------------------------------------------------------------------- /deprecated/keep-jbl-go.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/keep-jbl-go.json -------------------------------------------------------------------------------- /deprecated/qsv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/qsv.json -------------------------------------------------------------------------------- /deprecated/shakemousetolocate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/shakemousetolocate.json -------------------------------------------------------------------------------- /deprecated/snipaste-x86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/snipaste-x86.json -------------------------------------------------------------------------------- /deprecated/stellarium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/stellarium.json -------------------------------------------------------------------------------- /deprecated/vfilename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/vfilename.json -------------------------------------------------------------------------------- /deprecated/wechat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/wechat.json -------------------------------------------------------------------------------- /deprecated/wiliwili.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/wiliwili.json -------------------------------------------------------------------------------- /deprecated/yong-im.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/deprecated/yong-im.json -------------------------------------------------------------------------------- /scripts/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/scripts/.gitkeep -------------------------------------------------------------------------------- /scripts/sublime-text-3/install-context.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/scripts/sublime-text-3/install-context.reg -------------------------------------------------------------------------------- /scripts/sublime-text-3/uninstall-context.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amorphobia/siku/HEAD/scripts/sublime-text-3/uninstall-context.reg --------------------------------------------------------------------------------