ios/App/App/capacitor.config.json
Прегледај датотеку
@@ -0,0 +1,9 @@
1
+{
2
+	"appId": "io.ionic.starter",
3
+	"appName": "Tune2Win",
4
+	"webDir": "www",
5
+	"bundledWebRuntime": false,
6
+	"server": {
7
+		"url": "http://192.168.1.38:8100"
8
+	}
9
+}

+ 14 - 0
ios/App/App/config.xml

@@ -0,0 +1,14 @@
1
+<?xml version='1.0' encoding='utf-8'?>
2
+<widget version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
3
+  <access origin="*" />
4
+  
5
+  <feature name="Calendar">
6
+    <param name="ios-package" value="Calendar"/>
7
+  </feature>
8
+
9
+  <feature name="HealthKit">
10
+    <param name="ios-package" value="HealthKit"/>
11
+  </feature>
12
+
13
+  
14
+</widget>

+ 22 - 0
ios/App/Podfile

@@ -0,0 +1,22 @@
1
+platform :ios, '12.0'
2
+use_frameworks!
3
+
4
+# workaround to avoid Xcode caching of Pods that requires
5
+# Product -> Clean Build Folder after new Cordova plugins installed
6
+# Requires CocoaPods 1.6 or newer
7
+install! 'cocoapods', :disable_input_output_paths => true
8
+
9
+def capacitor_pods
10
+  pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
11
+  pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
12
+  pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
13
+  pod 'CapacitorHaptics', :path => '../../node_modules/@capacitor/haptics'
14
+  pod 'CapacitorKeyboard', :path => '../../node_modules/@capacitor/keyboard'
15
+  pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar'
16
+  pod 'CordovaPlugins', :path => '../capacitor-cordova-ios-plugins'
17
+end
18
+
19
+target 'App' do
20
+  capacitor_pods
21
+  # Add your Pods here
22
+end

+ 44 - 0
karma.conf.js

@@ -0,0 +1,44 @@
1
+// Karma configuration file, see link for more information
2
+// https://karma-runner.github.io/1.0/config/configuration-file.html
3
+
4
+module.exports = function (config) {
5
+  config.set({
6
+    basePath: '',
7
+    frameworks: ['jasmine', '@angular-devkit/build-angular'],
8
+    plugins: [
9
+      require('karma-jasmine'),
10
+      require('karma-chrome-launcher'),
11
+      require('karma-jasmine-html-reporter'),
12
+      require('karma-coverage'),
13
+      require('@angular-devkit/build-angular/plugins/karma')
14
+    ],
15
+    client: {
16
+      jasmine: {
17
+        // you can add configuration options for Jasmine here
18
+        // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
19
+        // for example, you can disable the random execution with `random: false`
20
+        // or set a specific seed with `seed: 4321`
21
+      },
22
+      clearContext: false // leave Jasmine Spec Runner output visible in browser
23
+    },
24
+    jasmineHtmlReporter: {
25
+      suppressAll: true // removes the duplicated traces
26
+    },
27
+    coverageReporter: {
28
+      dir: require('path').join(__dirname, './coverage/ngv'),
29
+      subdir: '.',
30
+      reporters: [
31
+        { type: 'html' },
32
+        { type: 'text-summary' }
33
+      ]
34
+    },
35
+    reporters: ['progress', 'kjhtml'],
36
+    port: 9876,
37
+    colors: true,
38
+    logLevel: config.LOG_INFO,
39
+    autoWatch: true,
40
+    browsers: ['Chrome'],
41
+    singleRun: false,
42
+    restartOnFileChange: true
43
+  });
44
+};

Разлика између датотеке није приказан због своје велике величине
+ 39378 - 0
package-lock.json


+ 75 - 0
package.json

