Skip to content

Commit

Permalink
Merge pull request #54 from ZhengLinLei/version
Browse files Browse the repository at this point in the history
Release v0.1.6-beta.1
  • Loading branch information
ZhengLinLei authored Oct 17, 2023
2 parents 4c6e8de + 40f6be7 commit be58956
Show file tree
Hide file tree
Showing 16 changed files with 1,320 additions and 27 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
node_modules
6 changes: 5 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
v0.1.6 -> 15/10/2023 -----------------------------------> TAG: v0.1.6-beta
v0.1.6 -> 15/10/2023 -----------------------------------> TAG: v0.1.6-beta; v0.1.6-beta.1
- Changed PWA
- Added PWA install popup
- Changed playBot() function test
Expand All @@ -7,6 +7,10 @@ v0.1.6 -> 15/10/2023 -----------------------------------> TAG: v0.1.6-beta
- Changed Best Score label to Score
- Added Screenshot feature to share records
- Added micro zoom-out to better views
----> Release
- Fixed lag in some mobile devices
- Fixed not working share record and css error
- Fixed FPS problem, due not controlling frames count. 120fps is more faster than 60fps

v0.1.5 -> 09/10/2023 -----------------------------------> TAG: v0.1.5-alpha
- Added randomization of colors
Expand Down
20 changes: 20 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-uglify');

grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
report: 'min',
mangle: true
},
js: {
files: [{
expand: true,
src: ['js/**/*.js', '!js/**/*.min.js'],
ext: '.min.js'
}]
}
}
})
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Live web preview [here](https://zhenglinlei.github.io/stackblock.io)
<img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License" />
</a>&nbsp;
<a>
<img src="https://img.shields.io/badge/version-0.1.6-brightgreen" alt="Version" />
<img src="https://img.shields.io/badge/version-0.1.6b1-brightgreen" alt="Version" />
</a>
</p>

Expand Down
2 changes: 1 addition & 1 deletion css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ <h3 class="score">BEST SCORE</h3>
</div>
</section>

<!-- Notification po-up -->
<section id="noti-popup" class="noti-popup">
<p id="noti-popup-text">Unable to share. Take screenshot 📸</p>
<div class="loader"></div>
</section>

<!-- Record Share -->
<section id="record-share" class="record-share">
<img src="">
Expand All @@ -76,7 +82,7 @@ <h3 class="score">BEST SCORE</h3>
<script src="./js/lib/png2share.min.js"></script>
<script src="./js/script.min.js"></script>
<script>
const V = "1.0.6";
const V = "1.0.6-b1";
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register(`./sw.js?v=${V}`)
Expand Down
Loading

0 comments on commit be58956

Please sign in to comment.