-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies, config for cloud version, add 1.4.5 release version
- Loading branch information
Showing
80 changed files
with
712 additions
and
544 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Copyright (c) 2018-2019, Stanislav Valasek <[email protected]> | ||
Copyright (c) 2018-2020, Stanislav Valasek <[email protected]> | ||
|
||
Free for education and non-commertial usage. Pay for the commertial usage of the application to support further development and maintenance via [PayPal](https://www.paypal.com/paypalme2/StanislavValasek). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
REM Copyright © 2018-2019 Stanislav Valasek <[email protected]> | ||
REM Copyright © 2018-2020 Stanislav Valasek <[email protected]> | ||
|
||
@ECHO OFF | ||
set zip="C:\Program Files\7-Zip\7z.exe" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/bash | ||
# Copyright © 2018-2019 Stanislav Valasek <[email protected]> | ||
# Copyright © 2018-2020 Stanislav Valasek <[email protected]> | ||
|
||
version="1.4.4" | ||
version="1.4.5" | ||
# rem git describe --tags | ||
|
||
if [ "$1" == "cloud" ]; then | ||
|
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Copyright © 2018-2019 Stanislav Valasek <[email protected]> | ||
// Copyright © 2018-2020 Stanislav Valasek <[email protected]> | ||
|
||
import axios from 'axios' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!-- Copyright © 2018-2019 Stanislav Valasek <[email protected]> --> | ||
<!-- Copyright © 2018-2020 Stanislav Valasek <[email protected]> --> | ||
|
||
<template> | ||
<span> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!-- Copyright © 2018-2019 Stanislav Valasek <[email protected]> --> | ||
<!-- Copyright © 2018-2020 Stanislav Valasek <[email protected]> --> | ||
|
||
<template> | ||
<q-dialog | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!-- Copyright © 2018-2019 Stanislav Valasek <[email protected]> --> | ||
<!-- Copyright © 2018-2020 Stanislav Valasek <[email protected]> --> | ||
|
||
<template> | ||
<q-table | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!-- Copyright © 2018-2019 Stanislav Valasek <[email protected]> --> | ||
<!-- Copyright © 2018-2020 Stanislav Valasek <[email protected]> --> | ||
|
||
<template> | ||
<q-footer elevated class="bg-primary text-secondary"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!-- Copyright © 2018-2019 Stanislav Valasek <[email protected]> --> | ||
<!-- Copyright © 2018-2020 Stanislav Valasek <[email protected]> --> | ||
|
||
<template> | ||
<span> | ||
|
@@ -37,7 +37,7 @@ export default { | |
// ID Indonesia | ||
// US United States | ||
], | ||
year: '2019' | ||
year: '2020' | ||
} | ||
}, | ||
|
@@ -51,7 +51,7 @@ export default { | |
retrieveHolidays () { | ||
const url = 'https://holidayapi.pl/v1/holidays' | ||
const querystring = '?country=' + this.country + '&year=' + this.year | ||
// curl https://holidayapi.pl/v1/holidays -XGET -d"country=CZ&year=2019" | ||
// curl https://holidayapi.pl/v1/holidays -XGET -d"country=CZ&year=2020" | ||
api.apiClient.get(url + querystring) | ||
.then(response => { | ||
}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!-- Copyright © 2018-2019 Stanislav Valasek <[email protected]> --> | ||
<!-- Copyright © 2018-2020 Stanislav Valasek <[email protected]> --> | ||
|
||
<template> | ||
<!-- <q-select v-model="selectedConsultant" :options="consultants.all" option-name="id" option-label="name" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!-- Copyright © 2018-2019 Stanislav Valasek <[email protected]> --> | ||
<!-- Copyright © 2018-2020 Stanislav Valasek <[email protected]> --> | ||
|
||
<template> | ||
<q-page padding> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!-- Copyright © 2018-2019 Stanislav Valasek <[email protected]> --> | ||
<!-- Copyright © 2018-2020 Stanislav Valasek <[email protected]> --> | ||
|
||
<template> | ||
<q-page padding> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!-- Copyright © 2018-2019 Stanislav Valasek <[email protected]> --> | ||
<!-- Copyright © 2018-2020 Stanislav Valasek <[email protected]> --> | ||
|
||
<template> | ||
<q-page padding> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!-- Copyright © 2018-2019 Stanislav Valasek <[email protected]> --> | ||
<!-- Copyright © 2018-2020 Stanislav Valasek <[email protected]> --> | ||
|
||
<template> | ||
<q-page padding> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!-- Copyright © 2018-2019 Stanislav Valasek <[email protected]> --> | ||
<!-- Copyright © 2018-2020 Stanislav Valasek <[email protected]> --> | ||
|
||
<template> | ||
<q-page padding> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!-- Copyright © 2018-2019 Stanislav Valasek <[email protected]> --> | ||
<!-- Copyright © 2018-2020 Stanislav Valasek <[email protected]> --> | ||
|
||
<template> | ||
<q-page padding> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!-- Copyright © 2018-2019 Stanislav Valasek <[email protected]> --> | ||
<!-- Copyright © 2018-2020 Stanislav Valasek <[email protected]> --> | ||
|
||
<template> | ||
<q-page padding> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Copyright © 2018-2019 Stanislav Valasek <[email protected]> | ||
// Copyright © 2018-2020 Stanislav Valasek <[email protected]> | ||
|
||
const routes = [ | ||
{ | ||
|
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.
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Copyright © 2018-2019 Stanislav Valasek <[email protected]> | ||
// Copyright © 2018-2020 Stanislav Valasek <[email protected]> | ||
|
||
import Vue from 'vue' | ||
import Vuex from 'vuex' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Copyright © 2018-2019 Stanislav Valasek <[email protected]> | ||
// Copyright © 2018-2020 Stanislav Valasek <[email protected]> | ||
|
||
import api from '../../api/axiosSettings' | ||
import { Notify } from 'quasar' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Copyright © 2018-2019 Stanislav Valasek <[email protected]> | ||
// Copyright © 2018-2020 Stanislav Valasek <[email protected]> | ||
import { isWithinInterval } from 'date-fns' | ||
|
||
// initial state | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Copyright © 2018-2019 Stanislav Valasek <[email protected]> | ||
// Copyright © 2018-2020 Stanislav Valasek <[email protected]> | ||
|
||
import api from '../../api/axiosSettings' | ||
import { Notify } from 'quasar' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Copyright © 2018-2019 Stanislav Valasek <[email protected]> | ||
// Copyright © 2018-2020 Stanislav Valasek <[email protected]> | ||
|
||
import api from '../../api/axiosSettings' | ||
import { Notify } from 'quasar' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Copyright © 2018-2019 Stanislav Valasek <[email protected]> | ||
// Copyright © 2018-2020 Stanislav Valasek <[email protected]> | ||
|
||
import api from '../../api/axiosSettings' | ||
import { Notify } from 'quasar' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Copyright © 2018-2019 Stanislav Valasek <[email protected]> | ||
// Copyright © 2018-2020 Stanislav Valasek <[email protected]> | ||
|
||
import api from '../../api/axiosSettings' | ||
import { format, getYear, parseISO } from 'date-fns' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Copyright © 2018-2019 Stanislav Valasek <[email protected]> | ||
// Copyright © 2018-2020 Stanislav Valasek <[email protected]> | ||
|
||
import api from '../../api/axiosSettings' | ||
import { subDays, addDays, startOfWeek, endOfWeek, getMonth, parseISO } from 'date-fns' | ||
|
Oops, something went wrong.