Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@veritas-vos-liberabit.com>2013-03-29 13:16:19 +0400
committerAtsushi Eno <atsushieno@veritas-vos-liberabit.com>2013-03-29 13:16:19 +0400
commit999c19de7111f7dc843e076df271b06d78ce6f56 (patch)
tree8ccf6e132d220fab69196fb5654a141d85df3b07
parent57aa53f72cd766a036628c16a177e51621e01088 (diff)
[xpkg] several fixes are needed for packaging.
components store rejected ReactiveExtensionsForXamarin_*, so I had to rename the component ID. Also there is no way to specify additional file for images, so I changed the image URL to github raw file.
-rw-r--r--xpkg/GettingStarted.md2
-rw-r--r--xpkg/ProjectReferences.pngbin0 -> 24455 bytes
-rw-r--r--xpkg/RxForXamarin_128x128.png (renamed from xpkg/ReactiveExtensionsForXamarin_128x128.png)bin12929 -> 12929 bytes
-rwxr-xr-xxpkg/build-package.sh8
-rw-r--r--xpkg/sample_desc.txt1
5 files changed, 5 insertions, 6 deletions
diff --git a/xpkg/GettingStarted.md b/xpkg/GettingStarted.md
index a15d666..42e3013 100644
--- a/xpkg/GettingStarted.md
+++ b/xpkg/GettingStarted.md
@@ -17,7 +17,7 @@ After adding this component to your project, you would notice that there are sev
All other assemblies are optional and you would like to use them only in certain scenarios. On the other hand, those four assemblies are essential. So far let's remove other assemblies in this package.
-<img src="ProjectReferences.png" />
+![typical Rx assembly references](https://raw.github.com/mono/rx/master/xpkg/ProjectReferences.png)
(Note that Rx version 2.x is very different from Rx v1.0 in terms of assemblies; Rx 1.0 consists only of System.Reactive.dll, which does not exist in Rx v2.x.)
diff --git a/xpkg/ProjectReferences.png b/xpkg/ProjectReferences.png
new file mode 100644
index 0000000..dd481d1
--- /dev/null
+++ b/xpkg/ProjectReferences.png
Binary files differ
diff --git a/xpkg/ReactiveExtensionsForXamarin_128x128.png b/xpkg/RxForXamarin_128x128.png
index 9da8fee..9da8fee 100644
--- a/xpkg/ReactiveExtensionsForXamarin_128x128.png
+++ b/xpkg/RxForXamarin_128x128.png
Binary files differ
diff --git a/xpkg/build-package.sh b/xpkg/build-package.sh
index e9d689c..2d7c55b 100755
--- a/xpkg/build-package.sh
+++ b/xpkg/build-package.sh
@@ -1,7 +1,7 @@
#!/bin/sh
-mono xpkg.exe create ReactiveExtensionsForXamarin-2.1.xam \
- --name="Reactive Extensions for Android" \
+mono xpkg.exe create RxForXamarin-2.1.xam \
+ --name="Reactive Extensions (Rx) for Xamarin" \
--publisher="Xamarin, Inc." \
--website="http://www.xamarin.com" \
--summary="a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operators." \
@@ -21,7 +21,7 @@ mono xpkg.exe create ReactiveExtensionsForXamarin-2.1.xam \
--library=iOS:Rx_Xamarin/iOS/libs/System.Reactive.Debugger.dll \
--details=Details.md \
--getting-started=GettingStarted.md \
- --getting-started=Details.md \
- --icon=ReactiveExtensionsForXamarin_128x128.png \
+ --details=Details.md \
+ --icon=RxForXamarin_128x128.png \
--sample="Touch Event Observable Sample. Observable event pattern conversion sample using View.Touch event:Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample.sln" \
--sample="GitHub API Client Sample. GitHub API client sample demonstrates use of Rx API with GitHub:Rx_Xamarin/android/samples/GithubApiClientSample/GithubApiClientSample.sln"
diff --git a/xpkg/sample_desc.txt b/xpkg/sample_desc.txt
deleted file mode 100644
index 045d291..0000000
--- a/xpkg/sample_desc.txt
+++ /dev/null
@@ -1 +0,0 @@
-GithubApiClientSample demonstrates use of Rx API