[PR #8191] [CLOSED] Setup window scaling is bigger than expected. #8160 #59354

Closed
opened 2026-04-29 14:17:18 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/8191
Author: @YonTracks
Created: 12/20/2024
Status: Closed

Base: mainHead: main


📝 Commits (10+)

  • 5a333e3 Adds tokenization and detokenization features.
  • 9d960d3 Prevent orphaned Llama server processes
  • 521365a Disabled background updater for now.
  • 59bdb0d init settings menu / gui :
  • 562e8da Migrated chat functionality to Ollama API
  • 42229ef Merge branch 'ollama:main' into main
  • 3db7ce4 Merge branch 'ollama:main' into main
  • e06824a Bugfix vscode continue extension issue:
  • b455ad2 Improve Memory Estimate Calculations
  • 2015b67 Refactor settings and memory logging

📊 Changes

18 files changed (+1730 additions, -34 deletions)

View changed files

📝 .gitignore (+3 -1)
app/lifecycle/gui_windows.go (+25 -0)
📝 app/lifecycle/lifecycle.go (+5 -1)
app/lifecycle/settings_windows.go (+19 -0)
📝 app/ollama.iss (+6 -4)
📝 app/tray/commontray/types.go (+6 -4)
📝 app/tray/wintray/eventloop.go (+13 -1)
📝 app/tray/wintray/menus.go (+12 -2)
📝 app/tray/wintray/messages.go (+2 -0)
📝 app/tray/wintray/tray.go (+6 -4)
📝 docs/api.md (+49 -0)
📝 go.mod (+28 -5)
📝 go.sum (+489 -10)
gui/README.md (+62 -0)
gui/main.go (+772 -0)
📝 llm/memory.go (+8 -0)
📝 llm/server.go (+114 -1)
📝 server/routes.go (+111 -1)

📄 Description

reduce OllamaSetup.exe wizard size.
before:
Screenshot 2024-12-21 090033
after:
Screenshot 2024-12-21 085856


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ollama/ollama/pull/8191 **Author:** [@YonTracks](https://github.com/YonTracks) **Created:** 12/20/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`5a333e3`](https://github.com/ollama/ollama/commit/5a333e343950f3dc3dec2374240956732d185d1a) Adds tokenization and detokenization features. - [`9d960d3`](https://github.com/ollama/ollama/commit/9d960d3683659ad2098fd51b861346d547ff0145) Prevent orphaned Llama server processes - [`521365a`](https://github.com/ollama/ollama/commit/521365abffa614972f67008655dbe5579d878338) Disabled background updater for now. - [`59bdb0d`](https://github.com/ollama/ollama/commit/59bdb0df1ac3ad7b886876101145d44dd2e3a49e) init settings menu / gui : - [`562e8da`](https://github.com/ollama/ollama/commit/562e8da62190c13b21ab882fb7e4ee36ef23b23b) Migrated chat functionality to Ollama API - [`42229ef`](https://github.com/ollama/ollama/commit/42229ef1fcaa53221cb09def5a6cffa2ae9a3b46) Merge branch 'ollama:main' into main - [`3db7ce4`](https://github.com/ollama/ollama/commit/3db7ce4f46641bf124f4cf5271d2358798b67adc) Merge branch 'ollama:main' into main - [`e06824a`](https://github.com/ollama/ollama/commit/e06824a08ce70ec4e27ba316b214e9f8f3dc067d) Bugfix vscode continue extension issue: - [`b455ad2`](https://github.com/ollama/ollama/commit/b455ad23ed0edb4a8c122961a45a296ba2fd18d6) Improve Memory Estimate Calculations - [`2015b67`](https://github.com/ollama/ollama/commit/2015b67ecd633e94f61fc6e1ad19add9932f4934) Refactor settings and memory logging ### 📊 Changes **18 files changed** (+1730 additions, -34 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+3 -1) ➕ `app/lifecycle/gui_windows.go` (+25 -0) 📝 `app/lifecycle/lifecycle.go` (+5 -1) ➕ `app/lifecycle/settings_windows.go` (+19 -0) 📝 `app/ollama.iss` (+6 -4) 📝 `app/tray/commontray/types.go` (+6 -4) 📝 `app/tray/wintray/eventloop.go` (+13 -1) 📝 `app/tray/wintray/menus.go` (+12 -2) 📝 `app/tray/wintray/messages.go` (+2 -0) 📝 `app/tray/wintray/tray.go` (+6 -4) 📝 `docs/api.md` (+49 -0) 📝 `go.mod` (+28 -5) 📝 `go.sum` (+489 -10) ➕ `gui/README.md` (+62 -0) ➕ `gui/main.go` (+772 -0) 📝 `llm/memory.go` (+8 -0) 📝 `llm/server.go` (+114 -1) 📝 `server/routes.go` (+111 -1) </details> ### 📄 Description reduce OllamaSetup.exe wizard size. before: ![Screenshot 2024-12-21 090033](https://github.com/user-attachments/assets/9488eba2-4255-4a5e-8016-dcc1667988e2) after: ![Screenshot 2024-12-21 085856](https://github.com/user-attachments/assets/b65cb938-c8e7-4d5e-adf6-6e921823f741) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-29 14:17:18 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#59354