ya2 · news · projects · code · about

fixed long_description_content_type
authorFlavio Calva <f.calva@gmail.com>
Tue, 12 Oct 2021 21:10:13 +0000 (23:10 +0200)
committerFlavio Calva <f.calva@gmail.com>
Tue, 12 Oct 2021 21:10:13 +0000 (23:10 +0200)
.gitignore
README
setup.py

index 3f7a73694fcd460487ec288bf052f62bebb7cfb0..76e3178f9f01e926e11ce55c382d615cf3214fa5 100644 (file)
@@ -1,4 +1,4 @@
 /__pycache__/
 /docs/
 /dist/
-/src/panda3d_appimage.egg-info/
\ No newline at end of file
+/src/panda3d_flatpak.egg-info/
\ No newline at end of file
diff --git a/README b/README
index 03005ddd5edba141020adcc173d02d79a05ea2e1..6b128fcb7721861485233c1ce82e2661a0d1b98f 100644 (file)
--- a/README
+++ b/README
@@ -30,10 +30,17 @@ setup(
     cmdclass={"bdist_apps": BDistAppsCmd},
     ... )
 
-This article (https://blogs.gnome.org/alexl/2017/02/10/maintaining-a-flatpak-repository/)
+This article
+(https://blogs.gnome.org/alexl/2017/02/10/maintaining-a-flatpak-repository/)
 contains a section which explains how to create GPG keys for signing Flatpak
 repos.
 
+UPDATES =======================================================================
+
+If you built a Flatpak repo, and later you modify your code and execute 'python
+setup.py bdist_apps' again, your Flatpak repo will be updated. So, your users
+can do their 'flatpak update' command to update your project.
+
 EXAMPLE =======================================================================
 
 Let's build a Flatpak repository for the Panda3D's Asteroids example.
@@ -77,6 +84,7 @@ flatpak --user install file:///home/you/panda3d/samples/asteroids/dist/asteroids
 Let's run Asteroids:
 flatpak run org.panda3d.Asteroids
 
-Now, you can rebuild it changing the URL (from file:///... to https://...), so
-you can use it online (in place of locally): just upload the repo and the
-.flatpakref and everything should work.
\ No newline at end of file
+Now, you can delete build/ and dist/, then you can rebuild it changing the URL
+(from file:///... to https://...), so you can use it online (in place of
+locally): just upload the repo to the path you specified and the .flatpakref
+somewhere and everything should work.
\ No newline at end of file
index fdd031860d9adeb1a5232d783f61b71876609c97..49bd0629ac0bc260c0cf5f7829b3ff1acbd7ca00 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -38,7 +38,7 @@ if __name__ == '__main__':
         author_email='f.calva@gmail.com',
         description='Flatpak support for Panda3D',
         long_description=long_description,
-        long_descrition_content_type='text/plain',
+        long_description_content_type='text/plain',
         url='http://www.ya2tech.it/pages/panda3d-flatpak.html',
         project_urls={
             'Repository': 'http://git.ya2tech.it/?p=panda3d-flatpak.git',