Skip to content

Commit

Permalink
🔖 v1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nshhhin committed Feb 19, 2021
1 parent 616d796 commit 731021e
Show file tree
Hide file tree
Showing 189 changed files with 552 additions and 39,945 deletions.
317 changes: 173 additions & 144 deletions Otofuda-iOS.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

98 changes: 98 additions & 0 deletions Otofuda-iOS.xcodeproj/xcshareddata/xcschemes/Otofuda-iOS.xcscheme
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1230"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "589460D022852E9500319032"
BuildableName = "&#x97f3;&#x672d;.app"
BlueprintName = "Otofuda-iOS"
ReferencedContainer = "container:Otofuda-iOS.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "F308116F2336535C009E7726"
BuildableName = "Otofuda-iOSTests.xctest"
BlueprintName = "Otofuda-iOSTests"
ReferencedContainer = "container:Otofuda-iOS.xcodeproj">
</BuildableReference>
</TestableReference>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "F308117D2336536F009E7726"
BuildableName = "Otofuda-iOSUITests.xctest"
BlueprintName = "Otofuda-iOSUITests"
ReferencedContainer = "container:Otofuda-iOS.xcodeproj">
</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">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "589460D022852E9500319032"
BuildableName = "&#x97f3;&#x672d;.app"
BlueprintName = "Otofuda-iOS"
ReferencedContainer = "container:Otofuda-iOS.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "589460D022852E9500319032"
BuildableName = "&#x97f3;&#x672d;.app"
BlueprintName = "Otofuda-iOS"
ReferencedContainer = "container:Otofuda-iOS.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
10 changes: 0 additions & 10 deletions Otofuda-iOS.xcworkspace/contents.xcworkspacedata

This file was deleted.

8 changes: 0 additions & 8 deletions Otofuda-iOS.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

This file was deleted.

5 changes: 3 additions & 2 deletions Otofuda-iOS/src/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
import Foundation
import UIKit

var CARD_CLM_COUNT = 4
var CARD_ROW_COUNT = 4
var CARD_CLM_COUNT = 2
var CARD_ROW_COUNT = 2
var CARD_COUNT_STRING = "2x2"
var CARD_MAX_COUNT = CARD_CLM_COUNT * CARD_ROW_COUNT
let CARD_LAYOUT_MARGIN: CGFloat = 5.0

Expand Down
8 changes: 8 additions & 0 deletions Otofuda-iOS/src/Utility/Models/CardCountMode.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

import Foundation

enum CardCountMode: String {
case twoAndTow = "2x2"
case threeAndThree = "3x3"
case fourAndFour = "4x4"
}
3 changes: 2 additions & 1 deletion Otofuda-iOS/src/Utility/Models/Room.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ struct Room {
var mode: Dictionary<String, String> = [
"playback": PlaybackMode.intro.rawValue,
"score": ScoreMode.normal.rawValue,
"usingMusic": UsingMusicMode.preset.rawValue
"usingMusic": UsingMusicMode.preset.rawValue,
"cardCount": CARD_COUNT_STRING
]

init(name: String) {
Expand Down
Loading

0 comments on commit 731021e

Please sign in to comment.