From t-suwa @ users.sourceforge.jp Sat Jul 1 08:44:30 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sat, 1 Jul 2006 08:44:30 +0900 Subject: [aquaskk-changes 233] CVS update: AquaSKK Message-ID: <20060630234430.68BE62AC048@users.sourceforge.jp> Index: AquaSKK/BIM.cpp diff -u AquaSKK/BIM.cpp:1.13 AquaSKK/BIM.cpp:1.14 --- AquaSKK/BIM.cpp:1.13 Wed May 17 01:13:10 2006 +++ AquaSKK/BIM.cpp Sat Jul 1 08:44:30 2006 @@ -1,5 +1,5 @@ /* - $Id: BIM.cpp,v 1.13 2006/05/16 16:13:10 t-suwa Exp $ + $Id: BIM.cpp,v 1.14 2006/06/30 23:44:30 t-suwa Exp $ MacOS X implementation of the SKK input method. @@ -381,7 +381,7 @@ } } - switch(event) { + switch(event.CharCode()) { case kNullCharCode: return true; case kBackspaceCharCode: Index: AquaSKK/ChangeLog diff -u AquaSKK/ChangeLog:1.30 AquaSKK/ChangeLog:1.31 --- AquaSKK/ChangeLog:1.30 Thu Jun 15 10:24:32 2006 +++ AquaSKK/ChangeLog Sat Jul 1 08:44:30 2006 @@ -1,3 +1,15 @@ +2006-07-01 Tomotaka SUWA + + * SKKDictionary.cpp: SKK-JISYO.jinmei ?????????????? + ???B????ォ??static ?????B + + * SKKConfig.cpp: SKK_BACKSPACE_KEY ? SKK_INDENT_KEY ?????? + + * Resources/config: backspace-key ? indent-key ???? + + * BIM.cpp: SKKCHAR ?????MacCharCode ??????????B?? + ????Ctrl-H ? BACKSPACE ? Ctrl-I ? TAB + 2006-06-15 Tomotaka SUWA * Resources/UserDefaults.plist: ?????????????? Index: AquaSKK/NumericConverter.cpp diff -u AquaSKK/NumericConverter.cpp:1.2 AquaSKK/NumericConverter.cpp:1.3 --- AquaSKK/NumericConverter.cpp:1.2 Sat Jun 10 10:51:01 2006 +++ AquaSKK/NumericConverter.cpp Sat Jul 1 08:44:30 2006 @@ -1,5 +1,5 @@ /* - $Id: NumericConverter.cpp,v 1.2 2006/06/10 01:51:01 t-suwa Exp $ + $Id: NumericConverter.cpp,v 1.3 2006/06/30 23:44:30 t-suwa Exp $ MacOS X implementation of the SKK input method. @@ -20,7 +20,6 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include #include "NumericConverter.h" // ====================================================================== Index: AquaSKK/SKKConfig.cpp diff -u AquaSKK/SKKConfig.cpp:1.1 AquaSKK/SKKConfig.cpp:1.2 --- AquaSKK/SKKConfig.cpp:1.1 Wed May 17 01:13:10 2006 +++ AquaSKK/SKKConfig.cpp Sat Jul 1 08:44:30 2006 @@ -1,5 +1,5 @@ /* - $Id: SKKConfig.cpp,v 1.1 2006/05/16 16:13:10 t-suwa Exp $ + $Id: SKKConfig.cpp,v 1.2 2006/06/30 23:44:30 t-suwa Exp $ MacOS X implementation of the SKK input method. @@ -55,9 +55,12 @@ #define SKK_ABBREV_NEXT_KEY "abbrev-next-key" #define SKK_PURGE_FROM_JISYO_KEY "purge-from-jisyo-key" #define SKK_CANCEL_KEY "cancel-key" -#define SKK_FIX_N "fix-n" #define SKK_SET_HENKAN_POINT_KEY "set-henkan-point-key" #define SKK_PASTE_KEY "paste-key" +#define SKK_BACKSPACE_KEY "backspace-key" // Ctrl-H +#define SKK_INDENT_KEY "indent-key" // Ctrl-I + +#define SKK_FIX_N "fix-n" #define SKK_USE_EISUU_TO_SET_HENKAN_POINT "use-eisuu-to-set-henkan-point" #define SKK_USE_KANA_TO_SET_HENKAN_POINT "use-kana-to-set-henkan-point" @@ -88,11 +91,15 @@ { SKK_ABBREV_NEXT_KEY, TYPE_KEYCODE }, { SKK_PURGE_FROM_JISYO_KEY, TYPE_KEYCODE }, { SKK_CANCEL_KEY, TYPE_KEYCODE }, - { SKK_FIX_N, TYPE_BOOLEAN }, { SKK_SET_HENKAN_POINT_KEY, TYPE_KEYCODE }, { SKK_PASTE_KEY, TYPE_KEYCODE }, + { SKK_BACKSPACE_KEY, TYPE_KEYCODE }, + { SKK_INDENT_KEY, TYPE_KEYCODE }, + + { SKK_FIX_N, TYPE_BOOLEAN }, { SKK_USE_EISUU_TO_SET_HENKAN_POINT, TYPE_BOOLEAN }, { SKK_USE_KANA_TO_SET_HENKAN_POINT, TYPE_BOOLEAN }, + { NULL, TYPE_INVALID } }; Index: AquaSKK/SKKDictionary.cpp diff -u AquaSKK/SKKDictionary.cpp:1.11 AquaSKK/SKKDictionary.cpp:1.12 --- AquaSKK/SKKDictionary.cpp:1.11 Mon Jun 12 23:14:48 2006 +++ AquaSKK/SKKDictionary.cpp Sat Jul 1 08:44:30 2006 @@ -1,5 +1,5 @@ /* - $Id: SKKDictionary.cpp,v 1.11 2006/06/12 14:14:48 t-suwa Exp $ + $Id: SKKDictionary.cpp,v 1.12 2006/06/30 23:44:30 t-suwa Exp $ MacOS X implementation of the SKK input method. @@ -338,9 +338,8 @@ // ??????????????????????? if(modified) { std::ofstream ofs(obj->path_.c_str()); - while(true) { + while(session.good()) { getline(session, response); - if(response.empty()) break; ofs << response << std::endl; } ofs.close(); @@ -363,7 +362,7 @@ // SKKUserDictionary ??????? // ====================================================================== -SKKUserDictionary::SKKUserDictionary() { +SKKUserDictionary::SKKUserDictionary() : updateCount_(0), startOfUpdate_(std::time(0)) { // empty } @@ -528,23 +527,20 @@ // ---------------------------------------------------------------------- void SKKUserDictionary::save(bool force) { - static int updateCount = 0; - static std::time_t startOfUpdate = std::time(0); - // ??????????(SAVE_LIMIT_COUNT ????? 0 ???) - updateCount = (updateCount + 1) % skkdic::SAVE_LIMIT_COUNT; + updateCount_ = (updateCount_ + 1) % skkdic::SAVE_LIMIT_COUNT; // ???????????????- std::time_t elaspedTime = std::time(0) - startOfUpdate; + std::time_t elapsedTime = std::time(0) - startOfUpdate_; // ????????????????????? - if(!force && updateCount != 0 && elaspedTime < skkdic::SAVE_TIMEOUT) { + if(!force && updateCount_ != 0 && elapsedTime < skkdic::SAVE_TIMEOUT) { return; } // ???????????? - updateCount = 0; - startOfUpdate = std::time(0); + updateCount_ = 0; + startOfUpdate_ = std::time(0); // ??????????? std::string tmpPath = path_ + ".tmp"; Index: AquaSKK/SKKDictionary.h diff -u AquaSKK/SKKDictionary.h:1.8 AquaSKK/SKKDictionary.h:1.9 --- AquaSKK/SKKDictionary.h:1.8 Mon Jun 12 23:14:48 2006 +++ AquaSKK/SKKDictionary.h Sat Jul 1 08:44:30 2006 @@ -1,5 +1,5 @@ /* - $Id: SKKDictionary.h,v 1.8 2006/06/12 14:14:48 t-suwa Exp $ + $Id: SKKDictionary.h,v 1.9 2006/06/30 23:44:30 t-suwa Exp $ MacOS X implementation of the SKK input method. @@ -85,6 +85,8 @@ std::string path_; EntryContainer okuriAri_; EntryContainer okuriNasi_; + int updateCount_; + std::time_t startOfUpdate_; void save(bool force = false); From t-suwa @ users.sourceforge.jp Sat Jul 1 08:44:30 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sat, 1 Jul 2006 08:44:30 +0900 Subject: [aquaskk-changes 234] CVS update: AquaSKK/Resources Message-ID: <20060630234430.8BEB42AC054@users.sourceforge.jp> Index: AquaSKK/Resources/config diff -u AquaSKK/Resources/config:1.1 AquaSKK/Resources/config:1.2 --- AquaSKK/Resources/config:1.1 Wed May 17 01:13:11 2006 +++ AquaSKK/Resources/config Sat Jul 1 08:44:30 2006 @@ -1,24 +1,26 @@ -# $Id: config,v 1.1 2006/05/16 16:13:11 t-suwa Exp $ +# $Id: config,v 1.2 2006/06/30 23:44:30 t-suwa Exp $ ### ### default config ### -kana-mode-key "\C-j" toggle-kana-key "q" toggle-katakana-key "\C-q" +kana-mode-key "\C-j" latin-mode-key "l" jisx0208-latin-mode-key "L" abbrev-mode-key "/" -cancel-key "\C-g" kakutei-key "\C-j" -next-kouho-key " " prev-kouho-key "x" -purge-from-jisyo-key "X" +next-kouho-key " " abbrev-prev-key "," abbrev-next-key "." +purge-from-jisyo-key "X" +cancel-key "\C-g" set-henkan-point-key "Q" paste-key "\C-y" +backspace-key "\C-h" +indent-key "\C-i" fix-n true use-eisuu-to-set-henkan-point false From t-suwa @ users.sourceforge.jp Sat Jul 1 09:19:42 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sat, 1 Jul 2006 09:19:42 +0900 Subject: [aquaskk-changes 235] CVS update: AquaSKK Message-ID: <20060701001942.879EC2AC062@users.sourceforge.jp> Index: AquaSKK/ChangeLog diff -u AquaSKK/ChangeLog:1.31 AquaSKK/ChangeLog:1.32 --- AquaSKK/ChangeLog:1.31 Sat Jul 1 08:44:30 2006 +++ AquaSKK/ChangeLog Sat Jul 1 09:19:42 2006 @@ -7,8 +7,10 @@ * Resources/config: backspace-key ? indent-key ???? - * BIM.cpp: SKKCHAR ?????MacCharCode ??????????B?? - ????Ctrl-H ? BACKSPACE ? Ctrl-I ? TAB + * BIM.cpp: SKKChar ?????MacCharCode ??????????B + GetEventParameter(kEventParamKeyMacCharCodes) ?? Ctrl-H ? + kBackspaceCharCode ??Ctrl-I ? kTabCharCode ?????????? + ??????? 2006-06-15 Tomotaka SUWA Index: AquaSKK/Info-AquaSKKInputMethod.plist diff -u AquaSKK/Info-AquaSKKInputMethod.plist:1.8 AquaSKK/Info-AquaSKKInputMethod.plist:1.9 --- AquaSKK/Info-AquaSKKInputMethod.plist:1.8 Thu Jun 15 10:24:32 2006 +++ AquaSKK/Info-AquaSKKInputMethod.plist Sat Jul 1 09:19:42 2006 @@ -19,11 +19,11 @@ CFBundlePackageType thng CFBundleShortVersionString - 3.1 RC1 + 3.1 RC2 CFBundleSignature askk CFBundleVersion - 2006-06-15 + 2006-07-01 CSResourcesFileMapped tsInputMethodIconFileKey Index: AquaSKK/Info-AquaSKKServer.plist diff -u AquaSKK/Info-AquaSKKServer.plist:1.8 AquaSKK/Info-AquaSKKServer.plist:1.9 --- AquaSKK/Info-AquaSKKServer.plist:1.8 Thu Jun 15 10:24:32 2006 +++ AquaSKK/Info-AquaSKKServer.plist Sat Jul 1 09:19:42 2006 @@ -19,11 +19,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 3.1 RC1 + 3.1 RC2 CFBundleSignature askk CFBundleVersion - 2006-06-15 + 2006-07-01 NSMainNibFile Principal NSPrincipalClass From t-suwa @ users.sourceforge.jp Sat Jul 1 11:52:13 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sat, 1 Jul 2006 11:52:13 +0900 Subject: [aquaskk-changes 236] CVS update: htdocs/images Message-ID: <20060701025213.50F2B2AC025@users.sourceforge.jp> Index: htdocs/images/statechart.gnp From t-suwa @ users.sourceforge.jp Sat Jul 1 11:55:24 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sat, 1 Jul 2006 11:55:24 +0900 Subject: [aquaskk-changes 237] CVS update: htdocs/images Message-ID: <20060701025524.8DA1E2AC07E@users.sourceforge.jp> Index: htdocs/images/statechart.gnp Index: htdocs/images/statechart.png From t-suwa @ users.sourceforge.jp Sat Jul 15 09:49:00 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sat, 15 Jul 2006 09:49:00 +0900 Subject: [aquaskk-changes 238] CVS update: AquaSKK Message-ID: <20060715004900.B26392AC026@users.sourceforge.jp> Index: AquaSKK/CandidatesManager.h diff -u AquaSKK/CandidatesManager.h:1.3 AquaSKK/CandidatesManager.h:1.4 --- AquaSKK/CandidatesManager.h:1.3 Wed Nov 9 00:02:24 2005 +++ AquaSKK/CandidatesManager.h Sat Jul 15 09:49:00 2006 @@ -1,10 +1,10 @@ /* - $Id: CandidatesManager.h,v 1.3 2005/11/08 15:02:24 t-suwa Exp $ + $Id: CandidatesManager.h,v 1.4 2006/07/15 00:49:00 t-suwa Exp $ MacOS X implementation of the SKK input method. Copyright (C) 2002 phonohawk - Copyright (C) 2005 Tomotaka SUWA + Copyright (C) 2005-2006 Tomotaka SUWA This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -36,9 +36,7 @@ public: static CandidatesManager& sharedManager(); - unsigned createAndShow(int qd_x, int qd_y, - const CppCFString& candidates_string, - bool showLast = false); + unsigned createAndShow(SInt16 qd_x, SInt16 qd_y, const CppCFString& candidates, bool showLast = false); void windowNext(unsigned int window_id); void windowPrev(unsigned int window_id); void closeWindow(unsigned int window_id); Index: AquaSKK/CandidatesManager.mm diff -u AquaSKK/CandidatesManager.mm:1.5 AquaSKK/CandidatesManager.mm:1.6 --- AquaSKK/CandidatesManager.mm:1.5 Fri May 5 00:27:02 2006 +++ AquaSKK/CandidatesManager.mm Sat Jul 15 09:49:00 2006 @@ -1,5 +1,5 @@ /* -*- objc -*- - $Id: CandidatesManager.mm,v 1.5 2006/05/04 15:27:02 t-suwa Exp $ + $Id: CandidatesManager.mm,v 1.6 2006/07/15 00:49:00 t-suwa Exp $ MacOS X implementation of the SKK input method. @@ -42,9 +42,9 @@ // empty } -unsigned CandidatesManager::createAndShow(int qd_x, int qd_y, const CppCFString& candidates_string, bool showLast) { +unsigned CandidatesManager::createAndShow(SInt16 qd_x, SInt16 qd_y, const CppCFString& candidates, bool showLast) { // NSArray ????????? - std::vector cands_vec = candidates_string.split(SKK_MSG_DELIMITER); + std::vector cands_vec = candidates.split(SKK_MSG_DELIMITER); NSMutableArray* cands_array = [[NSMutableArray alloc] init]; for(std::vector::const_iterator ite = cands_vec.begin(); ite != cands_vec.end(); ++ ite) { [cands_array addObject:(NSString*)ite->decode().getString()]; @@ -66,12 +66,13 @@ CGRect screen = CGDisplayBounds(disp[0]); screen.size.width += screen.origin.x; - // QuickDraw???CoreGraphics????? - NSSize mainscreen_size = [[NSScreen mainScreen] frame].size; + + // QuickDraw ??(???_)? CoreGraphics ??(????)??? + CGRect mainscreen = CGDisplayBounds(CGMainDisplayID()); float cg_x = qd_x; - float cg_y = mainscreen_size.height - qd_y; + float cg_y = mainscreen.size.height - qd_y; - // CWC????? + // CWC ????? CandidatesWindowController* cwc = [[CandidatesWindowController alloc] initWithCandidates:cands_array]; NSSize cwc_size = [[cwc window] frame].size; Index: AquaSKK/ChangeLog diff -u AquaSKK/ChangeLog:1.32 AquaSKK/ChangeLog:1.33 --- AquaSKK/ChangeLog:1.32 Sat Jul 1 09:19:42 2006 +++ AquaSKK/ChangeLog Sat Jul 15 09:49:00 2006 @@ -1,3 +1,12 @@ +2006-07-15 Tomotaka SUWA + + * CandidatesManager.* (CandidatesManager::createAndShow): ???? + ? int ? SInt16 ???B????????????????????? + + * ServerMessageReceiver.mm (ServerMessageReceiver::createCandidatesWindow): + ??????? int ? SInt16 ???B??????????????? + ?????? + 2006-07-01 Tomotaka SUWA * SKKDictionary.cpp: SKK-JISYO.jinmei ?????????????? Index: AquaSKK/ServerMessageReceiver.mm diff -u AquaSKK/ServerMessageReceiver.mm:1.6 AquaSKK/ServerMessageReceiver.mm:1.7 --- AquaSKK/ServerMessageReceiver.mm:1.6 Sat Jun 3 10:23:18 2006 +++ AquaSKK/ServerMessageReceiver.mm Sat Jul 15 09:49:00 2006 @@ -1,5 +1,5 @@ /* -*- objc -*- - $Id: ServerMessageReceiver.mm,v 1.6 2006/06/03 01:23:18 t-suwa Exp $ + $Id: ServerMessageReceiver.mm,v 1.7 2006/07/15 00:49:00 t-suwa Exp $ MacOS X implementation of the SKK input method. @@ -145,13 +145,13 @@ CppCFData ServerMessageReceiver::createCandidatesWindow(const CppCFData& attachment) { // ????????QuickDraw???UniChar??????? - int qd_x = CFSwapInt16BigToHost(attachment.getSInt16(0)); - int qd_y = CFSwapInt16BigToHost(attachment.getSInt16(2)); + SInt16 qd_x = CFSwapInt16BigToHost(attachment.getSInt16(0)); + SInt16 qd_y = CFSwapInt16BigToHost(attachment.getSInt16(2)); int showLast = CFSwapInt16BigToHost(attachment.getSInt16(4)); CppCFString candidates(attachment.subdata(6).getData()); CandidatesManager& cm = CandidatesManager::sharedManager(); - unsigned window_id = cm.createAndShow(qd_x,qd_y,candidates, showLast); + unsigned window_id = cm.createAndShow(qd_x, qd_y, candidates, showLast); CandidatesWindowController* cwc = cm.getWindowController(window_id); unsigned cands_per_frame = [cwc getCandidatesPerFrame]; From t-suwa @ users.sourceforge.jp Sat Jul 15 09:49:00 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sat, 15 Jul 2006 09:49:00 +0900 Subject: [aquaskk-changes 239] CVS update: AquaSKK/Package Message-ID: <20060715004900.D56DA2AC07B@users.sourceforge.jp> Index: AquaSKK/Package/AquaSKK.pmproj From t-suwa @ users.sourceforge.jp Sat Jul 15 09:56:53 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sat, 15 Jul 2006 09:56:53 +0900 Subject: [aquaskk-changes 240] CVS update: AquaSKK Message-ID: <20060715005653.0F96B2AC016@users.sourceforge.jp> Index: AquaSKK/Info-AquaSKKInputMethod.plist diff -u AquaSKK/Info-AquaSKKInputMethod.plist:1.9 AquaSKK/Info-AquaSKKInputMethod.plist:1.10 --- AquaSKK/Info-AquaSKKInputMethod.plist:1.9 Sat Jul 1 09:19:42 2006 +++ AquaSKK/Info-AquaSKKInputMethod.plist Sat Jul 15 09:56:52 2006 @@ -19,11 +19,11 @@ CFBundlePackageType thng CFBundleShortVersionString - 3.1 RC2 + 3.1 CFBundleSignature askk CFBundleVersion - 2006-07-01 + 2006-07-15 CSResourcesFileMapped tsInputMethodIconFileKey Index: AquaSKK/Info-AquaSKKServer.plist diff -u AquaSKK/Info-AquaSKKServer.plist:1.9 AquaSKK/Info-AquaSKKServer.plist:1.10 --- AquaSKK/Info-AquaSKKServer.plist:1.9 Sat Jul 1 09:19:42 2006 +++ AquaSKK/Info-AquaSKKServer.plist Sat Jul 15 09:56:52 2006 @@ -19,11 +19,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 3.1 RC2 + 3.1 CFBundleSignature askk CFBundleVersion - 2006-07-01 + 2006-07-15 NSMainNibFile Principal NSPrincipalClass From t-suwa @ users.sourceforge.jp Sat Jul 15 18:28:36 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sat, 15 Jul 2006 18:28:36 +0900 Subject: [aquaskk-changes 241] CVS update: htdocs Message-ID: <20060715092836.BEA7E2AC017@users.sourceforge.jp> Index: htdocs/index.html diff -u htdocs/index.html:1.17 htdocs/index.html:1.18 --- htdocs/index.html:1.17 Thu Apr 27 00:03:24 2006 +++ htdocs/index.html Sat Jul 15 18:28:36 2006 @@ -41,6 +41,8 @@

最近の出来事

    +
  • 2006/07/15 - AquaSKK 3.1 リリース
    + 数値変換を実装しました。KeyBindings との親和性も向上した他、バグ修正も反映してあります。
  • 2006/04/08 - AquaSKK 3.0 リリース
    Intel Mac を正式にサポート。複数辞書にも対応し、使い勝手を向上させました。
  • 2005/12/19 - AquaSKK 2.5 リリース
    @@ -49,9 +51,9 @@ Safari/Camino で落ちる頻度を減らしました。候補ウィンドウのフォントも変更可能になっています。
  • 2005/09/23 - AquaSKK 2.3 リリース
    候補ウィンドウのフォントサイズを変更できるようにしました。
  • + @@ -61,13 +63,18 @@ -
  • こんな機能もあります
  • +

    宣伝

    + +

    スクリーンショット

    @@ -93,7 +100,7 @@ From t-suwa @ users.sourceforge.jp Sat Jul 15 18:29:53 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sat, 15 Jul 2006 18:29:53 +0900 Subject: [aquaskk-changes 242] CVS update: htdocs Message-ID: <20060715092953.533232AC017@users.sourceforge.jp> Index: htdocs/index.html diff -u htdocs/index.html:1.18 htdocs/index.html:1.19 --- htdocs/index.html:1.18 Sat Jul 15 18:28:36 2006 +++ htdocs/index.html Sat Jul 15 18:29:53 2006 @@ -42,7 +42,7 @@
    • 2006/07/15 - AquaSKK 3.1 リリース
      - 数値変換を実装しました。KeyBindings との親和性も向上した他、バグ修正も反映してあります。
    • + 数値変換を実装しました。KeyBindings との親和性が向上した他、バグ修正も反映してあります。
    • 2006/04/08 - AquaSKK 3.0 リリース
      Intel Mac を正式にサポート。複数辞書にも対応し、使い勝手を向上させました。
    • 2005/12/19 - AquaSKK 2.5 リリース
      @@ -100,7 +100,7 @@ From t-suwa @ users.sourceforge.jp Sat Jul 15 18:31:05 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sat, 15 Jul 2006 18:31:05 +0900 Subject: [aquaskk-changes 243] CVS update: htdocs Message-ID: <20060715093105.D2F9B2AC0BF@users.sourceforge.jp> Index: htdocs/index.html diff -u htdocs/index.html:1.19 htdocs/index.html:1.20 --- htdocs/index.html:1.19 Sat Jul 15 18:29:53 2006 +++ htdocs/index.html Sat Jul 15 18:31:05 2006 @@ -64,17 +64,17 @@

      宣伝

      スクリーンショット

      @@ -100,7 +100,7 @@ From t-suwa @ users.sourceforge.jp Sun Jul 16 09:29:58 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sun, 16 Jul 2006 09:29:58 +0900 Subject: [aquaskk-changes 244] CVS update: htdocs/images Message-ID: <20060716002958.D4E792AC061@users.sourceforge.jp> Index: htdocs/images/statechart.png From t-suwa @ users.sourceforge.jp Sat Jul 22 09:27:45 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sat, 22 Jul 2006 09:27:45 +0900 Subject: [aquaskk-changes 245] CVS update: htdocs/images Message-ID: <20060722002745.105CE2AC343@users.sourceforge.jp> Index: htdocs/images/inputmode_hierarchy.png From t-suwa @ users.sourceforge.jp Sat Jul 22 10:33:11 2006 From: t-suwa @ users.sourceforge.jp (Tomotaka SUWA) Date: Sat, 22 Jul 2006 10:33:11 +0900 Subject: [aquaskk-changes 246] CVS update: htdocs/images Message-ID: <20060722013311.D97702AC18F@users.sourceforge.jp> Index: htdocs/images/statechart.png