├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── README.md └── preview.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | 5 | --- 6 | 7 | **Describe the bug** 8 | A clear and concise description of what the bug is. 9 | 10 | **To Reproduce** 11 | Steps to reproduce the behavior: 12 | 1. Go to '...' 13 | 2. Click on '....' 14 | 3. Scroll down to '....' 15 | 4. See error 16 | 17 | **Expected behavior** 18 | A clear and concise description of what you expected to happen. 19 | 20 | **Screenshots** 21 | If applicable, add screenshots to help explain your problem. 22 | 23 | **Desktop (please complete the following information):** 24 | - OS: [e.g. iOS] 25 | - Version [e.g. 22] 26 | 27 | **Additional context** 28 | Add any other context about the problem here. 29 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | **Is your feature request related to a problem? Please describe.** 8 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 9 | 10 | **Describe the solution you'd like** 11 | A clear and concise description of what you want to happen. 12 | 13 | **Describe alternatives you've considered** 14 | A clear and concise description of any alternative solutions or features you've considered. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | ## Build generated 3 | build/ 4 | DerivedData/ 5 | 6 | ## Various settings 7 | *.pbxuser 8 | !default.pbxuser 9 | *.mode1v3 10 | !default.mode1v3 11 | *.mode2v3 12 | !default.mode2v3 13 | *.perspectivev3 14 | !default.perspectivev3 15 | xcuserdata/ 16 | 17 | ## Other 18 | *.moved-aside 19 | *.xccheckout 20 | *.xcscmblueprint 21 | *.DS_Store 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # cDock : [Website](https://www.macenhance.com/cdock) 2 | 3 | cDock is an application designed to make theming your dock easy and robust on macOS versions 10.10+ 4 | 5 | ## Downloads : 6 | 7 | - [cDock 4](https://github.com/w0lfschild/app_updates/raw/master/cDock4/cDock.zip) 8 | - [cDock 3.1.2](https://github.com/w0lfschild/app_updates/raw/master/cDock/cDock.3.1.2.zip) 9 | - [cDock 3.0.9](https://github.com/w0lfschild/app_updates/raw/master/cDock/cDock.3.0.9.zip) 10 | 11 | ## Purchase : 12 | 13 | - [cDock 4](https://checkout.paddle.com/checkout/product/608932) : $9.99 14 | - [cDock 3](https://checkout.paddle.com/checkout/product/520974) : $4.99 15 | 16 | ## Info : 17 | 18 | - [![Discord](https://img.shields.io/discord/608740492561219617)](https://discordapp.com/channels/608740492561219617/608740492640911378) 19 | - [![issues](https://img.shields.io/github/issues/w0lfschild/cDock2)](https://github.com/w0lfschild/cDock2/issues) 20 | - [![donate](https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.me/w0lfspapa) 21 | 22 | ## System Compatibility : 23 | 24 | cDock requires [system tweaks](http://osxdaily.com/2015/10/05/disable-rootless-system-integrity-protection-mac-os-x/) on macOS 10.13 and above 25 | ``` 26 | 3.0.9 : macOS 10.13 and below 27 | 3.1.2 : macOS 10.14 and 10.15 28 | 4.0.0 : macOS 11 29 | ``` 30 | 31 | ## Preview : 32 | 33 | ![Preview](preview.png) 34 | -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w0lfschild/cDock-Issue-Tracker/a95c8bb24f5786681d980f2b941f4954052982d3/preview.png --------------------------------------------------------------------------------