File tree Expand file tree Collapse file tree 4 files changed +9
-12
lines changed
Expand file tree Collapse file tree 4 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Add `live_debugger` to your list of dependencies in `mix.exs`:
3131``` elixir
3232 defp deps do
3333 [
34- {:live_debugger , " ~> 0.2 .0" , only: :dev }
34+ {:live_debugger , " ~> 0.3 .0" , only: :dev }
3535 ]
3636 end
3737```
@@ -60,8 +60,8 @@ mix igniter.install live_debugger
6060
6161Since version v0.2.0 you can install official LiveDebugger DevTools extension, giving you the ability to interact with its features alongside your application's runtime.
6262
63- - [ Chrome extension] ( https://chromewebstore.google.com/detail/gmdfnfcigbfkmghbjeelmbkbiglbmbpe?utm_source=item-share-cb )
64- - Firefox extension - coming soon!
63+ - [ Chrome extension] ( https://chromewebstore.google.com/detail/gmdfnfcigbfkmghbjeelmbkbiglbmbpe )
64+ - [ Firefox extension] ( https://addons.mozilla.org/en-US/firefox/addon/livedebugger-devtools/ )
6565
6666> [ !NOTE]
6767> Ensure the main LiveDebugger dependency is added to your mix project, as the browser plugin alone is not enough.
Original file line number Diff line number Diff line change 11{
22 "manifest_version" : 3 ,
33 "name" : " LiveDebugger DevTools" ,
4- "version" : " 0.1.0 " ,
4+ "version" : " 0.1.2 " ,
55 "description" : " Extension which allows running LiveDebugger inside DevTools" ,
66 "author" : " SWM" ,
7- "permissions" : [
8- " webNavigation" ,
9- " clipboardWrite"
10- ],
7+ "permissions" : [" webNavigation" , " clipboardWrite" ],
118 "icons" : {
129 "16" : " images/icon-16.png" ,
1310 "32" : " images/icon-32.png" ,
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Add `live_debugger` to your list of dependencies in `mix.exs`:
2424``` elixir
2525 defp deps do
2626 [
27- {:live_debugger , " ~> 0.2 .0" , only: :dev }
27+ {:live_debugger , " ~> 0.3 .0" , only: :dev }
2828 ]
2929 end
3030```
@@ -55,8 +55,8 @@ mix igniter.install live_debugger
5555
5656Since version v0.2.0 you can install official LiveDebugger DevTools extension, giving you the ability to interact with its features alongside your application's runtime.
5757
58- - [ Chrome extension] ( https://chromewebstore.google.com/detail/gmdfnfcigbfkmghbjeelmbkbiglbmbpe?utm_source=item-share-cb )
59- - Firefox extension - coming soon!
58+ - [ Chrome extension] ( https://chromewebstore.google.com/detail/gmdfnfcigbfkmghbjeelmbkbiglbmbpe )
59+ - [ Firefox extension] ( https://addons.mozilla.org/en-US/firefox/addon/livedebugger-devtools/ )
6060
6161> #### Note {: .info}
6262>
Original file line number Diff line number Diff line change 11defmodule LiveDebugger.MixProject do
22 use Mix.Project
33
4- @ version "0.3.0-dev "
4+ @ version "0.3.0"
55
66 def project do
77 [
You can’t perform that action at this time.
0 commit comments