mirror of
https://github.com/mii443/AzooKeyKanaKanjiConverter.git
synced 2025-08-22 15:05:26 +00:00
Move to root
This commit is contained in:
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
.build
|
||||
DerivedData
|
||||
/.previous-build
|
||||
xcuserdata
|
||||
.DS_Store
|
||||
*~
|
||||
\#*
|
||||
.\#*
|
||||
.*.sw[nop]
|
||||
*.xcscmblueprint
|
||||
/default.profraw
|
||||
*.xcodeproj
|
||||
Utilities/Docker/*.tar.gz
|
||||
.swiftpm
|
||||
Package.resolved
|
||||
/build
|
||||
*.pyc
|
||||
.docc-build
|
||||
.vscode
|
10
AzooKeyCore/.gitignore
vendored
10
AzooKeyCore/.gitignore
vendored
@ -1,10 +0,0 @@
|
||||
.DS_Store
|
||||
/.build
|
||||
/Packages
|
||||
/*.xcodeproj
|
||||
xcuserdata/
|
||||
DerivedData/
|
||||
.swiftpm/config/registries.json
|
||||
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
|
||||
.netrc
|
||||
Package.resolved
|
@ -1,53 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1430"
|
||||
version = "1.7">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
buildImplicitDependencies = "YES">
|
||||
</BuildAction>
|
||||
<TestAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
shouldAutocreateTestPlan = "YES">
|
||||
<Testables>
|
||||
<TestableReference
|
||||
skipped = "NO">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "KanaKanjiConverterModuleTests"
|
||||
BuildableName = "KanaKanjiConverterModuleTests"
|
||||
BlueprintName = "KanaKanjiConverterModuleTests"
|
||||
ReferencedContainer = "container:">
|
||||
</BuildableReference>
|
||||
</TestableReference>
|
||||
</Testables>
|
||||
</TestAction>
|
||||
<LaunchAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
launchStyle = "0"
|
||||
useCustomWorkingDirectory = "NO"
|
||||
ignoresPersistentStateOnLaunch = "NO"
|
||||
debugDocumentVersioning = "YES"
|
||||
debugServiceExtension = "internal"
|
||||
allowLocationSimulation = "YES">
|
||||
</LaunchAction>
|
||||
<ProfileAction
|
||||
buildConfiguration = "Release"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
savedToolIdentifier = ""
|
||||
useCustomWorkingDirectory = "NO"
|
||||
debugDocumentVersioning = "YES">
|
||||
</ProfileAction>
|
||||
<AnalyzeAction
|
||||
buildConfiguration = "Debug">
|
||||
</AnalyzeAction>
|
||||
<ArchiveAction
|
||||
buildConfiguration = "Release"
|
||||
revealArchiveInOrganizer = "YES">
|
||||
</ArchiveAction>
|
||||
</Scheme>
|
@ -12,7 +12,7 @@ let swiftSettings: [SwiftSetting] = [
|
||||
.enableUpcomingFeature("StrictConcurrency")
|
||||
]
|
||||
let package = Package(
|
||||
name: "AzooKeyCore",
|
||||
name: "AzooKeyKanakanjiConverter",
|
||||
platforms: [.iOS(.v14), .macOS(.v11)],
|
||||
products: [
|
||||
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
@ -1,13 +1,10 @@
|
||||
# AzooKeyCore
|
||||
# AzooKeyKanakanjiConverter
|
||||
|
||||
azooKeyの開発に必要なモジュールをまとめたライブラリです。
|
||||
azooKeyのかな漢字変換モジュールを切り出したライブラリです。
|
||||
|
||||
## SwiftUtils
|
||||
Swift一般に利用できるユーティリティのモジュールです。
|
||||
|
||||
## SwiftUIUtils
|
||||
SwiftUIで利用できるユーティリティのモジュールです。
|
||||
|
||||
## KanaKanjiConverterModule
|
||||
かな漢字変換を受け持つモジュールです。
|
||||
|
||||
@ -48,8 +45,3 @@ print(results.mainResults.first!.text) // azooKeyは新時代のキーボード
|
||||
- ...
|
||||
- mm.binary
|
||||
```
|
||||
|
||||
|
||||
## KeyboardThemes
|
||||
|
||||
Keyboardの着せ替えデータ(`ThemeData`)に関するモジュールです。
|
Reference in New Issue
Block a user