[PR #2499] [MERGED] Windows Preview #42161

Closed
opened 2026-04-24 21:56:57 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/2499
Author: @mxyng
Created: 2/14/2024
Status: Merged
Merged: 2/16/2024
Merged by: @dhiltgen

Base: mainHead: windows-preview


📝 Commits (10+)

  • 9da9e8f Move Mac App to a new dir
  • f397e0e Move hub auth out to new package
  • 29e90cc Implement new Go based Desktop app
  • 66ef308 Import "containerd/console" lib to support colorful output in Windows terminal
  • 823a520 Fix lint error on ignored error for win console
  • e43648a rerefactor
  • 7ad9844 set exe metadata using resource files
  • 622b1f3 update installer and app.exe metadata
  • 57e60c8 better windows app and tray icons
  • 7611374 update installer title

📊 Changes

89 files changed (+2873 additions, -340 deletions)

View changed files

📝 .gitignore (+2 -1)
📝 app/.gitignore (+1 -92)
📝 app/README.md (+14 -13)
app/assets/app.ico (+0 -0)
app/assets/assets.go (+17 -0)
app/assets/setup.bmp (+0 -0)
app/assets/tray.ico (+0 -0)
app/assets/tray_upgrade.ico (+0 -0)
app/lifecycle/getstarted_nonwindows.go (+9 -0)
app/lifecycle/getstarted_windows.go (+44 -0)
app/lifecycle/lifecycle.go (+84 -0)
app/lifecycle/logging.go (+46 -0)
app/lifecycle/logging_nonwindows.go (+9 -0)
app/lifecycle/logging_windows.go (+19 -0)
app/lifecycle/paths.go (+79 -0)
app/lifecycle/server.go (+135 -0)
app/lifecycle/server_unix.go (+12 -0)
app/lifecycle/server_windows.go (+13 -0)
app/lifecycle/updater.go (+238 -0)
app/lifecycle/updater_nonwindows.go (+12 -0)

...and 69 more files

📄 Description

No description provided


🔄 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/2499 **Author:** [@mxyng](https://github.com/mxyng) **Created:** 2/14/2024 **Status:** ✅ Merged **Merged:** 2/16/2024 **Merged by:** [@dhiltgen](https://github.com/dhiltgen) **Base:** `main` ← **Head:** `windows-preview` --- ### 📝 Commits (10+) - [`9da9e8f`](https://github.com/ollama/ollama/commit/9da9e8fb7254df1148f9619bec781e52dc954678) Move Mac App to a new dir - [`f397e0e`](https://github.com/ollama/ollama/commit/f397e0e988272ffd14bdfb6c4070bb3ab5328df2) Move hub auth out to new package - [`29e90cc`](https://github.com/ollama/ollama/commit/29e90cc13b94d5306db42240042ad6f2bb8add3a) Implement new Go based Desktop app - [`66ef308`](https://github.com/ollama/ollama/commit/66ef308abdccf3e0098715f66253898e9ff12702) Import "containerd/console" lib to support colorful output in Windows terminal - [`823a520`](https://github.com/ollama/ollama/commit/823a520266ab51442d8f2d8631a0c2676f79dd3d) Fix lint error on ignored error for win console - [`e43648a`](https://github.com/ollama/ollama/commit/e43648afe5a4ff6588790f4c462f2944037ad42c) rerefactor - [`7ad9844`](https://github.com/ollama/ollama/commit/7ad9844ac0cf80cff9768f69fa306aa99b9357aa) set exe metadata using resource files - [`622b1f3`](https://github.com/ollama/ollama/commit/622b1f3e67be1e1ef3a874b96063cd950738530c) update installer and app.exe metadata - [`57e60c8`](https://github.com/ollama/ollama/commit/57e60c836ff91fcaa4355b817cf0151018e4fcb9) better windows app and tray icons - [`7611374`](https://github.com/ollama/ollama/commit/76113742cfc13a55f371e3d1c999eb74246376ad) update installer title ### 📊 Changes **89 files changed** (+2873 additions, -340 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -1) 📝 `app/.gitignore` (+1 -92) 📝 `app/README.md` (+14 -13) ➕ `app/assets/app.ico` (+0 -0) ➕ `app/assets/assets.go` (+17 -0) ➕ `app/assets/setup.bmp` (+0 -0) ➕ `app/assets/tray.ico` (+0 -0) ➕ `app/assets/tray_upgrade.ico` (+0 -0) ➕ `app/lifecycle/getstarted_nonwindows.go` (+9 -0) ➕ `app/lifecycle/getstarted_windows.go` (+44 -0) ➕ `app/lifecycle/lifecycle.go` (+84 -0) ➕ `app/lifecycle/logging.go` (+46 -0) ➕ `app/lifecycle/logging_nonwindows.go` (+9 -0) ➕ `app/lifecycle/logging_windows.go` (+19 -0) ➕ `app/lifecycle/paths.go` (+79 -0) ➕ `app/lifecycle/server.go` (+135 -0) ➕ `app/lifecycle/server_unix.go` (+12 -0) ➕ `app/lifecycle/server_windows.go` (+13 -0) ➕ `app/lifecycle/updater.go` (+238 -0) ➕ `app/lifecycle/updater_nonwindows.go` (+12 -0) _...and 69 more files_ </details> ### 📄 Description _No description provided_ --- <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-24 21:56:57 -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#42161