Skip to content
This repository was archived by the owner on Dec 17, 2023. It is now read-only.

Commit 541fd32

Browse files
committed
Bug fixes
1 parent 9392bb2 commit 541fd32

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+3156
-3134
lines changed

.env.sample

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
API_KEY=google maps api key

.gitignore

Lines changed: 72 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,72 @@
1-
# Miscellaneous
2-
*.class
3-
*.log
4-
*.pyc
5-
*.swp
6-
.DS_Store
7-
.atom/
8-
.buildlog/
9-
.history
10-
.svn/
11-
12-
# IntelliJ related
13-
*.iml
14-
*.ipr
15-
*.iws
16-
.idea/
17-
18-
# Visual Studio Code related
19-
.vscode/
20-
*.code-workspace
21-
22-
# Flutter/Dart/Pub related
23-
**/doc/api/
24-
.dart_tool/
25-
.flutter-plugins
26-
.packages
27-
.pub-cache/
28-
.pub/
29-
/build/
30-
31-
# Android related
32-
**/android/**/gradle-wrapper.jar
33-
**/android/.gradle
34-
**/android/captures/
35-
**/android/gradlew
36-
**/android/gradlew.bat
37-
**/android/local.properties
38-
**/android/**/GeneratedPluginRegistrant.java
39-
40-
# iOS/XCode related
41-
**/ios/**/*.mode1v3
42-
**/ios/**/*.mode2v3
43-
**/ios/**/*.moved-aside
44-
**/ios/**/*.pbxuser
45-
**/ios/**/*.perspectivev3
46-
**/ios/**/*sync/
47-
**/ios/**/.sconsign.dblite
48-
**/ios/**/.tags*
49-
**/ios/**/.vagrant/
50-
**/ios/**/DerivedData/
51-
**/ios/**/Icon?
52-
**/ios/**/Pods/
53-
**/ios/**/.symlinks/
54-
**/ios/**/profile
55-
**/ios/**/xcuserdata
56-
**/ios/.generated/
57-
**/ios/Flutter/App.framework
58-
**/ios/Flutter/Flutter.framework
59-
**/ios/Flutter/Generated.xcconfig
60-
**/ios/Flutter/app.flx
61-
**/ios/Flutter/app.zip
62-
**/ios/Flutter/flutter_assets/
63-
**/ios/ServiceDefinitions.json
64-
**/ios/Runner/GeneratedPluginRegistrant.*
65-
66-
# Exceptions to above rules.
67-
!**/ios/**/default.mode1v3
68-
!**/ios/**/default.mode2v3
69-
!**/ios/**/default.pbxuser
70-
!**/ios/**/default.perspectivev3
71-
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
.env
12+
13+
# IntelliJ related
14+
*.iml
15+
*.ipr
16+
*.iws
17+
.idea/
18+
19+
# Visual Studio Code related
20+
.vscode/
21+
*.code-workspace
22+
23+
# Flutter/Dart/Pub related
24+
**/doc/api/
25+
.dart_tool/
26+
.flutter-plugins
27+
.packages
28+
.pub-cache/
29+
.pub/
30+
/build/
31+
32+
# Android related
33+
**/android/**/gradle-wrapper.jar
34+
**/android/.gradle
35+
**/android/captures/
36+
**/android/gradlew
37+
**/android/gradlew.bat
38+
**/android/local.properties
39+
**/android/**/GeneratedPluginRegistrant.java
40+
41+
# iOS/XCode related
42+
**/ios/**/*.mode1v3
43+
**/ios/**/*.mode2v3
44+
**/ios/**/*.moved-aside
45+
**/ios/**/*.pbxuser
46+
**/ios/**/*.perspectivev3
47+
**/ios/**/*sync/
48+
**/ios/**/.sconsign.dblite
49+
**/ios/**/.tags*
50+
**/ios/**/.vagrant/
51+
**/ios/**/DerivedData/
52+
**/ios/**/Icon?
53+
**/ios/**/Pods/
54+
**/ios/**/.symlinks/
55+
**/ios/**/profile
56+
**/ios/**/xcuserdata
57+
**/ios/.generated/
58+
**/ios/Flutter/App.framework
59+
**/ios/Flutter/Flutter.framework
60+
**/ios/Flutter/Generated.xcconfig
61+
**/ios/Flutter/app.flx
62+
**/ios/Flutter/app.zip
63+
**/ios/Flutter/flutter_assets/
64+
**/ios/ServiceDefinitions.json
65+
**/ios/Runner/GeneratedPluginRegistrant.*
66+
67+
# Exceptions to above rules.
68+
!**/ios/**/default.mode1v3
69+
!**/ios/**/default.mode2v3
70+
!**/ios/**/default.pbxuser
71+
!**/ios/**/default.perspectivev3
72+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

.metadata

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# This file tracks properties of this Flutter project.
2-
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3-
#
4-
# This file should be version controlled and should not be manually edited.
5-
6-
version:
7-
revision: 7a4c33425ddd78c54aba07d86f3f9a4a0051769b
8-
channel: stable
9-
10-
project_type: app
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: 7a4c33425ddd78c54aba07d86f3f9a4a0051769b
8+
channel: stable
9+
10+
project_type: app

