Skip to content

Commit 2c938fa

Browse files
committed
render binaries
1 parent 68e16e5 commit 2c938fa

5 files changed

Lines changed: 21 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## [0.0.2](https://github.com/JumpCutter/JC-render/compare/v0.0.1...v0.0.2) (03-22-2021)
4+
5+
### Bug Fixes
6+
- __binaries__: added the necessary binaries for mac and linux to [render.spec](./render.spec)
7+
- __package__: added a package and husky for future use.
8+
9+
310
## [0.0.1](https://github.com/JumpCutter/JC-render/compare/v0.0.0...v0.0.1) (02-13-2021)
411

512
### Changes
@@ -27,8 +34,3 @@
2734

2835
### DEPRECATIONS
2936
- **none**: just here so devs see my formatting:)
30-
31-
32-
## [0.0.0] This is a placeholder double hash so the workflow sed can read this file
33-
34-
(open sourced)

README.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ For reading the log live.
113113

114114

115115
=== Write to the CHANGELOG
116+
.asdf
117+
118+
link:./CHANGELOG.md[CHANGELOG]
119+
116120
You don't need to go in depth,
117121
CHANGELOG is mostly so we can stay ahead of changes and
118122
squash bugs that arise with updates.

examples

Submodule examples updated 1 file

render.spec

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,26 @@ PACKAGE_DLL=os.getenv('PACKAGE_DLL', 'false') == 'true'
66
block_cipher = pyi_crypto.PyiBlockCipher(key='amMtcmVuZGVyZXI=')
77

88
binaries = []
9+
shared = [
10+
('binaries/opentimelineio', '.'),
11+
('binaries/opentimelineio_contrib', '.'),
12+
('binaries/redis', '.'),
13+
]
914

1015
if PACKAGE_DLL:
1116
binaries = [
12-
('binaries/opentimelineio', '.'),
13-
('binaries/opentimelineio_contrib', '.'),
1417
('binaries/opentime.dll', '.'),
1518
('binaries/opentimelineio.dll', '.'),
16-
('binaries/redis', '.'),
19+
*shared
1720
]
21+
shared = []
1822

1923
a = Analysis(['render.py'],
2024
pathex=['/home/drei/repos/JC-renderer'],
2125
binaries=binaries,
2226
datas=[
2327
('version.txt', '.'),
28+
*shared
2429
],
2530
hiddenimports=[
2631
'fractions',

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.1
1+
0.0.2

0 commit comments

Comments
 (0)