From 08bff51ab3a04d1ee2d37caf7bc06b825b331d5c Mon Sep 17 00:00:00 2001 From: leafspark <78000825+leafspark@users.noreply.github.com> Date: Sun, 4 Aug 2024 19:37:19 -0700 Subject: [PATCH 1/3] docs: update changelog to v1.4.2 --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9049eca..06b7bc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ # Changelog All notable changes to this project will be documented in this file. +## [1.4.2] - 2024-08-04 + +### Fixed +- Resolves bug where Base Model text was shown even when GGML type was selected +- Improved alignment + +### Changed +- Minor repository changes + ## [1.4.1] - 2024-08-04 ### Added From eb8096699d812c65a94abdc65f5a046a6fa8806f Mon Sep 17 00:00:00 2001 From: leafspark <78000825+leafspark@users.noreply.github.com> Date: Sun, 4 Aug 2024 19:45:01 -0700 Subject: [PATCH 2/3] docs: update readme to v1.4.2 added and organized shields, clear building instructions and bugfix reflected in Issues section --- README.md | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index c1d4181..5d050eb 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,26 @@ # AutoGGUF - automated GGUF model quantizer + +[![GitHub release](https://img.shields.io/github/release/leafspark/AutoGGUF.svg)](https://github.com/leafspark/AutoGGUF/releases) +[![GitHub last commit](https://img.shields.io/github/last-commit/leafspark/AutoGGUF.svg)](https://github.com/leafspark/AutoGGUF/commits) +[![CI/CD Status](https://img.shields.io/badge/CI%2FCD-passing-brightgreen)]() + + [![Powered by llama.cpp](https://img.shields.io/badge/Powered%20by-llama.cpp-green.svg)](https://github.com/ggerganov/llama.cpp) -![GitHub release](https://img.shields.io/github/release/leafspark/AutoGGUF.svg) -![GitHub last commit](https://img.shields.io/github/last-commit/leafspark/AutoGGUF.svg) +![GitHub top language](https://img.shields.io/github/languages/top/leafspark/AutoGGUF.svg) +[![Platform Compatibility](https://img.shields.io/badge/platform-Linux%20%7C%20macOS%20%7C%20Windows-blue)]() +[![GitHub license](https://img.shields.io/github/license/leafspark/AutoGGUF.svg)](https://github.com/leafspark/AutoGGUF/blob/main/LICENSE) + + ![GitHub stars](https://img.shields.io/github/stars/leafspark/AutoGGUF.svg) ![GitHub forks](https://img.shields.io/github/forks/leafspark/AutoGGUF.svg) -![GitHub top language](https://img.shields.io/github/languages/top/leafspark/AutoGGUF.svg) ![GitHub repo size](https://img.shields.io/github/repo-size/leafspark/AutoGGUF.svg) -![GitHub license](https://img.shields.io/github/license/leafspark/AutoGGUF.svg) + + +[![Code Style: Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) +[![Issues](https://img.shields.io/github/issues/leafspark/AutoGGUF)](https://github.com/leafspark/AutoGGUF/issues) +[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/leafspark/AutoGGUF/pulls) 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. @@ -55,17 +67,19 @@ ### Cross-platform ### Windows ```bash -build RELEASE/DEV +build RELEASE | DEV ``` Find the executable in `build//dist/AutoGGUF.exe`. ## Dependencies - PyQt6 -- requests - psutil - shutil -- OpenSSL +- numpy +- torch +- safetensors +- gguf (bundled) ## Localizations @@ -77,7 +91,7 @@ ## Known Issues - Saving preset while quantizing causes UI thread crash (planned fix: remove this feature) - Cannot delete task while processing (planned fix: disallow deletion before cancelling or cancel automatically) -- Base Model text still shows when GGML is selected as LoRA type (fix: include text in show/hide Qt layout) +- ~~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) ## Planned Features @@ -95,7 +109,7 @@ ## Troubleshooting ## Contributing -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. +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. ## User Interface From a69f6d67502070fd2d9f1cc794d6581c53bee62a Mon Sep 17 00:00:00 2001 From: leafspark <78000825+leafspark@users.noreply.github.com> Date: Sun, 4 Aug 2024 19:47:29 -0700 Subject: [PATCH 3/3] docs: update formatting instructions --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 27fc237..f2de692 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -49,6 +49,7 @@ ### Commit Types: ### Python Styleguide - Follow PEP 8 +- Please use Black to format your code first - Use meaningful variable names - Comment your code, but don't overdo it