vChewing-macOS/Source
Lukhnos Liu 94b80c42e3 Fix potential leak of NSURLConnection. Fixes #69. 2012-10-23 20:39:13 -07:00
..
CandidateUI Edit comment. 2012-03-29 21:07:45 -07:00
Engine Remove SimpleLM. 2012-09-10 23:27:00 -07:00
IconMaker Update IconMaker. 2012-09-12 09:34:42 -07:00
Images Update application icon set. 2012-09-12 09:34:51 -07:00
Installer Bump version to 0.9.5. 2012-09-18 09:04:06 -07:00
Tools consider the situation of 10.8 2012-07-30 21:06:49 -07:00
en.lproj Support customizable alphanumeric keyboard layout. 2012-09-09 12:36:04 -07:00
zh-Hant.lproj Fix path issuses in the project file. 2012-09-11 21:54:35 -07:00
AppDelegate.h Fix potential leak of NSURLConnection. Fixes #69. 2012-10-23 20:39:13 -07:00
AppDelegate.m Fix potential leak of NSURLConnection. Fixes #69. 2012-10-23 20:39:13 -07:00
InputMethodController.h Remove SimpleLM. 2012-09-10 23:27:00 -07:00
InputMethodController.mm Support Home/End/Del in input buffer, fixes #63. 2012-09-18 22:34:00 -07:00
McBopomofo-Info.plist Bump version to 0.9.5. 2012-09-18 09:04:06 -07:00
McBopomofo-Prefix.pch Project reorganization. 2012-09-08 19:28:15 -07:00
OVInputSourceHelper.h Correctly enable all input modes when upgrading. 2012-09-11 21:38:59 -07:00
OVInputSourceHelper.m Correctly enable all input modes when upgrading. 2012-09-11 21:38:59 -07:00
PreferencesWindowController.h Support customizable alphanumeric keyboard layout. 2012-09-09 12:36:04 -07:00
PreferencesWindowController.m Support customizable alphanumeric keyboard layout. 2012-09-09 12:36:04 -07:00
README reorganizing the layout 2012-02-26 16:30:59 -08:00
UpdateNotificationController.h Tab conversion into 4 spaces 2012-02-26 20:53:51 -08:00
UpdateNotificationController.m Tab conversion into 4 spaces 2012-02-26 20:53:51 -08:00
main.m Ignore input mode enable issues. 2012-09-11 22:04:55 -07:00

README

.
├── AppDelegate.h
├── AppDelegate.m
├── Data
│   ├── BPMFBase.txt
│   ├── BPMFMappings.txt
│   ├── BPMFPunctuations.txt
│   ├── Makefile
│   ├── README
│   ├── bin
│   │   ├── BIG5toUTF8.pl
│   │   ├── Makefile
│   │   ├── README
│   │   ├── build4wlist.bash
│   │   ├── buildFreq.bash
│   │   ├── cook.rb
│   │   ├── count.occurrence.c
│   │   ├── count.occurrence.pl
│   │   ├── count.occurrence.py
│   │   ├── countphrase.bash
│   │   ├── filter.bash
│   │   ├── randomShuffle.bash
│   │   ├── typocorrection.bash
│   │   └── utf8length.pl
│   ├── heterophony1.list
│   ├── heterophony2.list
│   ├── heterophony3.list
│   └── phrase.occ
├── Engine
│   ├── Gramambular
│   │   ├── Bigram.h
│   │   ├── BlockReadingBuilder.h
│   │   ├── Gramambular.h
│   │   ├── Grid.h
│   │   ├── KeyValuePair.h
│   │   ├── LanguageModel.h
│   │   ├── Node.h
│   │   ├── NodeAnchor.h
│   │   ├── Span.h
│   │   ├── Unigram.h
│   │   └── Walker.h
│   ├── Mandarin
│   │   ├── Mandarin.cpp
│   │   └── Mandarin.h
│   ├── OpenVanilla
│   │   ├── OVAroundFilter.h
│   │   ├── OVBase.h
│   │   ├── OVBenchmark.h
│   │   ├── OVCINDataTable.h
│   │   ├── OVCINDatabaseService.h
│   │   ├── OVCINToSQLiteConvertor.h
│   │   ├── OVCandidateService.h
│   │   ├── OVDatabaseService.h
│   │   ├── OVDateTimeHelper.h
│   │   ├── OVEncodingService.h
│   │   ├── OVEventHandlingContext.h
│   │   ├── OVException.h
│   │   ├── OVFileHelper.h
│   │   ├── OVFrameworkInfo.h
│   │   ├── OVInputMethod.h
│   │   ├── OVKey.h
│   │   ├── OVKeyPreprocessor.h
│   │   ├── OVKeyValueMap.h
│   │   ├── OVLoaderBase.h
│   │   ├── OVLoaderService.h
│   │   ├── OVLocalization.h
│   │   ├── OVModule.h
│   │   ├── OVModulePackage.h
│   │   ├── OVOutputFilter.h
│   │   ├── OVPathInfo.h
│   │   ├── OVSQLiteDatabaseService.h
│   │   ├── OVSQLiteWrapper.h
│   │   ├── OVStringHelper.h
│   │   ├── OVTextBuffer.h
│   │   ├── OVUTF8Helper.h
│   │   ├── OVWildcard.h
│   │   └── OpenVanilla.h
│   ├── SimpleLM.cpp
│   └── SimpleLM.h
├── English.lproj
│   ├── InfoPlist.strings
│   ├── Localizable.strings
│   ├── MainMenu.xib
│   └── preferences.xib
├── IconMaker
│   ├── AppIconRendererView.h
│   ├── AppIconRendererView.m
│   ├── IconMaker-Info.plist
│   ├── IconMaker-Prefix.pch
│   ├── IconMakerAppDelegate.h
│   ├── IconMakerAppDelegate.m
│   ├── ImageZoomInView.h
│   ├── ImageZoomInView.m
│   ├── TISIconRendererView.h
│   ├── TISIconRendererView.m
│   ├── en.lproj
│   │   ├── Credits.rtf
│   │   ├── InfoPlist.strings
│   │   └── MainMenu.xib
│   └── main.m
├── Images
│   ├── Bopomofo.tiff
│   ├── BopomofoSelected.tiff
│   ├── Lettuce.icns
│   ├── favicon.ico
│   ├── favicon.png
│   └── favicon.tiff
├── InputMethodController.h
├── InputMethodController.mm
├── Lettuce.xcodeproj
│   └── project.pbxproj
├── Makefile
├── McBopomofo-Info.plist
├── McBopomofo-Prefix.pch
├── OVInputSourceHelper.h
├── OVInputSourceHelper.m
├── PreferencesWindowController.h
├── PreferencesWindowController.m
├── README
├── Tools
│   ├── genRTF.py
│   └── tistool.m
├── UpdateNotificationController.h
├── UpdateNotificationController.m
├── UpdateNotificationController.xib
├── main.m
└── zh-Hant.lproj
    ├── InfoPlist.strings
    ├── Localizable.strings
    └── preferences.xib

13 directories, 116 files