Skip to content

Commit

Permalink
Commit inicial
Browse files Browse the repository at this point in the history
  • Loading branch information
cardoso-thiago committed Jan 24, 2021
0 parents commit 7d67a33
Show file tree
Hide file tree
Showing 26 changed files with 486 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/.checkers
/.rds_delta
/.sdk_delta.info
/.sign
/crash-info/
/res/res.xml
/vlc/
/Debug/
/Release/
/lib/*.so*
/lib/*.a
/emotion/
/libvlcpp/
/medialibrary/
*.tmp
*~
res/edje/*.edj
24 changes: 24 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Blackout</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>json.validation.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.tizen.web.project.builder.WebBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>json.validation.nature</nature>
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
<nature>org.tizen.web.project.builder.WebNature</nature>
</natures>
</projectDescription>
22 changes: 22 additions & 0 deletions .settings/.jsdtscope
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.baseBrowserLibrary"/>
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.WebProject">
<attributes>
<attribute name="hide" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.JRE_CONTAINER"/>
<classpathentry excluding="**/bower_components/*|**/node_modules/*|**/*.min.js" kind="src" path="">
<attributes>
<attribute name="provider" value="org.eclipse.wst.jsdt.web.core.internal.project.ModuleSourcePathProvider"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.tizen.web.project.initializer.WebLibraryInitializer"/>
<classpathentry kind="con" path="org.eclipselabs.jsdt.jquery.core.CoflictLibrary_2.0"/>
<classpathentry kind="con" path="org.tizen.web.project.initializer.TizenLibraryInitializer"/>
<classpathentry kind="con" path="org.tizen.web.project.initializer.HTML5LibraryInitializer"/>
<classpathentry kind="con" path="org.tizen.web.project.initializer.W3CLibraryInitializer"/>
<classpathentry kind="con" path="org.tizen.web.project.initializer.ext.RESTSupport"/>
<classpathentry kind="output" path=""/>
</classpath>
2 changes: 2 additions & 0 deletions .settings/org.eclipse.wst.css.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
css-profile/<project>=org.eclipse.wst.css.core.cssprofile.css3
eclipse.preferences.version=1
1 change: 1 addition & 0 deletions .settings/org.eclipse.wst.jsdt.ui.superType.container
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
org.eclipse.wst.jsdt.launching.baseBrowserLibrary
1 change: 1 addition & 0 deletions .settings/org.eclipse.wst.jsdt.ui.superType.name
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Window
11 changes: 11 additions & 0 deletions .tproject
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<tproject xmlns="http:https://www.tizen.org/tproject">
<platforms>
<platform>
<name>wearable-5.5</name>
</platform>
</platforms>
<package>
<blacklist/>
</package>
</tproject>
Binary file added Blackout.wgt
Binary file not shown.
13 changes: 13 additions & 0 deletions config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http:https://www.w3.org/ns/widgets" xmlns:tizen="http:https://tizen.org/ns/widgets" id="http:https://yourdomain/Blackout" version="1.0.0" viewmodes="maximized">
<tizen:application id="8VWmQRhIr3.Blackout" package="8VWmQRhIr3" required_version="2.3.1" ambient_support="enable"/>
<tizen:category name="http:https://tizen.org/category/wearable_clock"/>
<content src="index.html"/>
<feature name="http:https://tizen.org/feature/screen.size.all"/>
<icon src="icon.png"/>
<name>Blackout</name>
<tizen:privilege name="http:https://tizen.org/privilege/application.launch"/>
<tizen:privilege name="http:https://tizen.org/privilege/alarm"/>
<tizen:profile name="wearable"/>
<tizen:setting background-support="disable" encryption="disable" hwkey-event="enable"/>
</widget>
Binary file added css/blackout_midnight.ttf
Binary file not shown.
80 changes: 80 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
body {
width: 100%;
height: 100%;
}

@font-face {
font-family: "Blackout-Midnight";
src: url('blackout_midnight.ttf');
}

#digital-body {
position: absolute;
width: 360px;
height: 360px;
top: 0px;
left: 0px;
background-size: 100%;
background-repeat: repeat;
overflow: hidden;
}

/*
hour&minutes
*/
#rec-time {
position: fixed;
top: 40%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}

#str-hours {
font-family: Blackout-Midnight;
font-size: 550%;
margin-bottom:10px;
background: linear-gradient(to right, #30CFD0 0%, #330867 100%);
text-align: center;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

#str-minutes {
font-family: Blackout-Midnight;
font-size: 550%;
color: white;
text-align: center;
}

/*
string day & month
*/
#rec-data {
position: fixed;
left: 50%;
bottom: 0px;
transform: translate(-50%, -50%);
margin: 0 auto;
}

#str-day {
font-size: 150%;
margin-bottom:10px;
color: white;
}

#str-battery {
font-size: 150%;
color: white;
text-align: center;
}

@media screen and (-tizen-geometric-shape: circle) {
#str-hours {
font-size: 600%;
}
#str-minutes {
font-size: 600%;
}
}
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/Abstract-Timekeeper.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/Bullseye-Gradient.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/Endless-Constellation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/Subtle-Prism.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/Wavey-Fingerprint.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/brick-wall.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/charlie-brown.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7d67a33

Please sign in to comment.