forked from Clipy/Clipy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Clipy#67 from Clipy/release/1.0.10
Released v1.0.10
- Loading branch information
Showing
34 changed files
with
341 additions
and
2,697 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
// | ||
// Constants.swift | ||
// Clipy | ||
// | ||
// Created by 古林俊佑 on 2016/04/17. | ||
// Copyright © 2016年 Shunsuke Furubayashi. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
struct Constants { | ||
|
||
struct Application { | ||
static let name = "Clipy" | ||
static let appcastURL = NSURL(string: "https://clipy-app.com/appcast.xml")! | ||
} | ||
|
||
struct Menu { | ||
static let clip = "ClipMenu" | ||
static let history = "HistoryMenu" | ||
static let snippet = "SnippetsMenu" | ||
} | ||
|
||
struct Common { | ||
static let index = "index" | ||
static let title = "title" | ||
static let snippets = "snippets" | ||
static let content = "content" | ||
static let selector = "selector" | ||
static let draggedDataType = "DraggedDataType" | ||
} | ||
|
||
struct UserDefaults { | ||
static let hotKeys = "kCPYPrefHotKeysKey" | ||
static let menuIconSize = "kCPYPrefMenuIconSizeKey" | ||
static let maxHistorySize = "kCPYPrefMaxHistorySizeKey" | ||
static let timeInterval = "kCPYPrefTimeIntervalKey" | ||
static let storeTypes = "kCPYPrefStoreTypesKey" | ||
static let inputPasteCommand = "kCPYPrefInputPasteCommandKey" | ||
static let showIconInTheMenu = "kCPYPrefShowIconInTheMenuKey" | ||
static let numberOfItemsPlaceInline = "kCPYPrefNumberOfItemsPlaceInlineKey" | ||
static let numberOfItemsPlaceInsideFolder = "kCPYPrefNumberOfItemsPlaceInsideFolderKey" | ||
static let maxMenuItemTitleLength = "kCPYPrefMaxMenuItemTitleLengthKey" | ||
static let menuItemsTitleStartWithZero = "kCPYPrefMenuItemsTitleStartWithZeroKey" | ||
static let reorderClipsAfterPasting = "kCPYPrefReorderClipsAfterPasting" | ||
static let addClearHistoryMenuItem = "kCPYPrefAddClearHistoryMenuItemKey" | ||
static let showAlertBeforeClearHistory = "kCPYPrefShowAlertBeforeClearHistoryKey" | ||
static let menuItemsAreMarkedWithNumbers = "menuItemsAreMarkedWithNumbers" | ||
static let showToolTipOnMenuItem = "showToolTipOnMenuItem" | ||
static let showImageInTheMenu = "showImageInTheMenu" | ||
static let addNumericKeyEquivalents = "addNumericKeyEquivalents" | ||
static let maxLengthOfToolTip = "maxLengthOfToolTipKey" | ||
static let loginItem = "loginItem" | ||
static let suppressAlertForLoginItem = "suppressAlertForLoginItem" | ||
static let showStatusItem = "kCPYPrefShowStatusItemKey" | ||
static let thumbnailWidth = "thumbnailWidth" | ||
static let thumbnailHeight = "thumbnailHeight" | ||
static let overwriteSameHistory = "kCPYPrefOverwriteSameHistroy" | ||
static let copySameHistory = "kCPYPrefCopySameHistroy" | ||
} | ||
|
||
struct Update { | ||
static let enableAutomaticCheck = "kCPYEnableAutomaticCheckKey" | ||
static let checkInterval = "kCPYUpdateCheckIntervalKey" | ||
} | ||
|
||
struct Notification { | ||
static let closeSnippetEditor = "kCPYSnippetEditorWillCloseNotification" | ||
} | ||
|
||
struct Xml { | ||
static let fileType = "xml" | ||
static let type = "type" | ||
static let rootElement = "folders" | ||
static let folderElement = "folder" | ||
static let snippetElement = "snippet" | ||
static let titleElement = "title" | ||
static let snippetsElement = "snippets" | ||
static let contentElement = "content" | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 0 additions & 37 deletions
37
Clipy/Libraries/DBPrefsWindowController/DBPrefsWindowController.h
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.