Skip to content

Commit

Permalink
Remove an excess newline.
Browse files Browse the repository at this point in the history
FossilOrigin-Name: f53a44922e0a7f1e37a3a14c088691c6867e77d2
  • Loading branch information
jaccarmac committed Apr 4, 2015
1 parent 353cfda commit 21465fb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cordova/config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.jaccarmac.draftboys" version="0.5.0"
<widget id="com.jaccarmac.draftboys" version="0.5.1"
xmlns="http://www.w3.org/ns/widgets"
xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>DRAFTBOYS</name>
Expand Down
2 changes: 1 addition & 1 deletion cordova/platforms/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="500" android:versionName="0.5.0" package="com.jaccarmac.draftboys" xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:hardwareAccelerated="true" android:versionCode="501" android:versionName="0.5.1" package="com.jaccarmac.draftboys" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name">
Expand Down
2 changes: 1 addition & 1 deletion cordova/platforms/android/res/xml/config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.jaccarmac.draftboys" version="0.5.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="com.jaccarmac.draftboys" version="0.5.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<preference name="loglevel" value="DEBUG" />
<name>DRAFTBOYS</name>
<description>
Expand Down
1 change: 0 additions & 1 deletion cordova/src/draftboys.nim
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ proc placeholderListener(event: ref TEvent) =
placeholder.innerHTML = "Hello from Nim! "
placeholder.innerHTML = $placeholder.innerHTML & $api


document.addEventListener("deviceready", placeholderListener)
3 changes: 1 addition & 2 deletions draftboys.org
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ will help me practice Cordova, Nim, literate programming, and App Engine.
#+NAME: config.xml
#+BEGIN_SRC xml
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.jaccarmac.draftboys" version="0.5.0"
<widget id="com.jaccarmac.draftboys" version="0.5.1"
xmlns="http://www.w3.org/ns/widgets"
xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>DRAFTBOYS</name>
Expand Down Expand Up @@ -177,7 +177,6 @@ will help me practice Cordova, Nim, literate programming, and App Engine.
placeholder.innerHTML = "Hello from Nim! "
placeholder.innerHTML = $placeholder.innerHTML & $api


document.addEventListener("deviceready", placeholderListener)
#+END_SRC

Expand Down

0 comments on commit 21465fb

Please sign in to comment.