@@ -0,0 +1,75 @@
1
+{
2
+  "name": "Tune2Win",
3
+  "version": "0.0.1",
4
+  "author": "Ionic Framework",
5
+  "homepage": "https://ionicframework.com/",
6
+  "scripts": {
7
+    "ng": "ng",
8
+    "start": "ng serve",
9
+    "build": "ng build",
10
+    "test": "ng test",
11
+    "lint": "ng lint",
12
+    "e2e": "ng e2e"
13
+  },
14
+  "private": true,
15
+  "dependencies": {
16
+    "@angular/common": "~13.0.0",
17
+    "@angular/core": "~13.0.0",
18
+    "@angular/forms": "~13.0.0",
19
+    "@angular/platform-browser": "~13.0.0",
20
+    "@angular/platform-browser-dynamic": "~13.0.0",
21
+    "@angular/router": "~13.0.0",
22
+    "@awesome-cordova-plugins/calendar": "^5.39.1",
23
+    "@awesome-cordova-plugins/health": "^5.39.1",
24
+    "@capacitor/app": "1.1.0",
25
+    "@capacitor/core": "3.4.1",
26
+    "@capacitor/haptics": "1.1.4",
27
+    "@capacitor/ios": "3.4.1",
28
+    "@capacitor/keyboard": "1.2.2",
29
+    "@capacitor/status-bar": "1.0.8",
30
+    "@ionic/angular": "^6.0.0",
31
+    "@ionic/storage-angular": "^3.0.6",
32
+    "chart.js": "^3.7.1",
33
+    "cordova-plugin-calendar": "^5.1.6",
34
+    "cordova-plugin-health": "^2.0.3",
35
+    "date-fns": "^2.28.0",
36
+    "ng2-charts": "^3.0.0-rc.7",
37
+    "rxjs": "~6.6.0",
38
+    "tslib": "^2.2.0",
39
+    "zone.js": "~0.11.4"
40
+  },
41
+  "devDependencies": {
42
+    "@angular-devkit/build-angular": "~13.0.1",
43
+    "@angular-eslint/builder": "~13.0.1",
44
+    "@angular-eslint/eslint-plugin": "~13.0.1",
45
+    "@angular-eslint/eslint-plugin-template": "~13.0.1",
46
+    "@angular-eslint/template-parser": "~13.0.1",
47
+    "@angular/cli": "~13.0.1",
48
+    "@angular/compiler": "~13.0.0",
49
+    "@angular/compiler-cli": "~13.0.0",
50
+    "@angular/language-service": "~13.0.0",
51
+    "@capacitor/cli": "3.4.1",
52
+    "@ionic/angular-toolkit": "^5.0.0",
53
+    "@types/jasmine": "~3.6.0",
54
+    "@types/jasminewd2": "~2.0.3",
55
+    "@types/node": "^12.11.1",
56
+    "@typescript-eslint/eslint-plugin": "5.3.0",
57
+    "@typescript-eslint/parser": "5.3.0",
58
+    "eslint": "^7.6.0",
59
+    "eslint-plugin-import": "2.22.1",
60
+    "eslint-plugin-jsdoc": "30.7.6",
61
+    "eslint-plugin-prefer-arrow": "1.2.2",
62
+    "jasmine-core": "~3.8.0",
63
+    "jasmine-spec-reporter": "~5.0.0",
64
+    "karma": "~6.3.2",
65
+    "karma-chrome-launcher": "~3.1.0",
66
+    "karma-coverage": "~2.0.3",
67
+    "karma-coverage-istanbul-reporter": "~3.0.2",
68
+    "karma-jasmine": "~4.0.0",
69
+    "karma-jasmine-html-reporter": "^1.5.0",
70
+    "protractor": "~7.0.0",
71
+    "ts-node": "~8.3.0",
72
+    "typescript": "~4.4.4"
73
+  },
74
+  "description": "An Ionic project"
75
+}

BIN
resources/icon.png


BIN
resources/ios/icon/icon-1024.png


BIN
resources/ios/icon/icon-108@2x.png


BIN
resources/ios/icon/icon-20.png


BIN
resources/ios/icon/icon-20@2x.png


