<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/d5xdxf/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/d5xdxf/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Sun, 29 Jun 2025 20:40:12 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/d5xdxf/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by romero666</title><link>https://sourceforge.net/p/d5xdxf/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,3 +1,16 @@
+
+The dictionaries for german and spanish are included.
+The Android Version is tested for Android 11 .
+The binary Version is tested for Ubuntu 20.04.6 LTS .
+
+## Usability
+
+The pre alpha Version is more a beta Version and usable.
+The double click for search on the left side must be longer and or double
+because of an issue from KivyMD1.....
+The Search Results Window at the top is just one line for Android instead of the bin Version.
+In both cases the Window is scrollable. The precise needs a double click to show the translation
+in the window at the bottom!!!



&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">romero666</dc:creator><pubDate>Sun, 29 Jun 2025 20:40:12 -0000</pubDate><guid>https://sourceforge.net41e49e19ac1f7704e15de11a441c6b1188028ecf</guid></item><item><title>Home modified by romero666</title><link>https://sourceforge.net/p/d5xdxf/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,3 +1,109 @@
+
+
+
+## SOME NOTES
+
+python3.10 -m venv .venv
+source .venv/bin/activate
+
+pip install --upgrade pip
+pip install https://github.com/kivymd/KivyMD/archive/master.zip
+
+git clone https://github.com/kivymd/KivyMD.git
+git clone https://github.com/kivy/kivy.git
+
+mkdir './KivyMD/examples/examples'
+cp './KivyMD/examples/common_app.py' './KivyMD/examples/examples/common_app.py'
+
+python3 './KivyMD/examples/hero.py'
+python3 './kivy/examples/audio/main.py'
+
+git clone https://git.code.sf.net/p/d5xdxf/code d5xdxf-code
+
+
+#####
+
+python3 './KivyMD/examples/appbar.py' 
+python3 './KivyMD/examples/badge.py' 
+python3 './KivyMD/examples/bottomappbar.py' 
+python3 './KivyMD/examples/bottomsheet.py'
+python3 './KivyMD/examples/button.py'
+python3 './KivyMD/examples/card.py'
+python3 './KivyMD/examples/checkbox.py'
+python3 './KivyMD/examples/chip.py'
+python3 './KivyMD/examples/datepicker.py'
+python3 './KivyMD/examples/dialog.py'
+python3 './KivyMD/examples/dropdownitem.py'
+
+# FIX
+# for name_color in self.theme_cls.current_schemes_color_data:
+for name_color in self.theme_cls.__dict__.keys():
+python3 './KivyMD/examples/dynamic_color_image.py'
+
+python3 './KivyMD/examples/dynamic_color_schemes.py'
+python3 './KivyMD/examples/expansionpanel.py'
+python3 './KivyMD/examples/hero.py'
+python3 './KivyMD/examples/imagelist.py'
+python3 './KivyMD/examples/label.py'
+python3 './KivyMD/examples/list.py'
+python3 './KivyMD/examples/material_scroll.py'
+
+python3 './KivyMD/examples/md_axis_transition.py'
+python3 './KivyMD/examples/md_transitions.py'
+# AttributeError: module 'math' has no attribute 'cbrt'
+# https://docs.python.org/3/library/math.html
+# Added in version 3.11
+
+python3 './KivyMD/examples/navigation_bar.py'
+python3 './KivyMD/examples/navigationdrawer.py'
+python3 './KivyMD/examples/navigation_rail.py'
+python3 './KivyMD/examples/progressindicator.py'
+python3 './KivyMD/examples/segmented_button.py'
+python3 './KivyMD/examples/slider.py'
+python3 './KivyMD/examples/snackbar.py'
+python3 './KivyMD/examples/switch.py'
+python3 './KivyMD/examples/tab.py'
+python3 './KivyMD/examples/textfield.py'
+python3 './KivyMD/examples/timepicker.py'
+python3 './KivyMD/examples/tooltip.py'
+
+################################
+sudo apt install python3.10-dev
+# pyinstaller --onefile d5xdxf-code/main.py
+pyinstaller d5xdxf.spec
+
+###############################
+pip3 install --upgrade buildozer
+(.venv) buildozer init
+File buildozer.spec created, ready to customize!
+
+sudo apt install -y git zip unzip openjdk-17-jdk python3-pip autoconf libtool pkg-config zlib1g-dev libncurses5-dev libncursesw5-dev libtinfo5 cmake libffi-dev libssl-dev
+
+pip3 install  --upgrade Cython==0.29.33 virtualenv
+
+buildozer appclean
+
+buildozer -v android debug
+
+(.venv)$ ls -lah d5xdxf-code/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/dists/myapp/build/outputs/apk/debug/myapp-debug.apk 
+-rw-rw-r-- 1 xxx xxx 72M Jun 19 22:04 d5xdxf-code/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/dists/myapp/build/outputs/apk/debug/myapp-debug.apk
+
+buildozer android deploy run logcat
+
+
+###########################
+# generate apk
+cd 'd5xdxf_kivyMD2'
+source .venv/bin/activate
+cd d5xdxf-code
+buildozer -v android debug
+
+###########################
+# create bin
+pyinstaller d5xdxf.spec
+
+
+
 Welcome to your wiki!

 This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">romero666</dc:creator><pubDate>Sun, 29 Jun 2025 20:15:27 -0000</pubDate><guid>https://sourceforge.net8d20399371be4f8e1fbcd2ca74b9cfc1a3dbbb1a</guid></item><item><title>Home modified by romero666</title><link>https://sourceforge.net/p/d5xdxf/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/d5xdxf/wiki/markdown_syntax/" rel="nofollow"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
    &lt;ul class="md-users-list"&gt;
        &lt;li&gt;&lt;a href="/u/romero666/"&gt;romero666&lt;/a&gt; (admin)&lt;/li&gt;
        
    &lt;/ul&gt;&lt;br/&gt;
&lt;p&gt;&lt;span class="download-button-665ddc8521e18fe3ef90bbc5" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">romero666</dc:creator><pubDate>Sun, 29 Jun 2025 20:11:27 -0000</pubDate><guid>https://sourceforge.net12031c8e35728eb3a7a6b8fb3ab512613fca5fd3</guid></item></channel></rss>