├── .github └── workflows │ ├── build.yml │ └── codeql-analysis.yml ├── .gitignore ├── .idea ├── .gitignore ├── discord.xml ├── modules.xml ├── oc-updater.iml └── vcs.xml ├── LICENSE ├── Logo.png ├── README-ko.md ├── README.md ├── RealtekCardReaderFriend_1.0.4_a2cea90_RELEASE.zip ├── checkmark-flat.png ├── electron-builder.json ├── increase_build_num.js ├── index-korean.html ├── index.css ├── index.html ├── opencore.svg ├── package.json ├── src ├── index.ts ├── preload.js ├── renderer.ts └── update │ ├── 063-to-064.ts │ ├── 064-to-065.ts │ ├── 065-to-066.ts │ ├── 066-to-067.ts │ ├── 067-to-068.ts │ ├── 068-to-069.ts │ ├── 069-to-070.ts │ ├── 070-to-071.ts │ ├── 071-to-072.ts │ ├── 072-to-073.ts │ ├── 073-to-074.ts │ ├── 074-to-075.ts │ ├── 075-to-076.ts │ ├── 076-to-077.ts │ ├── 077-to-078.ts │ ├── 078-to-079.ts │ ├── 079-to-080.ts │ ├── 080-to-081.ts │ ├── 081-to-082.ts │ ├── 082-to-083.ts │ ├── 083-to-084.ts │ ├── 084-to-085.ts │ ├── 085-to-086.ts │ ├── 086-to-087.ts │ ├── 087-to-088.ts │ ├── 088-to-089.ts │ ├── 089-to-090.ts │ ├── 090-to-091.ts │ ├── 091-to-092.ts │ ├── 092-to-093.ts │ ├── 093-to-094.ts │ ├── 094-to-095.ts │ ├── 095-to-096.ts │ ├── 096-to-097.ts │ ├── 097-to-098.ts │ ├── 098-to-099.ts │ ├── 099-to-100.ts │ ├── 100-to-101.ts │ └── 101-to-102.ts ├── tsconfig.json └── yarn.lock /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/discord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/.idea/discord.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/oc-updater.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/.idea/oc-updater.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/LICENSE -------------------------------------------------------------------------------- /Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/Logo.png -------------------------------------------------------------------------------- /README-ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/README-ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/README.md -------------------------------------------------------------------------------- /RealtekCardReaderFriend_1.0.4_a2cea90_RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/RealtekCardReaderFriend_1.0.4_a2cea90_RELEASE.zip -------------------------------------------------------------------------------- /checkmark-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/checkmark-flat.png -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/electron-builder.json -------------------------------------------------------------------------------- /increase_build_num.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/increase_build_num.js -------------------------------------------------------------------------------- /index-korean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/index-korean.html -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/index.html -------------------------------------------------------------------------------- /opencore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/opencore.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/preload.js -------------------------------------------------------------------------------- /src/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/renderer.ts -------------------------------------------------------------------------------- /src/update/063-to-064.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/063-to-064.ts -------------------------------------------------------------------------------- /src/update/064-to-065.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/064-to-065.ts -------------------------------------------------------------------------------- /src/update/065-to-066.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/065-to-066.ts -------------------------------------------------------------------------------- /src/update/066-to-067.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/066-to-067.ts -------------------------------------------------------------------------------- /src/update/067-to-068.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/067-to-068.ts -------------------------------------------------------------------------------- /src/update/068-to-069.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/068-to-069.ts -------------------------------------------------------------------------------- /src/update/069-to-070.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/069-to-070.ts -------------------------------------------------------------------------------- /src/update/070-to-071.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/070-to-071.ts -------------------------------------------------------------------------------- /src/update/071-to-072.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/071-to-072.ts -------------------------------------------------------------------------------- /src/update/072-to-073.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/072-to-073.ts -------------------------------------------------------------------------------- /src/update/073-to-074.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/073-to-074.ts -------------------------------------------------------------------------------- /src/update/074-to-075.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/074-to-075.ts -------------------------------------------------------------------------------- /src/update/075-to-076.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/075-to-076.ts -------------------------------------------------------------------------------- /src/update/076-to-077.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/076-to-077.ts -------------------------------------------------------------------------------- /src/update/077-to-078.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/077-to-078.ts -------------------------------------------------------------------------------- /src/update/078-to-079.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/078-to-079.ts -------------------------------------------------------------------------------- /src/update/079-to-080.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/079-to-080.ts -------------------------------------------------------------------------------- /src/update/080-to-081.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/080-to-081.ts -------------------------------------------------------------------------------- /src/update/081-to-082.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/081-to-082.ts -------------------------------------------------------------------------------- /src/update/082-to-083.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/082-to-083.ts -------------------------------------------------------------------------------- /src/update/083-to-084.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/083-to-084.ts -------------------------------------------------------------------------------- /src/update/084-to-085.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/084-to-085.ts -------------------------------------------------------------------------------- /src/update/085-to-086.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/085-to-086.ts -------------------------------------------------------------------------------- /src/update/086-to-087.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/086-to-087.ts -------------------------------------------------------------------------------- /src/update/087-to-088.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/087-to-088.ts -------------------------------------------------------------------------------- /src/update/088-to-089.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/088-to-089.ts -------------------------------------------------------------------------------- /src/update/089-to-090.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/089-to-090.ts -------------------------------------------------------------------------------- /src/update/090-to-091.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/090-to-091.ts -------------------------------------------------------------------------------- /src/update/091-to-092.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/091-to-092.ts -------------------------------------------------------------------------------- /src/update/092-to-093.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/092-to-093.ts -------------------------------------------------------------------------------- /src/update/093-to-094.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/093-to-094.ts -------------------------------------------------------------------------------- /src/update/094-to-095.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/094-to-095.ts -------------------------------------------------------------------------------- /src/update/095-to-096.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/095-to-096.ts -------------------------------------------------------------------------------- /src/update/096-to-097.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/096-to-097.ts -------------------------------------------------------------------------------- /src/update/097-to-098.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/097-to-098.ts -------------------------------------------------------------------------------- /src/update/098-to-099.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/098-to-099.ts -------------------------------------------------------------------------------- /src/update/099-to-100.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/099-to-100.ts -------------------------------------------------------------------------------- /src/update/100-to-101.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/100-to-101.ts -------------------------------------------------------------------------------- /src/update/101-to-102.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/src/update/101-to-102.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropdb220/oc-updater/HEAD/yarn.lock --------------------------------------------------------------------------------