Skip to content

Commit 39a90f4

Browse files
committed
metedata refix
1 parent 342e9c1 commit 39a90f4

File tree

5 files changed

+32
-32
lines changed

5 files changed

+32
-32
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# ValaSimpleHTTPServer
1+
# VServer
22

33

4-
ValaSimpleHTTPServer opens a basic http server in the desired folder. Very usefull to share files in a easy and fast way.
4+
VServer opens a basic http server in the desired folder. Very usefull to share files in a easy and fast way.
55

66
It is "inspired" in the python SimpleHTTPServer.
Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
1-
21
<?xml version="1.0" encoding="UTF-8"?>
32
<!-- Copyright 2018 Eduard Berloso Clarà <eduard.bc.95@gmail.com> -->
4-
<component type="desktop-application">
3+
<component type="desktop">
54
<id>com.github.bcedu.valasimplehttpserver</id>
65
<metadata_license>CC0-1.0</metadata_license>
7-
<project_license>AGPL-3.0</project_license>
8-
<name>HTTP File Server</name>
9-
<summary>Acces to your files from any device in the same network.</summary>
6+
<project_license>GPL-3.0+</project_license>
107
<developer_name>Eduard Berloso Clarà</developer_name>
11-
<provides>
12-
<binary>com.github.bcedu.valasimplehttpserver</binary>
13-
</provides>
8+
<name>VServer</name>
9+
<summary>Acces to your files from any device in the same network</summary>
10+
<description>
11+
<p>Acces to your files from any device in the same network with VServer!
12+
</p>
13+
<p>VServer opens an http server in a selected folder. You can acces to the files of the selected folder from any device in the same network by going to the given link.</p>
14+
<p>It has been developed to follow the same behaviour than the wellknown python's simpleHTTPserver.
15+
</p>
16+
<p>It also works throught comand line options. Try typing 'com.github.bcedu.valasimplehttpserver --help' to learn more.</p>
17+
</description>
18+
<custom>
19+
<value key="x-appcenter-color-primary">#56A9E3</value>
20+
<value key="x-appcenter-color-primary-text">rgb(0,0,0)</value>
21+
<value key="x-appcenter-suggested-price">0</value>
22+
</custom>
1423
<screenshots>
1524
<screenshot type="default">
16-
<image>https://github.com/bcedu/ValaSimpleHTTPServer/blob/master/data/imgs/init.png</image>
25+
<image>https://raw.githubusercontent.com/bcedu/ValaSimpleHTTPServer/master/data/imgs/init.png</image>
1726
</screenshot>
1827
<screenshot type="default">
19-
<image>https://github.com/bcedu/ValaSimpleHTTPServer/blob/master/data/imgs/sharing.png</image>
28+
<image>https://raw.githubusercontent.com/bcedu/ValaSimpleHTTPServer/master/data/imgs/sharing.png</image>
2029
</screenshot>
2130
<screenshot type="default">
22-
<image>https://github.com/bcedu/ValaSimpleHTTPServer/blob/master/data/imgs/browser.png</image>
31+
<image>https://raw.githubusercontent.com/bcedu/ValaSimpleHTTPServer/master/data/imgs/browser.png</image>
2332
</screenshot>
2433
</screenshots>
25-
<description>
26-
<p>Acces to your files from any device in the same network!</p>
27-
<br><br>
28-
<p>ValaSimpleHTTPServers opens an http server in a selected folder. You can acces to the files of the selected folder from any device in the same network by going to the given link.
29-
<br>It has been developed to follow the same behaviour than the wellknown python's simpleHTTPserver.</p>
30-
<br><p>It also works throught comand line options. Try typing 'com.github.bcedu.valasimplehttpserver --help' to learn more.</p>
31-
</description>
3234
<releases>
3335
<release version="1.0.0" date="2018-11-19">
3436
<description>
3537
<p>Initial 1.0.2 release!</p>
3638
<ul>
3739
<li>Start an http server through a clean and minimalist gui.</li>
38-
<li>Use the command line options to start an http server through the console.</li>
40+
<li>Use the command line options to start an http server through the console (type "com.github.bcedu.valasimplehttpserver --help" to learn more).</li>
3941
</ul>
4042
</description>
4143
</release>
4244
</releases>
45+
<provides>
46+
<binary>com.github.bcedu.valasimplehttpserver</binary>
47+
</provides>
4348
<url type="homepage">https://github.com/bcedu/ValaSimpleHTTPServer</url>
4449
<url type="bugtracker">https://github.com/bcedu/ValaSimpleHTTPServer/issues</url>
4550
<url type="help">https://github.com/bcedu/ValaSimpleHTTPServer/issues</url>
4651
<update_contact>eduard.bc.95@gmail.com</update_contact>
47-
<custom>
48-
<value key="x-appcenter-color-primary">#56A9E3</value>
49-
<value key="x-appcenter-color-primary-text">#000000</value>
50-
<value key="x-appcenter-suggested-price">0</value>
51-
</custom>
5252
</component>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[Desktop Entry]
2-
Name=HTTP File Server
3-
Comment=Open an http server in the selected folder and shhare your files.
2+
Name=VServer
3+
Comment=Open an http server in the selected folder and share your files.
44
Icon=com.github.bcedu.valasimplehttpserver
55
Exec=com.github.bcedu.valasimplehttpserver
66
Terminal=false
77
Type=Application
88
StartupNotify=true
99
Categories=GNOME;GTK;Network;
10-
Keywords=app;vala;share;files;server;
10+
Keywords=app;vala;share;files;server;http;

debian/changelog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
com.github.bcedu.ValaSimpleHTTPServer (1.0) precise; urgency=low
1+
com.github.bcedu.valasimplehttpserver (1.0) precise; urgency=low
22

33
[ Eduard Berloso Clarà ]
4-
* Juno release of ValaSimpleHTTPServer.
4+
* Juno release of VServer.
55

66

77
-- Eduard Berloso Clarà <eduard.bc.95@gmail.com> Sun, 18 Nov 2018 17:25:57 +0100

src/configs/constants.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace App.Configs {
2828

2929
public abstract const string ID = "com.github.bcedu.valasimplehttpserver";
3030
public abstract const string VERSION = "1.0.0";
31-
public abstract const string PROGRAME_NAME = "HTTP File Server";
31+
public abstract const string PROGRAME_NAME = "VServer";
3232
public abstract const string APP_YEARS = "2018";
3333
public abstract const string APP_ICON = "com.github.bcedu.valasimplehttpserver";
3434
public abstract const string ABOUT_COMMENTS = "Simple File Server";

0 commit comments

Comments
 (0)