-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from btzr-io/preact
OSD (WIP)
- Loading branch information
Showing
75 changed files
with
2,973 additions
and
1,091 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,20 @@ | ||
* Release 0.1.0 | ||
* Fixed Bug #79: Replace fundamentally broken AppCache with Service Workers | ||
* Fixed Bug #91: Add Internationalization. | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
### Added | ||
|
||
### Changed | ||
|
||
### Removed | ||
|
||
### Fixed | ||
|
||
## [0.0.0] - 2017-07-12 | ||
|
||
### Fixed | ||
* Fixed Bug #79: Replace fundamentally broken AppCache with Service Workers | ||
* Fixed Bug #91: Add Internationalization. |
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
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Copyright (c) 2017 Matthew Brennan Jones <[email protected]> | ||
// This software is licensed under a MIT License | ||
// https://github.com/workhorsy/uncompress.js | ||
// Based on the information from: | ||
// https://en.wikipedia.org/wiki/Tar_(computing) | ||
"use strict"; | ||
(function(){function e(h,d,c){return h.slice(d,d+c)}var a=null;"object"===typeof window?a=window:"function"===typeof importScripts&&(a=self);a.tarGetEntries=function(h,d){for(var c=new Uint8Array(d),b=0,a=[];b+512<c.byteLength;){var f=saneMap(e(c,b+0,100),String.fromCharCode);f=f.join("").replace(/\0/g,"");if(0===f.length)break;var k=parseInt(saneJoin(saneMap(e(c,b+124,12),String.fromCharCode),""),8),g=saneMap(e(c,b+156,1),String.fromCharCode)|0;0!==g&&5!==g||a.push({name:f,size:k,is_file:0==g,offset:b}); | ||
b+=k+512;0<b%512&&(b=512*((b/512|0)+1))}return a};a.tarGetEntryData=function(a,d){var c=new Uint8Array(d);return e(c,a.offset+512,a.size)}})(); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,23 +1,4 @@ | ||
.app { | ||
background: var(--bg-color); | ||
color: var(--text-color); | ||
/* transition: background 0.15s ease; */ | ||
} | ||
|
||
.themeDark { | ||
/* Css vars */ | ||
--main-color: #1976d2; | ||
--bg-color: #2f3542; | ||
--text-color: white; | ||
--text-message-color: #a4b0be; | ||
--menu-bg-color: #1f232b; | ||
} | ||
|
||
.themeLight { | ||
/* Css vars */ | ||
--main-color: #1976d2; | ||
--bg-color: #fff; | ||
--text-color: #3c3d3f; | ||
--text-message-color: #727b85; | ||
--menu-bg-color: #eee; | ||
} |
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
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 was deleted.
Oops, something went wrong.
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
Oops, something went wrong.