Changeset 4357

Show
Ignore:
Timestamp:
07/10/06 22:40:23 (2 years ago)
Author:
morris
Message:

Fix a problem with chat window being hidden after connect

Bump version

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • WiredClient/trunk/English.lproj/InfoPlist.strings

    r4084 r4357  
    11/* Localized versions of Info.plist keys */ 
    22CFBundleName = "Wired Client"; 
    3 CFBundleShortVersionString = "1.3.1"; 
    4 CFBundleGetInfoString = "Wired Client 1.3.1, Copyright 2003-2006 Zanka Software."; 
     3CFBundleShortVersionString = "1.3.2"; 
     4CFBundleGetInfoString = "Wired Client 1.3.2, Copyright 2003-2006 Zanka Software."; 
    55NSHumanReadableCopyright = "Copyright 2003-2006 Zanka Software."; 
    66 
  • WiredClient/trunk/English.lproj/ReleaseNotes.rtf

    r4328 r4357  
    1 {\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf38
     1{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf41
    22{\fonttbl\f0\fswiss\fcharset77 Helvetica-Bold;\f1\fswiss\fcharset77 Helvetica;} 
    33{\colortbl;\red255\green255\blue255;\red126\green126\blue126;} 
    44\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural 
    55 
    6 \f0\b\fs36 \cf2 Wired Client 1.3.1 Read Me\cf0 \ 
     6\f0\b\fs36 \cf2 Wired Client 1.3.2 Read Me\cf0 \ 
    77\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural 
    88 
     
    2727\f0\b \cf0 \ 
    2828\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural 
    29 \cf2 1.3.1\ 
     29\cf2 1.3.2\ 
     30\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural 
     31 
     32\f1\b0 \cf0 - Fix a problem with chat window being hidden after connect\ 
     33\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural 
     34 
     35\f0\b \cf2 \ 
     361.3.1\ 
    3037\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural 
    3138 
  • WiredClient/trunk/French.lproj/InfoPlist.strings

    r4317 r4357  
    11/* Localized versions of Info.plist keys */ 
    22CFBundleName = "Wired Client"; 
    3 CFBundleShortVersionString = "1.3.1"; 
    4 CFBundleGetInfoString = "Wired Client 1.3.1, Copyright 2003-2006 Zanka Software."; 
     3CFBundleShortVersionString = "1.3.2"; 
     4CFBundleGetInfoString = "Wired Client 1.3.2, Copyright 2003-2006 Zanka Software."; 
    55NSHumanReadableCopyright = "Copyright 2003-2006 Zanka Software."; 
    66 
  • WiredClient/trunk/German.lproj/InfoPlist.strings

    r4237 r4357  
    11/* Localized versions of Info.plist keys */ 
    22CFBundleName = "Wired Client"; 
    3 CFBundleShortVersionString = "1.3.1"; 
    4 CFBundleGetInfoString = "Wired Client 1.3.1, Rechte 2003-2006 Zanka Software."; 
     3CFBundleShortVersionString = "1.3.2"; 
     4CFBundleGetInfoString = "Wired Client 1.3.2, Rechte 2003-2006 Zanka Software."; 
    55NSHumanReadableCopyright = "Rechte 2003-2006 Zanka Software."; 
    66 
  • WiredClient/trunk/Japanese.lproj/InfoPlist.strings

    r4317 r4357  
    11/* Localized versions of Info.plist keys */ 
    22CFBundleName = "Wired Client"; 
    3 CFBundleShortVersionString = "1.3.1"; 
    4 CFBundleGetInfoString = "Wired Client 1.3.1, Copyright 2003-2006 Zanka Software."; 
     3CFBundleShortVersionString = "1.3.2"; 
     4CFBundleGetInfoString = "Wired Client 1.3.2, Copyright 2003-2006 Zanka Software."; 
    55NSHumanReadableCopyright = "Copyright 2003-2006 Zanka Software."; 
    66 
  • WiredClient/trunk/WCPublicChat.h

    r3570 r4357  
    4545        unsigned int                            _unreadPosts; 
    4646        int                                                     _savedUser; 
     47        BOOL                                            _isShown; 
    4748} 
    4849 
  • WiredClient/trunk/WCPublicChat.m

    r4084 r4357  
    241241 
    242242- (void)windowTemplateShouldLoad:(NSMutableDictionary *)windowTemplate { 
    243         [[self window] setPropertiesFromDictionary:[windowTemplate objectForKey:@"WCChatWindow"] restoreSize:YES visibility:![self isHidden]]; 
     243        [[self window] setPropertiesFromDictionary:[windowTemplate objectForKey:@"WCChatWindow"] 
     244                                                                   restoreSize:YES 
     245                                                                        visibility:_isShown ? ![self isHidden] : NO]; 
    244246         
    245247        [super windowTemplateShouldLoad:windowTemplate]; 
     
    336338 
    337339        [self showWindow:self]; 
     340         
     341        _isShown = YES; 
    338342} 
    339343