File tree 2 files changed +3
-3
lines changed
library-symbol-replacer.sketchplugin/Contents/Sketch
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " Library Symbol Replacer" ,
3
3
"identifier" : " com.zeroheight.library-symbol-replacer" ,
4
- "version" : " 1.0.1 " ,
4
+ "version" : " 1.0.2 " ,
5
5
"description" : " replace local symbols with library symbols" ,
6
6
"authorEmail" :
" [email protected] " ,
7
7
"author" : " zeroheight team" ,
Original file line number Diff line number Diff line change @@ -92,14 +92,14 @@ var replaceSymbols = function(context) {
92
92
93
93
var showAlert = function ( message ) {
94
94
var app = NSApplication . sharedApplication ( ) ;
95
- app . displayDialog_withTitle ( message , 'Library Replace Plugin ' ) ;
95
+ app . displayDialog_withTitle ( message , 'Library Symbol Replacer ' ) ;
96
96
}
97
97
98
98
var yesNoDialog = function ( message , first , second ) {
99
99
var alert = [ [ NSAlert alloc ] init ] ;
100
100
[ alert addButtonWithTitle :first ] ;
101
101
[ alert addButtonWithTitle :second ] ;
102
- [ alert setMessageText :'Library Replace Plugin ' ] ;
102
+ [ alert setMessageText :'Library Symbol Replacer ' ] ;
103
103
[ alert setInformativeText :message ] ;
104
104
[ alert setAlertStyle :NSWarningAlertStyle ] ;
105
105
return ( [ alert runModal ] == NSAlertFirstButtonReturn ) ;
You can’t perform that action at this time.
0 commit comments