Skip to content

Commit cd84190

Browse files
committed
Missing commit for version 1.2
1 parent 1d4a210 commit cd84190

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

GeneratePreviewForURL.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ OSStatus GeneratePreviewForURL(void *thisInterface, QLPreviewRequestRef preview,
7979
// info
8080
NSString *separatorDesc = [@" " isEqualToString:csvDoc.separator] ? @"Tab" :
8181
([@"," isEqualToString:csvDoc.separator] ? @"Comma" :
82-
([@"|" isEqualToString:csvDoc.separator] ? @"Pipe" : csvDoc.separator));
82+
([@"|" isEqualToString:csvDoc.separator] ? @"Pipe" :
83+
([@";" isEqualToString:csvDoc.separator] ? @"Semicolon" : csvDoc.separator)));
8384
NSString *numRows = (numRowsParsed > MAX_ROWS) ?
8485
[NSString stringWithFormat:@"%i+", MAX_ROWS] :
8586
[NSString stringWithFormat:@"%lu", numRowsParsed];

INSTALL.rtf

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf250
2-
{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 Monaco;}
1+
{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf340
2+
\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 Monaco;}
33
{\colortbl;\red255\green255\blue255;\red36\green70\blue183;}
4-
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
4+
\vieww14400\viewh14000\viewkind0
5+
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\pardirnatural
56

67
\f0\b\fs48 \cf0 Installation
78
\fs50 \
89
910
\b0\fs28 \
10-
\pard\tx566\tx6423\sl336\slmult1\ql\qnatural\pardirnatural
11+
\pard\tx566\tx6423\sl336\slmult1\pardirnatural
1112
\cf0 Place the file
1213
\b QuickLookCSV.qlgenerator
1314
\b0 into:\
@@ -20,7 +21,7 @@
2021
If the QuickLook-folder does not exist, simply create it manually.\
2122
\
2223
This is version
23-
\b 1.1.1
24+
\b 1.2
2425
\b0 of the plugin.\
2526
{\field{\*\fldinst{HYPERLINK "http://code.google.com/p/quicklook-csv/"}}{\fldrslt http://code.google.com/p/quicklook-csv/}}\
2627
}

QuickLookCSV.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215
);
216216
runOnlyForDeploymentPostprocessing = 0;
217217
shellPath = /bin/sh;
218-
shellScript = "if [ 'Release' == $CONFIGURATION ]; then\n cd ~/Desktop\n mkdir \"QuickLook CSV\"\n cd \"QuickLook CSV\"\n ln -s ~/Library/QuickLook \"Plugins (User)\"\n ln -s /Library/QuickLook \"Plugins (System Wide)\"\n \n mkdir \"Test Files\"\n cp ${SRCROOT}/Test/* \"Test Files\"\nfi";
218+
shellScript = "if [ 'Release' == $CONFIGURATION ]; then\n cd ~/Desktop\n mkdir \"QuickLook CSV\"\n\n cd \"QuickLook CSV\"\n ln -s ~/Library/QuickLook \"Plugins (User)\"\n ln -s /Library/QuickLook \"Plugins (System Wide)\"\n\n cp ${SRCROOT}/INSTALL.rtf ./\n \n mkdir \"Test Files\"\n cp ${SRCROOT}/Test/* \"Test Files\"\nfi";
219219
};
220220
/* End PBXShellScriptBuildPhase section */
221221

0 commit comments

Comments
 (0)