README.md

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,57 @@
1-
# MHD Virtual Table
2-
3-
App with list of virtual tables for MHD in Bratislava.
4-
5-
## TODO
6-
7-
Main
8-
- ios version
9-
10-
Add nearme
11-
12-
- cache ✔
13-
- speed (some way :D) ✔
14-
- on changed position (maybe) ✘ -> used button refresh ✔
15-
- own api
16-
17-
Better permission check
18-
19-
- if denied alert ✔
20-
- cut nearme ✔ and actual availability ✔
21-
22-
Offline mode
23-
24-
- load cached stops & nearme ✔
25-
- alert ✔
26-
27-
Trip planner
28-
29-
- add input like in AllStops ✔
30-
- add direction search via Google Maps Direction API ✔
31-
- show results ✔
32-
- add walking ✔
33-
- fix top margin ✔
34-
- add time date ✔
35-
- add margins ✔
36-
- add swap button maybe ✔
37-
- add actual position use ✔
38-
- favourites in list ✔
39-
- gmaps copyright ✔
40-
- loading when fetching ✔
41-
- offline alert ✔
42-
- favourites
43-
- multiple APIs
44-
45-
Final tuches
46-
47-
- add settings ✔
48-
- add dark mode ✔
49-
- add sk locatization ✔
50-
- add skin changing ✔
51-
- add some animations
52-
- add legal notice
53-
- agree with imhd rights
54-
- agree with gmaps rights
55-
- agree with licence
56-
- cloud save favourites like duckduckgo
57-
1+
# MHD Virtual Table
2+
3+
App with list of virtual tables for MHD in Bratislava.
4+
5+
## TODO
6+
7+
Main
8+
- ios version
9+
10+
Add nearme
11+
12+
- cache ✔
13+
- speed (some way :D) ✔
14+
- on changed position (maybe) ✘ -> used button refresh ✔
15+
- own api
16+
17+
Better permission check
18+
19+
- if denied alert ✔
20+
- cut nearme ✔ and actual availability ✔
21+
22+
Offline mode
23+
24+
- load cached stops & nearme ✔
25+
- alert ✔
26+
27+
Trip planner
28+
29+
- add input like in AllStops ✔
30+
- add direction search via Google Maps Direction API ✔
31+
- show results ✔
32+
- add walking ✔
33+
- fix top margin ✔
34+
- add time date ✔
35+
- add margins ✔
36+
- add swap button maybe ✔
37+
- add actual position use ✔
38+
- favourites in list ✔
39+
- gmaps copyright ✔
40+
- loading when fetching ✔
41+
- offline alert ✔
42+
- favourites
43+
- multiple APIs
44+
45+
Final tuches
46+
47+
- add settings ✔
48+
- add dark mode ✔
49+
- add sk locatization ✔
50+
- add skin changing ✔
51+
- add some animations
52+
- add legal notice
53+
- agree with imhd rights
54+
- agree with gmaps rights
55+
- agree with licence
56+
- cloud save favourites like duckduckgo
57+

android/.project

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<projectDescription>
3-
<name>android</name>
4-
<comment>Project android created by Buildship.</comment>
5-
<projects>
6-
</projects>
7-
<buildSpec>
8-
<buildCommand>
9-
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
10-
<arguments>
11-
</arguments>
12-
</buildCommand>
13-
</buildSpec>
14-
<natures>
15-
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
16-
</natures>
17-
</projectDescription>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>android</name>
4+
<comment>Project android created by Buildship.</comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
16+
</natures>
17+
</projectDescription>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
connection.project.dir=
2-
eclipse.preferences.version=1
1+
connection.project.dir=
2+
eclipse.preferences.version=1

android/app/.classpath

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<classpath>
3-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
4-
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
5-
<classpathentry kind="output" path="bin/default"/>
6-
</classpath>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
4+
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
5+
<classpathentry kind="output" path="bin/default"/>
6+
</classpath>

android/app/.project

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<projectDescription>
3-
<name>app</name>
4-
<comment>Project app created by Buildship.</comment>
5-
<projects>
6-
</projects>
7-
<buildSpec>
8-
<buildCommand>
9-
<name>org.eclipse.jdt.core.javabuilder</name>
10-
<arguments>
11-
</arguments>
12-
</buildCommand>
13-
<buildCommand>
14-
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
15-
<arguments>
16-
</arguments>
17-
</buildCommand>
18-
</buildSpec>
19-
<natures>
20-
<nature>org.eclipse.jdt.core.javanature</nature>
21-
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
22-
</natures>
23-
</projectDescription>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>app</name>
4+
<comment>Project app created by Buildship.</comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
22+
</natures>
23+
</projectDescription>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
connection.project.dir=..
2-
eclipse.preferences.version=1
1+
connection.project.dir=..
2+
eclipse.preferences.version=1

0 commit comments

Comments
 (0)