Move to root

This commit is contained in:
ensan
2023-07-23 00:34:27 +09:00
parent 6c0efe4d92
commit 98bc180c17
85 changed files with 22 additions and 74 deletions

19
.gitignore vendored Normal file
View 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

View File

@ -1,10 +0,0 @@
.DS_Store
/.build
/Packages
/*.xcodeproj
xcuserdata/
DerivedData/
.swiftpm/config/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
Package.resolved

View File

@ -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>

View File

@ -12,7 +12,7 @@ let swiftSettings: [SwiftSetting] = [
.enableUpcomingFeature("StrictConcurrency") .enableUpcomingFeature("StrictConcurrency")
] ]
let package = Package( let package = Package(
name: "AzooKeyCore", name: "AzooKeyKanakanjiConverter",
platforms: [.iOS(.v14), .macOS(.v11)], platforms: [.iOS(.v14), .macOS(.v11)],
products: [ products: [
// Products define the executables and libraries a package produces, and make them visible to other packages. // Products define the executables and libraries a package produces, and make them visible to other packages.

View File

@ -1,13 +1,10 @@
# AzooKeyCore # AzooKeyKanakanjiConverter
azooKeyの開発に必要なモジュールをまとめたライブラリです。 azooKeyのかな漢字変換モジュールを切り出したライブラリです。
## SwiftUtils ## SwiftUtils
Swift一般に利用できるユーティリティのモジュールです。 Swift一般に利用できるユーティリティのモジュールです。
## SwiftUIUtils
SwiftUIで利用できるユーティリティのモジュールです。
## KanaKanjiConverterModule ## KanaKanjiConverterModule
かな漢字変換を受け持つモジュールです。 かな漢字変換を受け持つモジュールです。
@ -48,8 +45,3 @@ print(results.mainResults.first!.text) // azooKeyは新時代のキーボード
- ... - ...
- mm.binary - mm.binary
``` ```
## KeyboardThemes
Keyboardの着せ替えデータ(`ThemeData`)に関するモジュールです。