BIN
resources/ios/icon/icon-20@3x.png


BIN
resources/ios/icon/icon-24@2x.png


BIN
resources/ios/icon/icon-27.5@2x.png


BIN
resources/ios/icon/icon-29.png


BIN
resources/ios/icon/icon-29@2x.png


BIN
resources/ios/icon/icon-29@3x.png


BIN
resources/ios/icon/icon-40.png


BIN
resources/ios/icon/icon-40@2x.png


BIN
resources/ios/icon/icon-40@3x.png


BIN
resources/ios/icon/icon-44@2x.png


BIN
resources/ios/icon/icon-50.png


BIN
resources/ios/icon/icon-50@2x.png


BIN
resources/ios/icon/icon-60.png


BIN
resources/ios/icon/icon-60@2x.png


BIN
resources/ios/icon/icon-60@3x.png


BIN
resources/ios/icon/icon-72.png


BIN
resources/ios/icon/icon-72@2x.png


BIN
resources/ios/icon/icon-76.png


BIN
resources/ios/icon/icon-76@2x.png


BIN
resources/ios/icon/icon-83.5@2x.png


BIN
resources/ios/icon/icon-86@2x.png


BIN
resources/ios/icon/icon-98@2x.png


BIN
resources/ios/icon/icon.png


BIN
resources/ios/icon/icon@2x.png


BIN
resources/ios/splash/Default-1792h~iphone.png


BIN
resources/ios/splash/Default-2436h.png


BIN
resources/ios/splash/Default-2688h~iphone.png


BIN
resources/ios/splash/Default-568h@2x~iphone.png


BIN
resources/ios/splash/Default-667h.png


BIN
resources/ios/splash/Default-736h.png


BIN
resources/ios/splash/Default-Landscape-1792h~iphone.png


BIN
resources/ios/splash/Default-Landscape-2436h.png


BIN
resources/ios/splash/Default-Landscape-2688h~iphone.png


BIN
resources/ios/splash/Default-Landscape-736h.png


BIN
resources/ios/splash/Default-Landscape@2x~ipad.png


BIN
resources/ios/splash/Default-Landscape@~ipadpro.png


BIN
resources/ios/splash/Default-Landscape~ipad.png


BIN
resources/ios/splash/Default-Portrait@2x~ipad.png


BIN
resources/ios/splash/Default-Portrait@~ipadpro.png


BIN
resources/ios/splash/Default-Portrait~ipad.png


BIN
resources/ios/splash/Default@2x~iphone.png


BIN
resources/ios/splash/Default@2x~universal~anyany.png


BIN
resources/ios/splash/Default~iphone.png


+ 0 - 0
resources/splash.png


Неке датотеке нису приказане због велике количине промена

tum/network_report_server - Gogs: Simplico Git Service

Aucune description

