Questions tagged [findersync]

In OS X, the Finder Sync extension point lets you cleanly and safely modify the Finder’s user interface to express file synchronization status and control. Unlike most extension points, Finder Sync does not add features to a host app.

In OS X, the Finder Sync extension point lets you cleanly and safely modify the Finder’s user interface to express file synchronization status and control. Unlike most extension points, Finder Sync does not add features to a host app. With a Finder Sync extension you register one or more folders for the system to monitor. Your Finder Sync extension then sets badges, labels, and contextual menus for any items in the monitored folders. You can also use the extension point’s API to add a toolbar button to the Finder window.

82 questions
1
vote
1 answer

FinderSync Extension HTTP request to failing

Currently I am writing FinderSync Extension for my App using Swift language. My Extension require to do the REST call to the Server which is running on local host at port number 40322. Based on the response I will create the context menu Items. For…
Rahul.Shikhare
  • 179
  • 1
  • 16
1
vote
1 answer

FinderSync appex not installed

I have an application that implements a FinderSync app extension. The problem is that on a customer computer, it seems that FinderSync is installed only after Finder is restarted, but not before. The customer has osx El Capitan(10.11.2). I have a…
ciprian
  • 175
  • 7
1
vote
3 answers

grant OSX sandboxed finder sync extension persistent write access

I've written a short swift code to add a button to the finder which creates a new blank file at the current directory via a system touch call. The extension gets the current directory fine (via…
egwene sedai
  • 403
  • 1
  • 4
  • 16
1
vote
0 answers

OSX How to display only one icon in dockbar for same application launched from 2 different locations

I have an application with FinderSync extension support. I want to achieve silent update for this application. The only approach that I came up with at this moment, is installing the new version of the app into ~/Library/Application Support/../...,…
ciprian
  • 175
  • 7
1
vote
1 answer

No callback when clicking menu item

I'm trying to implement a simple context menu in my FinderSync extension. I built the following using some examples, and my problem is that the callback is never called when I click the menu item. Source code: ContextMenuHelper.h #import…
Mugen
  • 8,301
  • 10
  • 62
  • 140
1
vote
0 answers

How to create a Finder Sync extension with Monodevelop

In OS X, the Finder Sync extension point lets you cleanly and safely modify the Finder’s user interface to express file synchronization status and control. Typically, it used to show green marks icon overlays like this: The official documentation…
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
0
votes
1 answer

FinderSync extension and Main app: notifications from extension are ignored

I'm trying to make a FinderSync extension that should add menu items and post notifications about clicks and the Main app that should react on clicks. Right now I have two targets, both with same app groups in their entitlements: FinderMenu - the…
Ilya Kantor
  • 581
  • 5
  • 11
0
votes
0 answers

Why is Finder Sync extension working in Debug configuration and not in Release configuration?

I am developing an app using .NET Framework 4.5.2 under Visual Studio for Mac. I have added a Finder Sync extension which shows badges next to specific files when the app is running. I am satisfied with how the extension works when I run the app in…
0
votes
1 answer

How to install the Finder Sync Extension so that it's persistently integrated with Finder?

In my app I have Finder Sync Extension. I know how to launch it using pluginkit -a. The problem is when I run from Xcode it launches and works. But I need this to be bundled with the main app and the main app should launch it. I used terminal…
Anoop Vaidya
  • 46,283
  • 15
  • 111
  • 140
0
votes
0 answers

Finder Sync/Overlays Extension not launching

I am facing an issue where finder overlays sync icons are not shown. Here is the code that I tried: NSString* bundleID = @"com.my.myapp"; NSString* extBundleID = [NSString stringWithFormat:@"%@.finderoverlays", bundleID]; NSString* runCommand =…
Anoop Vaidya
  • 46,283
  • 15
  • 111
  • 140
0
votes
0 answers

How to deploy a Finder Sync extension project

I have created a simple Hello World application using Xcode on Mac High Sierra. To this i have added a Finder Sync extension. In the requestBadgeIdentifierForURL API, i am doing a HTTP webrequest to my Sync app in order to get the status of the file…
Deepti
  • 1
  • 3
0
votes
0 answers

how to do that MacOS file icon overlay (like parallels desktop) without FinderSync?

Like this: Parallels Desktop can do that In this picture, we can see an exe(windows PE) file's icon has been shown in finder, but I also realized that PD just change the preview picture, the real icon not change file associations to itself. I have…
ccluv
  • 1
  • 1
0
votes
0 answers

How do I access User Folders from Finder Sync Extension?

I am developing a Cocoa application with Finder Extension to set overlay icons on the file. As soon as the user clicks on a folder that i am monitoring, I get a call to the method - beginObservingDirectoryAtURL: So my code is: -…
Sandeep T D S
  • 481
  • 3
  • 15
0
votes
2 answers

Simple FinderSync extension doesn't seem to be running inside Xcode

I'm using the FinderSync extension template. Info.plist When I run the extension target there's zero output in the console. The code doesn't seem to run. running the extension
AdrienM
  • 174
  • 2
  • 3
  • 10
0
votes
0 answers

“Undefined symbols for architecture x86_64”

I'm trying to write a findersync program. i got the following error. I found a variety of ways to solve the error but failed. Eventually, I tried to put the IpcManager.m to my host app's "bulid phase" -> complie source,and it worked. I am very…
Tessimle
  • 31
  • 3