[PR #154] [MERGED] Release v1.1.3 #465

Closed
opened 2026-03-03 01:12:32 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Clipy/Clipy/pull/154
Author: @Econa77
Created: 3/1/2017
Status: Merged
Merged: 3/1/2017
Merged by: @Econa77

Base: masterHead: release/v1.1.3


📝 Commits (10+)

  • c06591f 🚀 Refactoring clip manager
  • 3ee12e2 🔥 Remove observe interval settings
  • a59a126 🔥 Remove unused property
  • bf5b767 🚀 Refactoring hotkey manager
  • 1c579b8 🚀 Refactoring history manager
  • 15efdbf 🐛 Fix thread error
  • 82f3373 🐛 Fix image reading from NSPasteboard
  • d33c502 🐛 Fix create image thumbnail
  • 5fc4adf 🐛 Fix types order keeping
  • c9bc766 🎨 Implement color code preview

📊 Changes

641 files changed (+20479 additions, -15077 deletions)

View changed files

📝 Clipy.xcodeproj/project.pbxproj (+59 -31)
📝 Clipy/Sources/AppDelegate.swift (+13 -21)
📝 Clipy/Sources/Constants.swift (+1 -1)
📝 Clipy/Sources/Enums/MenuType.swift (+12 -12)
Clipy/Sources/Extensions/Collection+Safe.swift (+15 -0)
Clipy/Sources/Extensions/NSCoding+Archive.swift (+21 -0)
Clipy/Sources/Extensions/NSColor+Hex.swift (+70 -0)
Clipy/Sources/Extensions/NSImage+NSColor.swift (+19 -0)
📝 Clipy/Sources/Extensions/Realm+Migration.swift (+1 -1)
Clipy/Sources/Managers/ClipManager.swift (+0 -206)
Clipy/Sources/Managers/ExcludeAppManager.swift (+0 -67)
Clipy/Sources/Managers/HistoryManager.swift (+0 -107)
Clipy/Sources/Managers/HotKeyManager.swift (+0 -200)
📝 Clipy/Sources/Managers/MenuManager.swift (+34 -25)
Clipy/Sources/Managers/PasteboardManager.swift (+0 -103)
📝 Clipy/Sources/Models/CPYClip.swift (+1 -0)
📝 Clipy/Sources/Models/CPYClipData.swift (+28 -8)
📝 Clipy/Sources/Models/CPYFolder.swift (+2 -2)
📝 Clipy/Sources/Preferences/Panels/CPYExcludeAppPreferenceViewController.swift (+5 -5)
📝 Clipy/Sources/Preferences/Panels/CPYShortcutsPreferenceViewController.swift (+9 -9)

...and 80 more files

📄 Description

Enhancements

  • Added menu icon display setting ( #121 )
  • Added thumbnail display of color code ( #127 )
  • Improved pasting behavior

Bugfixes

  • Fixed preview thumbnail image ( #115 )
  • Fixed crash at thumbnail thread handling ( #116 #146 )
  • Fixed 1 Password mini could not be excluded ( #149 )
  • Fixed crash at adding exclude applications ( #153 #144 )
  • Fixed memory leaking ( #147 )
  • Fixed crash at load image from NSPasteboard
  • Fixed other minor bugs

🔄 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/Clipy/Clipy/pull/154 **Author:** [@Econa77](https://github.com/Econa77) **Created:** 3/1/2017 **Status:** ✅ Merged **Merged:** 3/1/2017 **Merged by:** [@Econa77](https://github.com/Econa77) **Base:** `master` ← **Head:** `release/v1.1.3` --- ### 📝 Commits (10+) - [`c06591f`](https://github.com/Clipy/Clipy/commit/c06591f4151a9088f76229000b974b290c7ad967) :rocket: Refactoring clip manager - [`3ee12e2`](https://github.com/Clipy/Clipy/commit/3ee12e2632f5adb03be445520921f00c1c0f2c87) :fire: Remove observe interval settings - [`a59a126`](https://github.com/Clipy/Clipy/commit/a59a126751bbe23359dab2c8a0c323c380920f81) :fire: Remove unused property - [`bf5b767`](https://github.com/Clipy/Clipy/commit/bf5b7673f34fd82c57d1c0d13b1fca40e40ab5e8) :rocket: Refactoring hotkey manager - [`1c579b8`](https://github.com/Clipy/Clipy/commit/1c579b8e3a6efeedf9accccfdaf8554718cd5b8c) :rocket: Refactoring history manager - [`15efdbf`](https://github.com/Clipy/Clipy/commit/15efdbfb74df47285066b1ec427c5dfba449b418) :bug: Fix thread error - [`82f3373`](https://github.com/Clipy/Clipy/commit/82f3373b1663daf1a868e6af0b3e67944857003b) :bug: Fix image reading from NSPasteboard - [`d33c502`](https://github.com/Clipy/Clipy/commit/d33c502c5ba2de347f56ea0ba0dd900d56bef0e2) :bug: Fix create image thumbnail - [`5fc4adf`](https://github.com/Clipy/Clipy/commit/5fc4adfd05869c6c3eb891c076c9c4087908549f) :bug: Fix types order keeping - [`c9bc766`](https://github.com/Clipy/Clipy/commit/c9bc766abc356fd64607b152f04ff1c3390d850a) :art: Implement color code preview ### 📊 Changes **641 files changed** (+20479 additions, -15077 deletions) <details> <summary>View changed files</summary> 📝 `Clipy.xcodeproj/project.pbxproj` (+59 -31) 📝 `Clipy/Sources/AppDelegate.swift` (+13 -21) 📝 `Clipy/Sources/Constants.swift` (+1 -1) 📝 `Clipy/Sources/Enums/MenuType.swift` (+12 -12) ➕ `Clipy/Sources/Extensions/Collection+Safe.swift` (+15 -0) ➕ `Clipy/Sources/Extensions/NSCoding+Archive.swift` (+21 -0) ➕ `Clipy/Sources/Extensions/NSColor+Hex.swift` (+70 -0) ➕ `Clipy/Sources/Extensions/NSImage+NSColor.swift` (+19 -0) 📝 `Clipy/Sources/Extensions/Realm+Migration.swift` (+1 -1) ➖ `Clipy/Sources/Managers/ClipManager.swift` (+0 -206) ➖ `Clipy/Sources/Managers/ExcludeAppManager.swift` (+0 -67) ➖ `Clipy/Sources/Managers/HistoryManager.swift` (+0 -107) ➖ `Clipy/Sources/Managers/HotKeyManager.swift` (+0 -200) 📝 `Clipy/Sources/Managers/MenuManager.swift` (+34 -25) ➖ `Clipy/Sources/Managers/PasteboardManager.swift` (+0 -103) 📝 `Clipy/Sources/Models/CPYClip.swift` (+1 -0) 📝 `Clipy/Sources/Models/CPYClipData.swift` (+28 -8) 📝 `Clipy/Sources/Models/CPYFolder.swift` (+2 -2) 📝 `Clipy/Sources/Preferences/Panels/CPYExcludeAppPreferenceViewController.swift` (+5 -5) 📝 `Clipy/Sources/Preferences/Panels/CPYShortcutsPreferenceViewController.swift` (+9 -9) _...and 80 more files_ </details> ### 📄 Description ## Enhancements - Added menu icon display setting ( #121 ) - Added thumbnail display of color code ( #127 ) - Improved pasting behavior ## Bugfixes - Fixed preview thumbnail image ( #115 ) - Fixed crash at thumbnail thread handling ( #116 #146 ) - Fixed 1 Password mini could not be excluded ( #149 ) - Fixed crash at adding exclude applications ( #153 #144 ) - Fixed memory leaking ( #147 ) - Fixed crash at load image from NSPasteboard - Fixed other minor bugs --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 01:12:32 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Clipy#465
No description provided.