Skip to content

Commit e09f54d

Browse files
committed
2 parents fa51f7c + a69f6d6 commit e09f54d

File tree

3 files changed

+33
-9
lines changed

3 files changed

+33
-9
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.4.2] - 2024-08-04
6+
7+
### Fixed
8+
- Resolves bug where Base Model text was shown even when GGML type was selected
9+
- Improved alignment
10+
11+
### Changed
12+
- Minor repository changes
13+
514
## [1.4.1] - 2024-08-04
615

716
### Added

CONTRIBUTING.md

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ chore: Other changes that don't modify src or test files
4949
### Python Styleguide
5050

5151
- Follow PEP 8
52+
- Please use Black to format your code first
5253
- Use meaningful variable names
5354
- Comment your code, but don't overdo it
5455

README.md

+23-9
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,26 @@
22

33
# AutoGGUF - automated GGUF model quantizer
44

5+
<!-- Project Status -->
6+
[![GitHub release](https://img.shields.io/github/release/leafspark/AutoGGUF.svg)](https://github.com/leafspark/AutoGGUF/releases)
7+
[![GitHub last commit](https://img.shields.io/github/last-commit/leafspark/AutoGGUF.svg)](https://github.com/leafspark/AutoGGUF/commits)
8+
[![CI/CD Status](https://img.shields.io/badge/CI%2FCD-passing-brightgreen)]()
9+
10+
<!-- Project Info -->
511
[![Powered by llama.cpp](https://img.shields.io/badge/Powered%20by-llama.cpp-green.svg)](https://github.com/ggerganov/llama.cpp)
6-
![GitHub release](https://img.shields.io/github/release/leafspark/AutoGGUF.svg)
7-
![GitHub last commit](https://img.shields.io/github/last-commit/leafspark/AutoGGUF.svg)
12+
![GitHub top language](https://img.shields.io/github/languages/top/leafspark/AutoGGUF.svg)
13+
[![Platform Compatibility](https://img.shields.io/badge/platform-Linux%20%7C%20macOS%20%7C%20Windows-blue)]()
14+
[![GitHub license](https://img.shields.io/github/license/leafspark/AutoGGUF.svg)](https://github.com/leafspark/AutoGGUF/blob/main/LICENSE)
15+
16+
<!-- Repository Stats -->
817
![GitHub stars](https://img.shields.io/github/stars/leafspark/AutoGGUF.svg)
918
![GitHub forks](https://img.shields.io/github/forks/leafspark/AutoGGUF.svg)
10-
![GitHub top language](https://img.shields.io/github/languages/top/leafspark/AutoGGUF.svg)
1119
![GitHub repo size](https://img.shields.io/github/repo-size/leafspark/AutoGGUF.svg)
12-
![GitHub license](https://img.shields.io/github/license/leafspark/AutoGGUF.svg)
20+
21+
<!-- Contribution -->
22+
[![Code Style: Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
23+
[![Issues](https://img.shields.io/github/issues/leafspark/AutoGGUF)](https://github.com/leafspark/AutoGGUF/issues)
24+
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/leafspark/AutoGGUF/pulls)
1325

1426
AutoGGUF provides a graphical user interface for quantizing GGUF models using the llama.cpp library. It allows users to download different versions of llama.cpp, manage multiple backends, and perform quantization tasks with various options.
1527

@@ -55,17 +67,19 @@ cd dist/main
5567

5668
### Windows
5769
```bash
58-
build RELEASE/DEV
70+
build RELEASE | DEV
5971
```
6072
Find the executable in `build/<type>/dist/AutoGGUF.exe`.
6173

6274
## Dependencies
6375

6476
- PyQt6
65-
- requests
6677
- psutil
6778
- shutil
68-
- OpenSSL
79+
- numpy
80+
- torch
81+
- safetensors
82+
- gguf (bundled)
6983

7084
## Localizations
7185

@@ -77,7 +91,7 @@ To use a specific language, set the `AUTOGGUF_LANGUAGE` environment variable to
7791

7892
- Saving preset while quantizing causes UI thread crash (planned fix: remove this feature)
7993
- Cannot delete task while processing (planned fix: disallow deletion before cancelling or cancel automatically)
80-
- Base Model text still shows when GGML is selected as LoRA type (fix: include text in show/hide Qt layout)
94+
- ~~Base Model text still shows when GGML is selected as LoRA type (fix: include text in show/hide Qt layout)~~ (fixed in v1.4.2)
8195

8296
## Planned Features
8397

@@ -95,7 +109,7 @@ To use a specific language, set the `AUTOGGUF_LANGUAGE` environment variable to
95109

96110
## Contributing
97111

98-
Fork the repo, make your changes, and ensure you have the latest commits when merging. Include a changelog of new features in your pull request description.
112+
Fork the repo, make your changes, and ensure you have the latest commits when merging. Include a changelog of new features in your pull request description. Read `CONTRIBUTING.md` for more information.
99113

100114
## User Interface
101115

0 commit comments

Comments
 (0)