Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
1
1weather
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dmitriy Stepanets
1weather
Commits
8f30fea7
Commit
8f30fea7
authored
Apr 27, 2021
by
Dmitriy Stepanets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated pods
parent
f5537347
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
2 deletions
+19
-2
Podfile.lock
+1
-1
Pods/Manifest.lock
+1
-1
Pods/Swarm/Swarm/SwarmOverlay.swift
+17
-0
No files found.
Podfile.lock
View file @
8f30fea7
...
...
@@ -228,7 +228,7 @@ CHECKOUT OPTIONS:
:commit: ceb7ba910a35973cbcd41c73a62be6305aed4d13
:git: https://github.com/StepanetsDmtry/Cirque.git
Swarm:
:commit:
461fe863e8ac2963fd16cbd109620a68e1931103
:commit:
da293fad110eb426679bfe0e4a7db709e37b278f
:git: "git@gitlab.pinsightmedia.com:oneweather/wdt-skywisetilekit-ios.git"
SPEC CHECKSUMS:
...
...
Pods/Manifest.lock
View file @
8f30fea7
...
...
@@ -228,7 +228,7 @@ CHECKOUT OPTIONS:
:commit: ceb7ba910a35973cbcd41c73a62be6305aed4d13
:git: https://github.com/StepanetsDmtry/Cirque.git
Swarm:
:commit:
461fe863e8ac2963fd16cbd109620a68e1931103
:commit:
da293fad110eb426679bfe0e4a7db709e37b278f
:git: "git@gitlab.pinsightmedia.com:oneweather/wdt-skywisetilekit-ios.git"
SPEC CHECKSUMS:
...
...
Pods/Swarm/Swarm/SwarmOverlay.swift
View file @
8f30fea7
...
...
@@ -352,6 +352,23 @@ extension SwarmOverlay {
index
=
loopTimes
.
count
-
1
}
}
public
func
setValidTime
(
date
:
Date
)
{
let
dateString
=
dateFormatter
.
string
(
from
:
date
)
if
let
validTimes
=
validTimes
as?
[
String
:
AnyObject
]
{
let
dates
=
validTimes
.
map
{
$0
.
value
}
.
first
as?
[
String
]
if
let
stringArray
=
dates
{
guard
let
index
=
(
stringArray
.
firstIndex
{
$0
==
dateString
})
else
{
return
}
if
index
>=
loopTimes
.
count
{
self
.
index
=
loopTimes
.
count
-
1
}
else
{
self
.
index
=
index
}
}
}
}
public
func
pauseForMove
()
{
guard
animating
else
{
return
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment