Skip to content

Commit

Permalink
Updated docs for 2.3.23 release. Also merged 2.4.0 Makefile rule for …
Browse files Browse the repository at this point in the history
…converting PSD to PNG as the old rule had gotten super annoying.
  • Loading branch information
dmarmor committed Jan 4, 2021
1 parent 6cf9070 commit 0db00b9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Epichrome is open source and a labor of love, made possible by the generosity of

## New in version 2.3.23

- The built-in engine has been updated to Brave 1.1X.XX.
- The built-in engine has been updated to Brave 1.18.77.


*Check out the [**change log**](https://github.com/dmarmor/epichrome/blob/master/app/CHANGELOG.md "CHANGELOG.md") for the full list.*
Expand Down
4 changes: 2 additions & 2 deletions app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
This project adheres to [Semantic Versioning](http://semver.org/).


## [2.3.23] - 202X-XX-XX
## [2.3.23] - 2021-01-03
### Changed
- Updated built-in engine to Brave 1.1X.XX
- Updated built-in engine to Brave 1.18.77


## [2.3.22] - 2020-12-24
Expand Down
12 changes: 10 additions & 2 deletions app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,16 @@ clean-all: clean clean-package clean-engine

%.png: %.psd
open -a "$$(cd ../images ; pwd)"/PNG.app '$<'
@read -p "Hit Enter when Photoshop has finished converting $@: " -r

@printf 'Waiting for Photoshop to finish converting $@...'
@while [[ ( ! -e $@ ) || ( $@ -ot $< ) ]] ; do sleep 1 ; done
@mtime=$$(stat -f '%m' $@) ; \
while [[ "$$oldmtime" != "$$mtime" ]] ; do \
sleep 1 ; \
oldmtime="$$mtime" ; \
mtime=$$(stat -f '%m' $@) ; \
done
@echo 'done!'


# PACKAGE BUILD
# (adapted from http://thegreyblog.blogspot.com/2014/06/os-x-creating-packages-from-command_2.html)
Expand Down
2 changes: 1 addition & 1 deletion app/src/welcome/welcome.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ <h3 class="group_pg pg_update pg_change_engine pg_reset">Changes to This App</h3
<div id="changes_minor" class="change_list changes_minor"> <!-- add .changes_version_zero for x.x.0 -->
<h3>New in Version <span id="update_version_minor">EPIVERSION</span></h3>
<ul>
<li>Built-in engine updated to Brave 1.1X.XX</li>
<li>Built-in engine updated to Brave 1.18.77</li>
</ul>
</div>
<!-- hide this for x.x.0 releases -->
Expand Down

0 comments on commit 0db00b9

Please sign in to comment.