Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
24 changes: 12 additions & 12 deletions HackIllinois/Assets.xcassets/AppIcon.appiconset/Contents.json
Original file line number Diff line number Diff line change
@@ -1,67 +1,67 @@
{
"images" : [
{
"filename" : "iPhone Notifications 20pt @2x.png",
"filename" : "favicon.png",
"idiom" : "iphone",
"scale" : "2x",
"size" : "20x20"
},
{
"filename" : "iPhone Notifications 20pt @3x.png",
"filename" : "favicon 1.png",
"idiom" : "iphone",
"scale" : "3x",
"size" : "20x20"
},
{
"filename" : "iPhone Settings 29x29pt @1x.png",
"filename" : "favicon (1).png",
"idiom" : "iphone",
"scale" : "1x",
"size" : "29x29"
},
{
"filename" : "iPhone Settings 29x29pt @2x.png",
"filename" : "favicon 2.png",
"idiom" : "iphone",
"scale" : "2x",
"size" : "29x29"
},
{
"filename" : "iPhone Settings 29x29pt @ 3x.png",
"filename" : "favicon (1) 1.png",
"idiom" : "iphone",
"scale" : "3x",
"size" : "29x29"
},
{
"filename" : "iPhone Spotlight 40pt @ 2x.png",
"filename" : "favicon 3.png",
"idiom" : "iphone",
"scale" : "2x",
"size" : "40x40"
},
{
"filename" : "iPhone Spotlight 40pt @ 3x.png",
"filename" : "favicon (1) 2.png",
"idiom" : "iphone",
"scale" : "3x",
"size" : "40x40"
},
{
"filename" : "iPhone App iOS 5,6 57pt @ 1x.png",
"filename" : "favicon 4.png",
"idiom" : "iphone",
"scale" : "1x",
"size" : "57x57"
},
{
"filename" : "iPhone App iOS 5,6 57pt @ 2x.png",
"filename" : "favicon (1) 3.png",
"idiom" : "iphone",
"scale" : "2x",
"size" : "57x57"
},
{
"filename" : "iPhone App 60pt @ 2x.png",
"filename" : "favicon 5.png",
"idiom" : "iphone",
"scale" : "2x",
"size" : "60x60"
},
{
"filename" : "iPhone App 60pt @ 3x.png",
"filename" : "favicon (1) 4.png",
"idiom" : "iphone",
"scale" : "3x",
"size" : "60x60"
Expand Down Expand Up @@ -145,7 +145,7 @@
"size" : "83.5x83.5"
},
{
"filename" : "App Store iOS.png",
"filename" : "favicon 6.png",
"idiom" : "ios-marketing",
"scale" : "1x",
"size" : "1024x1024"
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
8 changes: 4 additions & 4 deletions HackIllinois/ViewControllers/HIScheduleViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ extension HIScheduleViewController {
super.loadView()

let items = dataStore.map { $0.displayText }
segmentedControl = HIScheduleSegmentedControl(titles: items, nums: [23, 24, 25])
segmentedControl = HIScheduleSegmentedControl(titles: items, nums: [28, 1, 2])
segmentedControl.addTarget(self, action: #selector(didSelectTab(_:)), for: .valueChanged)
segmentedControl.translatesAutoresizingMaskIntoConstraints = false
view.addSubview(segmentedControl)
Expand Down Expand Up @@ -443,11 +443,11 @@ extension HIScheduleViewController {
let calendar = Calendar.current
let dayComponent = calendar.component(.day, from: dateString)
var curr_idx = segmentedControl.selectedIndex
if curr_idx == 0 && dayComponent != 23 {
if curr_idx == 0 && dayComponent != 28 {
continue
} else if curr_idx == 1 && dayComponent != 24 {
} else if curr_idx == 1 && dayComponent != 1 {
continue
} else if curr_idx == 2 && dayComponent != 25 {
} else if curr_idx == 2 && dayComponent != 2 {
continue
}
// Set fixed width and height for the container view
Expand Down