Signed-off-by: Vladimir Mandic <mandic00@live.com>
pull/4058/head
Vladimir Mandic 2025-07-18 08:02:48 -04:00
parent 10a4360b2f
commit af58803adc
3 changed files with 6 additions and 5 deletions

View File

@ -1,8 +1,8 @@
# Change Log for SD.Next
## Update for 2025-07-17
## Update for 2025-07-18
### Highlights for 2025-07-17
### Highlights for 2025-07-18
Feature highlights include:
- **ModernUI** layout redesign which should make it more user friendly and easier to navigate
@ -25,7 +25,7 @@ Although upgrades and existing installations are tested and should work fine!
[ReadMe](https://github.com/vladmandic/automatic/blob/master/README.md) | [ChangeLog](https://github.com/vladmandic/automatic/blob/master/CHANGELOG.md) | [Docs](https://vladmandic.github.io/sdnext-docs/) | [WiKi](https://github.com/vladmandic/automatic/wiki) | [Discord](https://discord.com/invite/sd-next-federal-batch-inspectors-1101998836328697867)
### Details for 2025-07-17
### Details for 2025-07-18
- **License**
- SD.Next [license](https://github.com/vladmandic/sdnext/blob/dev/LICENSE.txt) switched from **aGPL-v3.0** to **Apache-v2.0**
@ -126,6 +126,7 @@ Although upgrades and existing installations are tested and should work fine!
- improve Chroma prompt padding as per recommendations
- lock directml torch to `torch-directml==0.2.4.dev240913`
- lock directml transformers to `transformers==4.52.4`
- improve install of `sentencepiece` tokenizer
- **Refactoring**
*note*: none of the removals result in loss-of-functionality since all those features are already re-implemented
goal here is to remove legacy code, code duplication and reduce code complexity

View File

@ -1226,7 +1226,7 @@ def install_optional():
ts('optional', t_start)
def install_sentencepipece():
def install_sentencepiece():
if installed('sentencepiece', quiet=True):
pass
elif int(sys.version_info.minor) >= 13:

View File

@ -265,7 +265,7 @@ def main():
installer.check_onnx()
installer.check_transformers()
installer.check_diffusers()
installer.install_sentencepipece()
installer.install_sentencepiece()
installer.check_modified_files()
if args.test:
installer.log.info('Startup: test mode')