Skip to content

Commit f9e4028

Browse files
committed
1.0.2 - update dialog titles
1 parent 6ffd6f3 commit f9e4028

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library-symbol-replacer.sketchplugin/Contents/Sketch/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name" : "Library Symbol Replacer",
33
"identifier" : "com.zeroheight.library-symbol-replacer",
4-
"version" : "1.0.1",
4+
"version" : "1.0.2",
55
"description" : "replace local symbols with library symbols",
66
"authorEmail" : "[email protected]",
77
"author" : "zeroheight team",

library-symbol-replacer.sketchplugin/Contents/Sketch/script.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ var replaceSymbols = function(context) {
9292

9393
var showAlert = function(message){
9494
var app = NSApplication.sharedApplication();
95-
app.displayDialog_withTitle(message, 'Library Replace Plugin');
95+
app.displayDialog_withTitle(message, 'Library Symbol Replacer');
9696
}
9797

9898
var yesNoDialog = function(message,first,second){
9999
var alert = [[NSAlert alloc] init];
100100
[alert addButtonWithTitle:first];
101101
[alert addButtonWithTitle:second];
102-
[alert setMessageText:'Library Replace Plugin'];
102+
[alert setMessageText:'Library Symbol Replacer'];
103103
[alert setInformativeText:message];
104104
[alert setAlertStyle:NSWarningAlertStyle];
105105
return ([alert runModal] == NSAlertFirstButtonReturn);

0 commit comments

Comments
 (0)