Artur Girenko
33ec28b143
v0.2.9
2015-12-14 12:35:27 +01:00
Artur Girenko
da97f17a0a
follow best practices of re-frame and give an app-db a schema
2015-12-13 22:49:54 +01:00
Artur Girenko
bef4f05188
v0.2.8
2015-12-09 22:35:48 +01:00
Artur Girenko
d100bed400
make init command run on Linux
...
- xcode based commands now checks for xcode availability, updates config lazily
2015-12-09 22:32:25 +01:00
Artur Girenko
380c922430
v0.2.7
2015-12-07 21:53:45 +01:00
Artur Girenko
91eb41e043
use React Native v0.16.0
2015-12-07 21:52:06 +01:00
Artur Girenko
9037f0b455
use React Native v0.16.0
2015-12-07 21:49:25 +01:00
Artur Girenko
5e0b3f69e8
v0.2.6
2015-12-07 20:37:59 +01:00
Artūr Girenko
8c9e51c0df
Merge pull request #2 from GTDev87/master
...
Default to iPhone 6
2015-12-07 20:17:17 +01:00
Gregory Thompson
1fe89cf6fd
fixed change that did not allow .re-natal creation
2015-12-07 10:37:32 -05:00
Artur Girenko
954227c805
remove outdated documentation
2015-12-06 21:37:40 +01:00
Artur Girenko
1c10067977
v0.2.5
2015-12-06 21:24:42 +01:00
Artur Girenko
0437144dd7
fix typos in readme
2015-12-06 21:23:14 +01:00
Artur Girenko
871866d59a
describe how to use Figwheel with Android simulators
2015-12-06 21:19:26 +01:00
Artur Girenko
5d525eb9e7
describe how to use Figwheel with Android simulators
2015-12-06 21:17:52 +01:00
Artur Girenko
cd3b3b5755
clean workspace on use-figwheel command, otherwise require_img macro is not recompiled and might be outdated.
2015-12-06 20:53:49 +01:00
Artur Girenko
577f7c6954
add support for configuring server host to support Android simulators
...
- Genymotion simulator should use 10.0.3.2 instead of localhost
- Stock android emulator should use 10.0.2.2 instead of localhost
2015-12-06 20:22:53 +01:00
Artur Girenko
8ec6608919
update readme to recommend using real Android device as Figwheel does not work in simulator yet
2015-12-06 12:55:52 +01:00
Artur Girenko
200dd706b0
v0.2.4
2015-12-06 12:35:53 +01:00
Artur Girenko
e02a9339b4
update readme upgrade guide
2015-12-06 12:31:45 +01:00
Artur Girenko
51c64f35e2
update guide, Debug in Chrome not mandatory anymore
2015-12-06 12:09:28 +01:00
Artur Girenko
603e9dc7f2
update readme
2015-12-06 11:52:22 +01:00
Artur Girenko
50d1a0a3f0
describe upgrade topic in Readme
2015-12-06 11:40:40 +01:00
Artur Girenko
927b5de7fe
make Figwheel work without the need of Debug in Chrome
...
- solution by https://github.com/decker405/figwheel-react-native
- remove use-reload command.
- adoptions to figwheel-bridge.js
2015-12-05 23:53:27 +01:00
Artur Girenko
91eac6fd2c
v0.2.3
2015-11-29 22:56:33 +01:00
Artur Girenko
0c71d4a997
fix mistype in readme
2015-11-29 22:37:40 +01:00
Artur Girenko
91824b64ba
add upgrade command
...
For now just overwrite files which should not contain any custom logic.
- figwheel-bridge.js
- files in env/ dir
2015-11-29 22:36:49 +01:00
Artur Girenko
3f96a1384a
fix problem of application state reset on each figwheel reload
...
The application state should stay intact when UI code is reloaded.
2015-11-29 22:10:01 +01:00
Artur Girenko
9adbc49149
v0.2.2
2015-11-29 10:07:49 +01:00
Artur Girenko
72dbc9fa0e
use React Native 0.15.0
2015-11-29 10:05:50 +01:00
Artur Girenko
09cfea4390
remove unused resources dir
2015-11-28 21:22:03 +01:00
Artur Girenko
1c748e565a
Remove wrong statement from readme
...
Figwheel actually works on real Android device.
2015-11-28 17:22:32 +01:00
Artur Girenko
c8bd743992
v0.2.1
2015-11-28 16:50:03 +01:00
Artur Girenko
096327f639
Better describe current support of figwheel
2015-11-28 16:42:37 +01:00
Artur Girenko
a4a8d09fe7
Support loading of static images using approach introduced in RN 0.14
...
- Used macro to generate js/require for prod compilation and {:uri http://localhost:8080/ *} for dev builds.
- Rearranged sources to be able to support dev and prod profiles
2015-11-28 16:20:39 +01:00
Artur Girenko
c482fe17ec
Delete unused Podfile
2015-11-28 11:18:23 +01:00
Artur Girenko
7e8f57c4b7
Update readme
2015-11-28 11:16:03 +01:00
Artur Girenko
ce5e22cd6b
Update readme about problem with static images
...
RN 0.14 provides unified way of accessing static images, but it does not work unless all code is statically accessible (when compiled with optimizations :simple)
2015-11-28 11:13:53 +01:00
Artur Girenko
dae0ffb356
v0.2.0
2015-11-28 01:37:32 +01:00
Artur Girenko
2ec9c9ba83
mention original source in figwheel-breidge.js
2015-11-28 00:46:17 +01:00
Artur Girenko
46a27825f9
Update readme with explanation how to use now
2015-11-28 00:45:38 +01:00
Artur Girenko
ca577b035f
Use lein-figwheel
...
- Removed REPL based on ambly for now, need to find a good solution for both iOS and Android
- Added figwheel based on great work found in https://github.com/decker405/figwheel-react-native
- Android still does not work with figwheel, but reload works very fast
2015-11-27 23:57:14 +01:00
Artur Girenko
f70ae59b55
Use plain vanilla React Native reload based development flow for iOS and Android
...
- Removed REPL based on ambly for now, need to find a good solution for both iOS and Android
2015-11-24 22:44:57 +01:00
Artur Girenko
720903fda6
Use react-native 0.14.2
2015-11-22 18:17:45 +01:00
Artur Girenko
05d5efafd1
Fix broken live coding support in iOS
...
- Revert to react-native 0.13.0 for now
- Use single source root, this seems required for repl
2015-11-22 10:57:51 +01:00
Artur Girenko
e290ec33cb
v0.1.8
2015-11-21 15:17:04 +01:00
Artur Girenko
5194b1e7e9
Fix in Readme
2015-11-21 12:30:33 +01:00
Artur Girenko
c288372dbd
Fix formatting in README.md
2015-11-21 12:07:33 +01:00
Artur Girenko
fc75fe2013
Run in android command is implemented
2015-11-21 12:01:44 +01:00
Artur Girenko
b87ad2b6a3
Update readme
2015-11-21 10:42:24 +01:00