rebrand to 'Co Jedzie' as 'Czy Dojade' is taken
@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "kadet/czydojade",
|
||||
"name": "kadet/cojedzie",
|
||||
"type": "project",
|
||||
"license": "MIT",
|
||||
"require": {
|
||||
|
@ -1,7 +1,7 @@
|
||||
nelmio_api_doc:
|
||||
documentation:
|
||||
info:
|
||||
title: Czy Dojadę?
|
||||
title: Co Jedzie?
|
||||
version: 0.1.0
|
||||
parameters:
|
||||
provider:
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "czydojade",
|
||||
"name": "co-jedzie",
|
||||
"version": "1.0.0",
|
||||
"author": "Kacper Donat <kadet1090@gmail.com>",
|
||||
"license": "MIT",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Czy Dojadę?",
|
||||
"short_name": "Czy Dojadę?",
|
||||
"name": "Co Jedzie?",
|
||||
"short_name": "Co Jedzie?",
|
||||
"orientation": "portrait",
|
||||
"lang": "pl_PL",
|
||||
"start_url": ".",
|
||||
@ -27,4 +27,4 @@
|
||||
"src": "images/icon-96.png",
|
||||
"sizes": "96x96"
|
||||
}]
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 12 KiB |
1313
resources/images/logo-cojedzie.ai
Executable file
Before Width: | Height: | Size: 24 KiB |
BIN
resources/images/logo-superhi.png
Executable file
After Width: | Height: | Size: 107 KiB |
1
resources/images/logo-vector.svg
Executable file
After Width: | Height: | Size: 5.7 KiB |
BIN
resources/images/logo.png
Normal file → Executable file
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 43 KiB |
@ -47,15 +47,15 @@ Component.registerHooks(['removed']);
|
||||
] as const);
|
||||
|
||||
// here goes "public" API
|
||||
window['czydojade'] = Object.assign({
|
||||
window['app'] = Object.assign({
|
||||
state: {}
|
||||
}, window['czydojade'], {
|
||||
}, window['app'], {
|
||||
components,
|
||||
application: new components.Application({ el: '#app' })
|
||||
});
|
||||
|
||||
store.dispatch('messages/update');
|
||||
store.dispatch('load', window['czydojade'].state);
|
||||
store.dispatch('load', window['app'].state);
|
||||
|
||||
if ('serviceWorker' in navigator) {
|
||||
const wb = new Workbox("/service-worker.js");
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<rulset name="Kadet.CzyDojade">
|
||||
<description>Czy Dojadę ruleset</description>
|
||||
<rulset name="CoJedzie">
|
||||
<description>Co Jedzie ruleset</description>
|
||||
|
||||
<arg name="colors"/>
|
||||
<arg name="parallel" value="75"/>
|
||||
|
@ -183,7 +183,7 @@
|
||||
provider: {{ provider.identifier|json_encode|raw }}
|
||||
};
|
||||
|
||||
window.czydojade = {};
|
||||
window.czydojade.state = {{ state|json_encode|raw }};
|
||||
window.app = {};
|
||||
window.app.state = {{ state|json_encode|raw }};
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
@ -15,10 +15,10 @@
|
||||
<link rel="apple-touch-icon" href="images/ios.png" sizes="512x512">
|
||||
<link rel="apple-touch-icon" href="images/ios-80.png" sizes="80x80">
|
||||
<link rel="apple-touch-icon" href="images/ios-192.png" sizes="192x192">
|
||||
<meta name="apple-mobile-web-app-title" content="Czy Dojadę?">
|
||||
<meta name="apple-mobile-web-app-title" content="Co Jedzie?">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
|
||||
<title>{% block title %}Czy dojadę?{% endblock %}</title>
|
||||
<title>{% block title %}Co Jedzie?{% endblock %}</title>
|
||||
|
||||
{% if ga_tracking %}
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
@ -39,7 +39,7 @@
|
||||
<footer class="container">
|
||||
{% block footer %}
|
||||
<span>
|
||||
<img src="{{ asset('images/logo.png') }}" alt="czydojade logo"/>
|
||||
<img src="{{ asset('images/logo.png') }}" alt="co jedzie logo"/>
|
||||
v. {{ version() }} •
|
||||
<a href="{{ url('app.swagger_ui') }}">API</a>
|
||||
</span>
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Czy Dojadę? - {{ provider.shortName }}",
|
||||
"short_name": "Czy Dojadę? - {{ provider.shortName }}",
|
||||
"name": "Co Jedzie? - {{ provider.shortName }}",
|
||||
"short_name": "Co Jedzie? - {{ provider.shortName }}",
|
||||
"orientation": "portrait",
|
||||
"lang": "pl_PL",
|
||||
"start_url": "{{ path('app', { provider: provider.identifier }) }}",
|
||||
|