tum 30f7226d9a first commit il y a 2 ans
..
.bin 30f7226d9a first commit il y a 2 ans
@alloc 30f7226d9a first commit il y a 2 ans
@babel 30f7226d9a first commit il y a 2 ans
@jridgewell 30f7226d9a first commit il y a 2 ans
@kurkle 30f7226d9a first commit il y a 2 ans
@nodelib 30f7226d9a first commit il y a 2 ans
@one-ini 30f7226d9a first commit il y a 2 ans
@vue 30f7226d9a first commit il y a 2 ans
abbrev 30f7226d9a first commit il y a 2 ans
alpinejs 30f7226d9a first commit il y a 2 ans
ansi-colors 30f7226d9a first commit il y a 2 ans
ansi-regex 30f7226d9a first commit il y a 2 ans
ansi-styles 30f7226d9a first commit il y a 2 ans
any-promise 30f7226d9a first commit il y a 2 ans
anymatch 30f7226d9a first commit il y a 2 ans
arg 30f7226d9a first commit il y a 2 ans
asynckit 30f7226d9a first commit il y a 2 ans
axios 30f7226d9a first commit il y a 2 ans
balanced-match 30f7226d9a first commit il y a 2 ans
binary-extensions 30f7226d9a first commit il y a 2 ans
boolbase 30f7226d9a first commit il y a 2 ans
bootstrap 30f7226d9a first commit il y a 2 ans
brace-expansion 30f7226d9a first commit il y a 2 ans
braces 30f7226d9a first commit il y a 2 ans
camel-case 30f7226d9a first commit il y a 2 ans
camelcase-css 30f7226d9a first commit il y a 2 ans
chart.js 30f7226d9a first commit il y a 2 ans
cheerio 30f7226d9a first commit il y a 2 ans
cheerio-select 30f7226d9a first commit il y a 2 ans
chokidar 30f7226d9a first commit il y a 2 ans
clean-css 30f7226d9a first commit il y a 2 ans
cliui 30f7226d9a first commit il y a 2 ans
color-convert 30f7226d9a first commit il y a 2 ans
color-name 30f7226d9a first commit il y a 2 ans
combined-stream 30f7226d9a first commit il y a 2 ans
commander 30f7226d9a first commit il y a 2 ans
concat-map 30f7226d9a first commit il y a 2 ans
config-chain 30f7226d9a first commit il y a 2 ans
css-select 30f7226d9a first commit il y a 2 ans
css-what 30f7226d9a first commit il y a 2 ans
cssesc 30f7226d9a first commit il y a 2 ans
datatables.net 30f7226d9a first commit il y a 2 ans
datatables.net-bs5 30f7226d9a first commit il y a 2 ans
delayed-stream 30f7226d9a first commit il y a 2 ans
detect-node 30f7226d9a first commit il y a 2 ans
didyoumean 30f7226d9a first commit il y a 2 ans
dlv 30f7226d9a first commit il y a 2 ans
dom-serializer 30f7226d9a first commit il y a 2 ans
domelementtype 30f7226d9a first commit il y a 2 ans
domhandler 30f7226d9a first commit il y a 2 ans
domutils 30f7226d9a first commit il y a 2 ans
editorconfig 30f7226d9a first commit il y a 2 ans
emoji-regex 30f7226d9a first commit il y a 2 ans
entities 30f7226d9a first commit il y a 2 ans
escalade 30f7226d9a first commit il y a 2 ans
escape-goat 30f7226d9a first commit il y a 2 ans
fast-glob 30f7226d9a first commit il y a 2 ans
fastq 30f7226d9a first commit il y a 2 ans
fill-range 30f7226d9a first commit il y a 2 ans
follow-redirects 30f7226d9a first commit il y a 2 ans
form-data 30f7226d9a first commit il y a 2 ans
fs.realpath 30f7226d9a first commit il y a 2 ans
function-bind 30f7226d9a first commit il y a 2 ans
get-caller-file 30f7226d9a first commit il y a 2 ans
glob 30f7226d9a first commit il y a 2 ans
glob-parent 30f7226d9a first commit il y a 2 ans
granim 30f7226d9a first commit il y a 2 ans
has 30f7226d9a first commit il y a 2 ans
he 30f7226d9a first commit il y a 2 ans
html-minifier 30f7226d9a first commit il y a 2 ans
htmlparser2 30f7226d9a first commit il y a 2 ans
inflight 30f7226d9a first commit il y a 2 ans
inherits 30f7226d9a first commit il y a 2 ans
ini 30f7226d9a first commit il y a 2 ans
is-binary-path 30f7226d9a first commit il y a 2 ans
is-core-module 30f7226d9a first commit il y a 2 ans
is-extglob 30f7226d9a first commit il y a 2 ans
is-fullwidth-code-point 30f7226d9a first commit il y a 2 ans
is-glob 30f7226d9a first commit il y a 2 ans
is-number 30f7226d9a first commit il y a 2 ans
jiti 30f7226d9a first commit il y a 2 ans
jquery 30f7226d9a first commit il y a 2 ans
js-beautify 30f7226d9a first commit il y a 2 ans
juice 30f7226d9a first commit il y a 2 ans
lightbox2 30f7226d9a first commit il y a 2 ans
lilconfig 30f7226d9a first commit il y a 2 ans
lines-and-columns 30f7226d9a first commit il y a 2 ans
lodash 30f7226d9a first commit il y a 2 ans
lower-case 30f7226d9a first commit il y a 2 ans
lru-cache 30f7226d9a first commit il y a 2 ans
mensch 30f7226d9a first commit il y a 2 ans
merge2 30f7226d9a first commit il y a 2 ans
micromatch 30f7226d9a first commit il y a 2 ans
mime 30f7226d9a first commit il y a 2 ans
mime-db 30f7226d9a first commit il y a 2 ans
mime-types 30f7226d9a first commit il y a 2 ans
minimatch 30f7226d9a first commit il y a 2 ans
mjml 30f7226d9a first commit il y a 2 ans
mjml-accordion 30f7226d9a first commit il y a 2 ans
mjml-body 30f7226d9a first commit il y a 2 ans
mjml-button 30f7226d9a first commit il y a 2 ans
mjml-carousel 30f7226d9a first commit il y a 2 ans
mjml-cli 30f7226d9a first commit il y a 2 ans
mjml-column 30f7226d9a first commit il y a 2 ans
mjml-core 30f7226d9a first commit il y a 2 ans
mjml-divider 30f7226d9a first commit il y a 2 ans
mjml-group 30f7226d9a first commit il y a 2 ans
mjml-head 30f7226d9a first commit il y a 2 ans
mjml-head-attributes 30f7226d9a first commit il y a 2 ans
mjml-head-breakpoint 30f7226d9a first commit il y a 2 ans
mjml-head-font 30f7226d9a first commit il y a 2 ans
mjml-head-html-attributes 30f7226d9a first commit il y a 2 ans
mjml-head-preview 30f7226d9a first commit il y a 2 ans
mjml-head-style 30f7226d9a first commit il y a 2 ans
mjml-head-title 30f7226d9a first commit il y a 2 ans
mjml-hero 30f7226d9a first commit il y a 2 ans
mjml-image 30f7226d9a first commit il y a 2 ans
mjml-migrate 30f7226d9a first commit il y a 2 ans
mjml-navbar 30f7226d9a first commit il y a 2 ans
mjml-parser-xml 30f7226d9a first commit il y a 2 ans
mjml-preset-core 30f7226d9a first commit il y a 2 ans
mjml-raw 30f7226d9a first commit il y a 2 ans
mjml-section 30f7226d9a first commit il y a 2 ans
mjml-social 30f7226d9a first commit il y a 2 ans
mjml-spacer 30f7226d9a first commit il y a 2 ans
mjml-table 30f7226d9a first commit il y a 2 ans
mjml-text 30f7226d9a first commit il y a 2 ans
mjml-validator 30f7226d9a first commit il y a 2 ans
mjml-wrapper 30f7226d9a first commit il y a 2 ans
mz 30f7226d9a first commit il y a 2 ans
nanoid 30f7226d9a first commit il y a 2 ans
no-case 30f7226d9a first commit il y a 2 ans
node-fetch 30f7226d9a first commit il y a 2 ans
nopt 30f7226d9a first commit il y a 2 ans
normalize-path 30f7226d9a first commit il y a 2 ans
nth-check 30f7226d9a first commit il y a 2 ans
object-assign 30f7226d9a first commit il y a 2 ans
object-hash 30f7226d9a first commit il y a 2 ans
once 30f7226d9a first commit il y a 2 ans
paper-css 30f7226d9a first commit il y a 2 ans
param-case 30f7226d9a first commit il y a 2 ans
parse5 30f7226d9a first commit il y a 2 ans
parse5-htmlparser2-tree-adapter 30f7226d9a first commit il y a 2 ans
path-is-absolute 30f7226d9a first commit il y a 2 ans
path-parse 30f7226d9a first commit il y a 2 ans
picocolors 30f7226d9a first commit il y a 2 ans
picomatch 30f7226d9a first commit il y a 2 ans
pify 30f7226d9a first commit il y a 2 ans
pirates 30f7226d9a first commit il y a 2 ans
postcss 30f7226d9a first commit il y a 2 ans
postcss-import 30f7226d9a first commit il y a 2 ans
postcss-js 30f7226d9a first commit il y a 2 ans
postcss-load-config 30f7226d9a first commit il y a 2 ans
postcss-nested 30f7226d9a first commit il y a 2 ans
postcss-selector-parser 30f7226d9a first commit il y a 2 ans
postcss-value-parser 30f7226d9a first commit il y a 2 ans
proto-list 30f7226d9a first commit il y a 2 ans
proxy-from-env 30f7226d9a first commit il y a 2 ans
queue-microtask 30f7226d9a first commit il y a 2 ans
read-cache 30f7226d9a first commit il y a 2 ans
readdirp 30f7226d9a first commit il y a 2 ans
regenerator-runtime 30f7226d9a first commit il y a 2 ans
relateurl 30f7226d9a first commit il y a 2 ans
require-directory 30f7226d9a first commit il y a 2 ans
resolve 30f7226d9a first commit il y a 2 ans
reusify 30f7226d9a first commit il y a 2 ans
run-parallel 30f7226d9a first commit il y a 2 ans
semver 30f7226d9a first commit il y a 2 ans
slick 30f7226d9a first commit il y a 2 ans
slick-carousel 30f7226d9a first commit il y a 2 ans
sortablejs 30f7226d9a first commit il y a 2 ans
source-map 30f7226d9a first commit il y a 2 ans
source-map-js 30f7226d9a first commit il y a 2 ans
string-width 30f7226d9a first commit il y a 2 ans
strip-ansi 30f7226d9a first commit il y a 2 ans
sucrase 30f7226d9a first commit il y a 2 ans
supports-preserve-symlinks-flag 30f7226d9a first commit il y a 2 ans
tailwind-color-palette 30f7226d9a first commit il y a 2 ans
tailwindcss 30f7226d9a first commit il y a 2 ans
thenify 30f7226d9a first commit il y a 2 ans
thenify-all 30f7226d9a first commit il y a 2 ans
to-regex-range 30f7226d9a first commit il y a 2 ans
tr46 30f7226d9a first commit il y a 2 ans
ts-interface-checker 30f7226d9a first commit il y a 2 ans
uglify-js 30f7226d9a first commit il y a 2 ans
underscore 30f7226d9a first commit il y a 2 ans
upper-case 30f7226d9a first commit il y a 2 ans
util-deprecate 30f7226d9a first commit il y a 2 ans
valid-data-url 30f7226d9a first commit il y a 2 ans
web-resource-inliner 30f7226d9a first commit il y a 2 ans
webidl-conversions 30f7226d9a first commit il y a 2 ans
whatwg-url 30f7226d9a first commit il y a 2 ans
wrap-ansi 30f7226d9a first commit il y a 2 ans
wrappy 30f7226d9a first commit il y a 2 ans
y18n 30f7226d9a first commit il y a 2 ans
yallist 30f7226d9a first commit il y a 2 ans
yaml 30f7226d9a first commit il y a 2 ans
yargs 30f7226d9a first commit il y a 2 ans
yargs-parser 30f7226d9a first commit il y a 2 ans
.yarn-integrity 30f7226d9a first commit il y a 2 ans
tum/sflite - Gogs: Simplico Git Service

Нет описания

tum 1b961ee20c first commit месяцев назад: 4
..
collapsible.tsx 1b961ee20c first commit месяцев назад: 4
icon-symbol.ios.tsx 1b961ee20c first commit месяцев назад: 4
icon-symbol.tsx 1b961ee20c first commit месяцев назад: 4