You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
(24) |
Apr
(76) |
May
(45) |
Jun
(36) |
Jul
(26) |
Aug
(40) |
Sep
(23) |
Oct
(32) |
Nov
(38) |
Dec
(2) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
(35) |
Feb
|
Mar
|
Apr
(2) |
May
(6) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(22) |
Oct
(6) |
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
(13) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(3) |
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(2) |
Sep
(1) |
Oct
(2) |
Nov
|
Dec
|
| 2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(7) |
Nov
|
Dec
(5) |
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(19) |
Dec
(1) |
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(5) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
(11) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(9) |
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
| 2021 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2023 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
|
From: Christiaan H. <cmh...@gm...> - 2023-11-30 22:34:30
|
> On 30 Nov 2023, at 22:36, Enellis via skim-app-develop <ski...@li...> wrote: > > Hi, > > I have noticed that the PDF view is empty for a short time during reloading while I was using the automatic reload function. After some research I found out that this is due to an artificially created delay in PDFKit. With the following change by directly using the undocumented method [PDFView setDocument:waitDuration:], which is called internally when using [PDFView setDocument:], the PDF view reloads the document almost immediately. (It works like a charm used alongside Typst's incremental pdf builds created instantly while typing.) > > Index: SKPDFView.m > =================================================================== > --- SKPDFView.m (Revision 13817) > +++ SKPDFView.m (Arbeitskopie) > @@ -607,7 +607,7 @@ > if ([self document]) > [self unregisterForDocumentNotifications]; > > - [super setDocument:document]; > + [super performSelector:@selector(setDocument:waitDuration:) withObject:document withObject:0]; > > if (document) > [self registerForDocumentNotifications]; > > I don't know whether this is suitable for production, but I wanted to let you know. > > Cheers, > Enellis That’s not a good idea. That method its not documented, so we don’t know how it works, what side effects it has, and whether it exists in the first place. It may work for you. It may work now. But in the next OS version? You have no idea, and you cannot do. We sometimes do use private methods, but it is to work around bugs in the system, or to do things that are otherwise impossible. It is not a good idea to use it to make things a little bit nicer.Because usually, it will break you up and lead to a serious bug in the future. Speaking from experience. Christiaan |
|
From: Enellis <ene...@ya...> - 2023-11-30 22:07:15
|
Hi,
I have noticed that the PDF view is empty for a short time during reloading while I was using the automatic reload function. After some research I found out that this is due to an artificially created delay in PDFKit. With the following change by directly using the undocumented method [PDFView setDocument:waitDuration:], which is called internally when using [PDFView setDocument:], the PDF view reloads the document almost immediately. (It works like a charm used alongside Typst's incremental pdf builds created instantly while typing.)
Index: SKPDFView.m
===================================================================
--- SKPDFView.m (Revision 13817)
+++ SKPDFView.m (Arbeitskopie)
@@ -607,7 +607,7 @@
if ([self document])
[self unregisterForDocumentNotifications];
- [super setDocument:document];
+ [super performSelector:@selector(setDocument:waitDuration:) withObject:document withObject:0];
if (document)
[self registerForDocumentNotifications];
I don't know whether this is suitable for production, but I wanted to let you know.
Cheers,
Enellis
|
|
From: Christiaan H. <cmh...@gm...> - 2021-10-08 23:34:23
|
> On 9 Oct 2021, at 01:10, slbtty <she...@gm...> wrote: > > Hi, dear skim authors > > I want to know where the “remember last page” are stored for each PDF. > > I know the notes are stored in the extended attributes, but it doesn't > seem to store the last page when I close a PDF file. > > When I use my Linux box, I have a script to read “last page opened” > from my PDF reader, and thus I can get an automatic reading tracker, > and I want to do the same on Mac. > > Is it stored in a directory? Or need special method to extract from > extended attributes? > > Thanks, > slbtty With the bookmarks preferences. Christiaan |
|
From: slbtty <she...@gm...> - 2021-10-08 23:11:23
|
Hi, dear skim authors I want to know where the “remember last page” are stored for each PDF. I know the notes are stored in the extended attributes, but it doesn't seem to store the last page when I close a PDF file. When I use my Linux box, I have a script to read “last page opened” from my PDF reader, and thus I can get an automatic reading tracker, and I want to do the same on Mac. Is it stored in a directory? Or need special method to extract from extended attributes? Thanks, slbtty |
|
From: Christiaan H. <cmh...@gm...> - 2017-09-18 08:12:33
|
Yes it is. But check the licence agreement, it mentions the conditions. Christiaan |
|
From: Qchao Q <sun...@gm...> - 2017-09-17 23:57:50
|
Is it okay that I could use the Skim core to another app? Sent from my iPhone |
|
From: Shouwei Li <ca...@gm...> - 2016-09-29 13:26:16
|
Here are the output and the test code, anything else, please tell me freely.
*2016-09-29 15:17:09.868360 SkimText[17818:2051126] /Rect*
*Program ended with exit code: 0*
*---------------------------------------------------------------------------------*
#import <Foundation/Foundation.h>
#import <Quartz/Quartz.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
// insert code here...
NSLog(@"%@", kPDFAnnotationKey_Rect);
}
return 0;
}
On Thu, Sep 29, 2016 at 2:09 PM, Christiaan Hofman <cmh...@gm...>
wrote:
> No, it’s not in the source code. they’re only defined on Sierra, so I
> cannot use them. But I need the values to use them instead to make some
> fixes for Sierra. So I was asking if you could make a simple test project
> to figure them out. For instance, a trivial app that links to the Quartz
> framework, and in the application delegate imports PDFKit and adds a line
> like
>
> NSLog(@“%@“, kPDFAnnotationKey_Rect);
>
> Running that should give the value in the console.
>
> Christiaan
>
> On Sep 29, 2016, at 11:46, Shouwei Li <ca...@gm...> wrote:
>
> Hi,
>
> I checked out the reversion 9134, but did not find some constants like
> kPDFAnnotationKey_Rect.
>
> Actually, I am not familiar with the source code of skim. If possible,
> would you please tell me what should I do in more detail, I will follow
> your instruction and send you back the output. Is that ok?
>
> Thanks!
>
>
> On Thu, Sep 29, 2016 at 11:20 AM, Christiaan Hofman <cmh...@gm...>
> wrote:
>
>> Could you have a look at this? Can you check this with the current source?
>>
>> Also, could you figure out in a simple test project what the actual value
>> of constants like kPDFAnnotationKey_Rect is? Is it something like “/Rect”
>> or “Rect”?
>>
>> thanks,
>>
>> Christiaan
>>
>> On Sep 23, 2016, at 14:58, Christiaan Hofman <cmh...@gm...> wrote:
>>
>> There’s in particular bug # 1109.
>>
>> Christiaan
>>
>> On Sep 23, 2016, at 14:55, Shouwei Li <ca...@gm...> wrote:
>>
>> Is there a ticket to trace this issue, or some explanation in detail?
>>
>> I can try but can not promise to find out the root cause. If you want me
>> to test something, that's no problem for sure.
>>
>> On Fri, Sep 23, 2016 at 2:06 PM, Christiaan Hofman <cmh...@gm...>
>> wrote:
>>
>>>
>>> On Sep 23, 2016, at 13:55, Shouwei Li <ca...@gm...> wrote:
>>>
>>> I have Sierra environment, what could I do to help you?
>>>
>>> On Thu, Sep 22, 2016 at 10:51 PM, Christiaan Hofman <cmh...@gm...>
>>> wrote:
>>>
>>>> Is there anyone here who has Sierra, and can help fix problems there It
>>>> seems PDFKit is really making a mess of thing there. And as I don’t have
>>>> Sierra (and can’t have it), I have no way of figuring out the problems.
>>>>
>>>> Christiaan
>>>>
>>>>
>>>
>>> --
>>> Best Regards!
>>> Sjouwen Li
>>>
>>>
>>> You you know a bit about objective c development?
>>>
>>> I don’t really know what’s going on, that’s the problem. It seems in
>>> particular that annotations don’t work properly anymore, in several ways.
>>> And I have no idea why and exactly what. But I cannot test myself, and
>>> that’s the only way to figure out what Apple broke.
>>>
>>> Christiaan
>>>
>>> --
>> Best Regards!
>> Shouwei Li
>>
>>
>>
> --
> Best Regards!
> Shouwei Li
>
>
>
> ------------------------------------------------------------
> ------------------
>
> _______________________________________________
> skim-app-develop mailing list
> ski...@li...
> https://lists.sourceforge.net/lists/listinfo/skim-app-develop
>
>
--
Best Regards!
Shouwei Li
|
|
From: Christiaan H. <cmh...@gm...> - 2016-09-29 12:09:36
|
No, it’s not in the source code. they’re only defined on Sierra, so I cannot use them. But I need the values to use them instead to make some fixes for Sierra. So I was asking if you could make a simple test project to figure them out. For instance, a trivial app that links to the Quartz framework, and in the application delegate imports PDFKit and adds a line like NSLog(@“%@“, kPDFAnnotationKey_Rect); Running that should give the value in the console. Christiaan > On Sep 29, 2016, at 11:46, Shouwei Li <ca...@gm...> wrote: > > Hi, > > I checked out the reversion 9134, but did not find some constants like kPDFAnnotationKey_Rect. > > Actually, I am not familiar with the source code of skim. If possible, would you please tell me what should I do in more detail, I will follow your instruction and send you back the output. Is that ok? > > Thanks! > > > On Thu, Sep 29, 2016 at 11:20 AM, Christiaan Hofman <cmh...@gm... <mailto:cmh...@gm...>> wrote: > Could you have a look at this? Can you check this with the current source? > > Also, could you figure out in a simple test project what the actual value of constants like kPDFAnnotationKey_Rect is? Is it something like “/Rect” or “Rect”? > > thanks, > > Christiaan > >> On Sep 23, 2016, at 14:58, Christiaan Hofman <cmh...@gm... <mailto:cmh...@gm...>> wrote: >> >> There’s in particular bug # 1109. >> >> Christiaan >> >>> On Sep 23, 2016, at 14:55, Shouwei Li <ca...@gm... <mailto:ca...@gm...>> wrote: >>> >>> Is there a ticket to trace this issue, or some explanation in detail? >>> >>> I can try but can not promise to find out the root cause. If you want me to test something, that's no problem for sure. >>> >>> On Fri, Sep 23, 2016 at 2:06 PM, Christiaan Hofman <cmh...@gm... <mailto:cmh...@gm...>> wrote: >>> >>>> On Sep 23, 2016, at 13:55, Shouwei Li <ca...@gm... <mailto:ca...@gm...>> wrote: >>>> >>>> I have Sierra environment, what could I do to help you? >>>> >>>> On Thu, Sep 22, 2016 at 10:51 PM, Christiaan Hofman <cmh...@gm... <mailto:cmh...@gm...>> wrote: >>>> Is there anyone here who has Sierra, and can help fix problems there It seems PDFKit is really making a mess of thing there. And as I don’t have Sierra (and can’t have it), I have no way of figuring out the problems. >>>> >>>> Christiaan >>>> >>>> >>>> >>>> -- >>>> Best Regards! >>>> Sjouwen Li >>> >>> You you know a bit about objective c development? >>> >>> I don’t really know what’s going on, that’s the problem. It seems in particular that annotations don’t work properly anymore, in several ways. And I have no idea why and exactly what. But I cannot test myself, and that’s the only way to figure out what Apple broke. >>> >>> Christiaan >>> >>> -- >>> Best Regards! >>> Shouwei Li > > > > -- > Best Regards! > Shouwei Li |
|
From: Shouwei Li <ca...@gm...> - 2016-09-29 09:46:41
|
Hi, I checked out the reversion 9134, but did not find some constants like kPDFAnnotationKey_Rect. Actually, I am not familiar with the source code of skim. If possible, would you please tell me what should I do in more detail, I will follow your instruction and send you back the output. Is that ok? Thanks! On Thu, Sep 29, 2016 at 11:20 AM, Christiaan Hofman <cmh...@gm...> wrote: > Could you have a look at this? Can you check this with the current source? > > Also, could you figure out in a simple test project what the actual value > of constants like kPDFAnnotationKey_Rect is? Is it something like “/Rect” > or “Rect”? > > thanks, > > Christiaan > > On Sep 23, 2016, at 14:58, Christiaan Hofman <cmh...@gm...> wrote: > > There’s in particular bug # 1109. > > Christiaan > > On Sep 23, 2016, at 14:55, Shouwei Li <ca...@gm...> wrote: > > Is there a ticket to trace this issue, or some explanation in detail? > > I can try but can not promise to find out the root cause. If you want me > to test something, that's no problem for sure. > > On Fri, Sep 23, 2016 at 2:06 PM, Christiaan Hofman <cmh...@gm...> > wrote: > >> >> On Sep 23, 2016, at 13:55, Shouwei Li <ca...@gm...> wrote: >> >> I have Sierra environment, what could I do to help you? >> >> On Thu, Sep 22, 2016 at 10:51 PM, Christiaan Hofman <cmh...@gm...> >> wrote: >> >>> Is there anyone here who has Sierra, and can help fix problems there It >>> seems PDFKit is really making a mess of thing there. And as I don’t have >>> Sierra (and can’t have it), I have no way of figuring out the problems. >>> >>> Christiaan >>> >>> >> >> -- >> Best Regards! >> Sjouwen Li >> >> >> You you know a bit about objective c development? >> >> I don’t really know what’s going on, that’s the problem. It seems in >> particular that annotations don’t work properly anymore, in several ways. >> And I have no idea why and exactly what. But I cannot test myself, and >> that’s the only way to figure out what Apple broke. >> >> Christiaan >> >> -- > Best Regards! > Shouwei Li > > > > ------------------------------------------------------------ > ------------------ > > _______________________________________________ > skim-app-develop mailing list > ski...@li... > https://lists.sourceforge.net/lists/listinfo/skim-app-develop > > -- Best Regards! Shouwei Li |
|
From: Christiaan H. <cmh...@gm...> - 2016-09-29 09:21:08
|
Could you have a look at this? Can you check this with the current source? Also, could you figure out in a simple test project what the actual value of constants like kPDFAnnotationKey_Rect is? Is it something like “/Rect” or “Rect”? thanks, Christiaan > On Sep 23, 2016, at 14:58, Christiaan Hofman <cmh...@gm...> wrote: > > There’s in particular bug # 1109. > > Christiaan > >> On Sep 23, 2016, at 14:55, Shouwei Li <ca...@gm... <mailto:ca...@gm...>> wrote: >> >> Is there a ticket to trace this issue, or some explanation in detail? >> >> I can try but can not promise to find out the root cause. If you want me to test something, that's no problem for sure. >> >> On Fri, Sep 23, 2016 at 2:06 PM, Christiaan Hofman <cmh...@gm... <mailto:cmh...@gm...>> wrote: >> >>> On Sep 23, 2016, at 13:55, Shouwei Li <ca...@gm... <mailto:ca...@gm...>> wrote: >>> >>> I have Sierra environment, what could I do to help you? >>> >>> On Thu, Sep 22, 2016 at 10:51 PM, Christiaan Hofman <cmh...@gm... <mailto:cmh...@gm...>> wrote: >>> Is there anyone here who has Sierra, and can help fix problems there It seems PDFKit is really making a mess of thing there. And as I don’t have Sierra (and can’t have it), I have no way of figuring out the problems. >>> >>> Christiaan >>> >>> >>> >>> -- >>> Best Regards! >>> Sjouwen Li >> >> You you know a bit about objective c development? >> >> I don’t really know what’s going on, that’s the problem. It seems in particular that annotations don’t work properly anymore, in several ways. And I have no idea why and exactly what. But I cannot test myself, and that’s the only way to figure out what Apple broke. >> >> Christiaan >> >> -- >> Best Regards! >> Shouwei Li |
|
From: Christiaan H. <cmh...@gm...> - 2016-09-23 12:58:11
|
There’s in particular bug # 1109. Christiaan > On Sep 23, 2016, at 14:55, Shouwei Li <ca...@gm...> wrote: > > Is there a ticket to trace this issue, or some explanation in detail? > > I can try but can not promise to find out the root cause. If you want me to test something, that's no problem for sure. > > On Fri, Sep 23, 2016 at 2:06 PM, Christiaan Hofman <cmh...@gm... <mailto:cmh...@gm...>> wrote: > >> On Sep 23, 2016, at 13:55, Shouwei Li <ca...@gm... <mailto:ca...@gm...>> wrote: >> >> I have Sierra environment, what could I do to help you? >> >> On Thu, Sep 22, 2016 at 10:51 PM, Christiaan Hofman <cmh...@gm... <mailto:cmh...@gm...>> wrote: >> Is there anyone here who has Sierra, and can help fix problems there It seems PDFKit is really making a mess of thing there. And as I don’t have Sierra (and can’t have it), I have no way of figuring out the problems. >> >> Christiaan >> >> >> >> -- >> Best Regards! >> Sjouwen Li > > You you know a bit about objective c development? > > I don’t really know what’s going on, that’s the problem. It seems in particular that annotations don’t work properly anymore, in several ways. And I have no idea why and exactly what. But I cannot test myself, and that’s the only way to figure out what Apple broke. > > Christiaan > > > ------------------------------------------------------------------------------ > > _______________________________________________ > skim-app-develop mailing list > ski...@li... <mailto:ski...@li...> > https://lists.sourceforge.net/lists/listinfo/skim-app-develop <https://lists.sourceforge.net/lists/listinfo/skim-app-develop> > > > > > -- > Best Regards! > Shouwei Li > ------------------------------------------------------------------------------ > _______________________________________________ > skim-app-develop mailing list > ski...@li... > https://lists.sourceforge.net/lists/listinfo/skim-app-develop Christiaan |
|
From: Shouwei Li <ca...@gm...> - 2016-09-23 12:55:37
|
Is there a ticket to trace this issue, or some explanation in detail? I can try but can not promise to find out the root cause. If you want me to test something, that's no problem for sure. On Fri, Sep 23, 2016 at 2:06 PM, Christiaan Hofman <cmh...@gm...> wrote: > > On Sep 23, 2016, at 13:55, Shouwei Li <ca...@gm...> wrote: > > I have Sierra environment, what could I do to help you? > > On Thu, Sep 22, 2016 at 10:51 PM, Christiaan Hofman <cmh...@gm...> > wrote: > >> Is there anyone here who has Sierra, and can help fix problems there It >> seems PDFKit is really making a mess of thing there. And as I don’t have >> Sierra (and can’t have it), I have no way of figuring out the problems. >> >> Christiaan >> >> > > -- > Best Regards! > Sjouwen Li > > > You you know a bit about objective c development? > > I don’t really know what’s going on, that’s the problem. It seems in > particular that annotations don’t work properly anymore, in several ways. > And I have no idea why and exactly what. But I cannot test myself, and > that’s the only way to figure out what Apple broke. > > Christiaan > > > ------------------------------------------------------------ > ------------------ > > _______________________________________________ > skim-app-develop mailing list > ski...@li... > https://lists.sourceforge.net/lists/listinfo/skim-app-develop > > -- Best Regards! Shouwei Li |
|
From: Christiaan H. <cmh...@gm...> - 2016-09-23 12:07:09
|
> On Sep 23, 2016, at 13:55, Shouwei Li <ca...@gm...> wrote: > > I have Sierra environment, what could I do to help you? > > On Thu, Sep 22, 2016 at 10:51 PM, Christiaan Hofman <cmh...@gm... <mailto:cmh...@gm...>> wrote: > Is there anyone here who has Sierra, and can help fix problems there It seems PDFKit is really making a mess of thing there. And as I don’t have Sierra (and can’t have it), I have no way of figuring out the problems. > > Christiaan > > > > -- > Best Regards! > Sjouwen Li You you know a bit about objective c development? I don’t really know what’s going on, that’s the problem. It seems in particular that annotations don’t work properly anymore, in several ways. And I have no idea why and exactly what. But I cannot test myself, and that’s the only way to figure out what Apple broke. Christiaan |
|
From: Shouwei Li <ca...@gm...> - 2016-09-23 11:55:43
|
I have Sierra environment, what could I do to help you? On Thu, Sep 22, 2016 at 10:51 PM, Christiaan Hofman <cmh...@gm...> wrote: > Is there anyone here who has Sierra, and can help fix problems there It > seems PDFKit is really making a mess of thing there. And as I don’t have > Sierra (and can’t have it), I have no way of figuring out the problems. > > Christiaan > > > ------------------------------------------------------------ > ------------------ > > _______________________________________________ > skim-app-develop mailing list > ski...@li... > https://lists.sourceforge.net/lists/listinfo/skim-app-develop > > -- Best Regards! Shouwei Li |
|
From: Christiaan H. <cmh...@gm...> - 2016-09-22 20:51:36
|
Is there anyone here who has Sierra, and can help fix problems there It seems PDFKit is really making a mess of thing there. And as I don’t have Sierra (and can’t have it), I have no way of figuring out the problems. Christiaan |
|
From: Christiaan H. <cmh...@gm...> - 2015-11-10 11:17:00
|
> On Nov 10, 2015, at 12:06, Shouwei Li <ca...@gm...> wrote: > > Hi Guys, > > I am a newbie who wants to extended some features for Skim, I already checkout the source code from branch, but I did not find a guide about how to build the dev environment or how to compile the source code on OSX(10.11). > Would you please kindly offer me some reference? > > Thank you! > > -- > Best Regards! > Shouwei Li Check out the Wiki. Christiaan |
|
From: Shouwei Li <ca...@gm...> - 2015-11-10 11:06:25
|
Hi Guys, I am a newbie who wants to extended some features for Skim, I already checkout the source code from branch, but I did not find a guide about how to build the dev environment or how to compile the source code on OSX(10.11). Would you please kindly offer me some reference? Thank you! -- Best Regards! Shouwei Li |
|
From: Jan W. <vo...@ge...> - 2015-03-31 23:29:36
|
> Am 31.03.2015 um 14:39 schrieb Christiaan Hofman <cmh...@gm...>: > > > On Mar 31, 2015, at 14:20, Jan Weiß wrote: > >> >>> Am 31.03.2015 um 12:10 schrieb Christiaan Hofman <cmh...@gm...>: >>> >>> >>> On Mar 31, 2015, at 11:51, Jan Weiß wrote: >>> >>>> This is the text of the mail which was censored by the list software: >>>>> I just improved the FindBar layout a little bit. If this is to be improved further, we could add custom arrows with an aspect ratio that is more square. Like those in the NSTextFinder find bar (as used in TextEdit). >>>> >>>> Don’t you have admin access to the mailing list? Someone should have… >>>> >>>> Cheers, >>>> Jan >>>> >>> >>> Unfortunately I don't have admin access to this list. If the change is tweaking of the find bar, perhaps you can say what you did exactly and I can apply it. We probably would not have accepted these particular changes anyway, because, at least for now, I'd like to keep the old xib format for backward flexibility. Also, the find bar *is* layed out according to the HIG guides. >> Yes. But the margins are too tight. You could selectively add my geometry tweaks. >> > > I don't think they are. They are actually the same as in some other (Apple) apps. And I don't think it's a good idea to make them wider. I totally agree. But the vertical margins are too tight. >> Who does have admin access? Perhaps SF can help, if it got lost or the admin is not available anymore. >> > > Probably Mike McCracken is the admin, I think he created the list. Do you have a way of contacting him? This is a trivial matter now, but it might become important for contributors at some point. Let’s better resolve that now. :) Jan > Christiaan > >>> Christiaan >>> >>>>> Am 31.03.2015 um 11:06 schrieb Christiaan Hofman <cmh...@gm...>: >>>>> >>>>> >>>>> On Mar 31, 2015, at 2:20, Jan Weiß wrote: >>>>> >>>>>> >>>>>>> Am 30.03.2015 um 14:01 schrieb ski...@li...: >>>>>>> >>>>>>> Well, that means I did not see it. Please discuss what you would like to change. See if you can send it in a smaller mail, perhaps in parts. >>>>>> I would love to, but these are patches for xib/nib files and they are huge without me being able to change that. >>>>>> >>>>>> Jan >>>>> >>>>> What kind of changes are they? >>>>> >>>>> Christiaan > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for all > things parallel software development, from weekly thought leadership blogs to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > skim-app-develop mailing list > ski...@li... > https://lists.sourceforge.net/lists/listinfo/skim-app-develop |
|
From: Christiaan H. <cmh...@gm...> - 2015-03-31 12:39:40
|
On Mar 31, 2015, at 14:20, Jan Weiß wrote: > >> Am 31.03.2015 um 12:10 schrieb Christiaan Hofman <cmh...@gm...>: >> >> >> On Mar 31, 2015, at 11:51, Jan Weiß wrote: >> >>> This is the text of the mail which was censored by the list software: >>>> I just improved the FindBar layout a little bit. If this is to be improved further, we could add custom arrows with an aspect ratio that is more square. Like those in the NSTextFinder find bar (as used in TextEdit). >>> >>> Don’t you have admin access to the mailing list? Someone should have… >>> >>> Cheers, >>> Jan >>> >> >> Unfortunately I don't have admin access to this list. If the change is tweaking of the find bar, perhaps you can say what you did exactly and I can apply it. We probably would not have accepted these particular changes anyway, because, at least for now, I'd like to keep the old xib format for backward flexibility. Also, the find bar *is* layed out according to the HIG guides. > Yes. But the margins are too tight. You could selectively add my geometry tweaks. > I don't think they are. They are actually the same as in some other (Apple) apps. And I don't think it's a good idea to make them wider. > Who does have admin access? Perhaps SF can help, if it got lost or the admin is not available anymore. > Probably Mike McCracken is the admin, I think he created the list. Christiaan >> Christiaan >> >>>> Am 31.03.2015 um 11:06 schrieb Christiaan Hofman <cmh...@gm...>: >>>> >>>> >>>> On Mar 31, 2015, at 2:20, Jan Weiß wrote: >>>> >>>>> >>>>>> Am 30.03.2015 um 14:01 schrieb ski...@li...: >>>>>> >>>>>> Well, that means I did not see it. Please discuss what you would like to change. See if you can send it in a smaller mail, perhaps in parts. >>>>> I would love to, but these are patches for xib/nib files and they are huge without me being able to change that. >>>>> >>>>> Jan >>>> >>>> What kind of changes are they? >>>> >>>> Christiaan |
|
From: Jan W. <vo...@ge...> - 2015-03-31 12:20:30
|
> Am 31.03.2015 um 12:10 schrieb Christiaan Hofman <cmh...@gm...>: > > > On Mar 31, 2015, at 11:51, Jan Weiß wrote: > >> This is the text of the mail which was censored by the list software: >>> I just improved the FindBar layout a little bit. If this is to be improved further, we could add custom arrows with an aspect ratio that is more square. Like those in the NSTextFinder find bar (as used in TextEdit). >> >> Don’t you have admin access to the mailing list? Someone should have… >> >> Cheers, >> Jan >> > > Unfortunately I don't have admin access to this list. If the change is tweaking of the find bar, perhaps you can say what you did exactly and I can apply it. We probably would not have accepted these particular changes anyway, because, at least for now, I'd like to keep the old xib format for backward flexibility. Also, the find bar *is* layed out according to the HIG guides. Yes. But the margins are too tight. You could selectively add my geometry tweaks. Who does have admin access? Perhaps SF can help, if it got lost or the admin is not available anymore. > Christiaan > >>> Am 31.03.2015 um 11:06 schrieb Christiaan Hofman <cmh...@gm...>: >>> >>> >>> On Mar 31, 2015, at 2:20, Jan Weiß wrote: >>> >>>> >>>>> Am 30.03.2015 um 14:01 schrieb ski...@li...: >>>>> >>>>> Well, that means I did not see it. Please discuss what you would like to change. See if you can send it in a smaller mail, perhaps in parts. >>>> I would love to, but these are patches for xib/nib files and they are huge without me being able to change that. >>>> >>>> Jan >>> >>> What kind of changes are they? >>> >>> Christiaan >>> >>> ------------------------------------------------------------------------------ >>> Dive into the World of Parallel Programming The Go Parallel Website, sponsored >>> by Intel and developed in partnership with Slashdot Media, is your hub for all >>> things parallel software development, from weekly thought leadership blogs to >>> news, videos, case studies, tutorials and more. Take a look and join the >>> conversation now. http://goparallel.sourceforge.net/_______________________________________________ >>> skim-app-develop mailing list >>> ski...@li... >>> https://lists.sourceforge.net/lists/listinfo/skim-app-develop >> >> >> ------------------------------------------------------------------------------ >> Dive into the World of Parallel Programming The Go Parallel Website, sponsored >> by Intel and developed in partnership with Slashdot Media, is your hub for all >> things parallel software development, from weekly thought leadership blogs to >> news, videos, case studies, tutorials and more. Take a look and join the >> conversation now. http://goparallel.sourceforge.net/ >> _______________________________________________ >> skim-app-develop mailing list >> ski...@li... >> https://lists.sourceforge.net/lists/listinfo/skim-app-develop > > Christiaan > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for all > things parallel software development, from weekly thought leadership blogs to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/_______________________________________________ > skim-app-develop mailing list > ski...@li... > https://lists.sourceforge.net/lists/listinfo/skim-app-develop |
|
From: Christiaan H. <cmh...@gm...> - 2015-03-31 10:10:44
|
On Mar 31, 2015, at 11:51, Jan Weiß wrote: > This is the text of the mail which was censored by the list software: >> I just improved the FindBar layout a little bit. If this is to be improved further, we could add custom arrows with an aspect ratio that is more square. Like those in the NSTextFinder find bar (as used in TextEdit). > > Don’t you have admin access to the mailing list? Someone should have… > > Cheers, > Jan > Unfortunately I don't have admin access to this list. If the change is tweaking of the find bar, perhaps you can say what you did exactly and I can apply it. We probably would not have accepted these particular changes anyway, because, at least for now, I'd like to keep the old xib format for backward flexibility. Also, the find bar *is* layed out according to the HIG guides. Christiaan >> Am 31.03.2015 um 11:06 schrieb Christiaan Hofman <cmh...@gm...>: >> >> >> On Mar 31, 2015, at 2:20, Jan Weiß wrote: >> >>> >>>> Am 30.03.2015 um 14:01 schrieb ski...@li...: >>>> >>>> Well, that means I did not see it. Please discuss what you would like to change. See if you can send it in a smaller mail, perhaps in parts. >>> I would love to, but these are patches for xib/nib files and they are huge without me being able to change that. >>> >>> Jan >> >> What kind of changes are they? >> >> Christiaan >> >> ------------------------------------------------------------------------------ >> Dive into the World of Parallel Programming The Go Parallel Website, sponsored >> by Intel and developed in partnership with Slashdot Media, is your hub for all >> things parallel software development, from weekly thought leadership blogs to >> news, videos, case studies, tutorials and more. Take a look and join the >> conversation now. http://goparallel.sourceforge.net/_______________________________________________ >> skim-app-develop mailing list >> ski...@li... >> https://lists.sourceforge.net/lists/listinfo/skim-app-develop > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for all > things parallel software development, from weekly thought leadership blogs to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > skim-app-develop mailing list > ski...@li... > https://lists.sourceforge.net/lists/listinfo/skim-app-develop Christiaan |
|
From: Jan W. <vo...@ge...> - 2015-03-31 09:51:25
|
This is the text of the mail which was censored by the list software: > I just improved the FindBar layout a little bit. If this is to be improved further, we could add custom arrows with an aspect ratio that is more square. Like those in the NSTextFinder find bar (as used in TextEdit). Don’t you have admin access to the mailing list? Someone should have… Cheers, Jan > Am 31.03.2015 um 11:06 schrieb Christiaan Hofman <cmh...@gm...>: > > > On Mar 31, 2015, at 2:20, Jan Weiß wrote: > >> >>> Am 30.03.2015 um 14:01 schrieb ski...@li...: >>> >>> Well, that means I did not see it. Please discuss what you would like to change. See if you can send it in a smaller mail, perhaps in parts. >> I would love to, but these are patches for xib/nib files and they are huge without me being able to change that. >> >> Jan > > What kind of changes are they? > > Christiaan > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for all > things parallel software development, from weekly thought leadership blogs to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/_______________________________________________ > skim-app-develop mailing list > ski...@li... > https://lists.sourceforge.net/lists/listinfo/skim-app-develop |
|
From: Christiaan H. <cmh...@gm...> - 2015-03-31 09:07:08
|
On Mar 31, 2015, at 2:20, Jan Weiß wrote: > >> Am 30.03.2015 um 14:01 schrieb ski...@li...: >> >> Well, that means I did not see it. Please discuss what you would like to change. See if you can send it in a smaller mail, perhaps in parts. > I would love to, but these are patches for xib/nib files and they are huge without me being able to change that. > > Jan What kind of changes are they? Christiaan |
|
From: Jan W. <vo...@ge...> - 2015-03-31 00:20:15
|
> Am 30.03.2015 um 14:01 schrieb ski...@li...: > > Well, that means I did not see it. Please discuss what you would like to change. See if you can send it in a smaller mail, perhaps in parts. I would love to, but these are patches for xib/nib files and they are huge without me being able to change that. Jan |
|
From: Christiaan H. <cmh...@gm...> - 2015-03-29 20:34:26
|
On Mar 29, 2015, at 18:11, Jan Weiß wrote: > >> Am 29.03.2015 um 14:00 schrieb ski...@li...: >> >> What patches? >> >> Christiaan > > Here is the lists automatic reply: > >> Your mail to 'skim-app-develop' with the subject >> >> Improved FindBar layout >> >> Is being held until the list moderator can review it for approval. >> >> The reason it is being held: >> >> Message body is too big: 73669 bytes with a limit of 40 KB >> >> Either the message will get posted to the list, or you will receive >> notification of the moderator's decision. If you would like to cancel >> this posting, please visit the following URL: >> >> https://lists.sourceforge.net/lists/confirm/skim-app-develop/cbbbb0503eb386e318c67f9d15e0e4bd45a25cb8 Well, that means I did not see it. Please discuss what you would like to change. See if you can send it in a smaller mail, perhaps in parts. Christiaan |