English Ideas For UnrealSoftware Site

2,072 replies
Goto Page
To the start Previous 1 2 ... 101 102 103 104 Next To the start
13.05.21 11:41:13 pm
Up
ohaz
User
Offline Off
Why would you ever want the API to be accessible via HTTP.
https://ohaz.engineer - Software Engineering
13.05.21 11:53:22 pm
Up
Hajt
User
Offline Off
@user ohaz: It's public data API so i don't see reason to keep connection secure and HTTP will be faster, less stressful for server.
15.05.21 02:47:54 pm
Up
DC
Admin
Offline Off
I agree with user ohaz that HTTP should not be used anymore. It can be considered deprecated. Always use HTTPS instead if possible.

Unreal Software actually still supports HTTP because CS2D doesn't support HTTPS. I don't understand my rewrite rule anymore though. lol.
Code:
1
2
3
4
5
RewriteEngine on
RewriteCond %{SERVER_NAME} =www.unrealsoftware.de [OR]
RewriteCond %{SERVER_NAME} =unrealsoftware.de
RewriteCond %{HTTP_USER_AGENT} !^$
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]

I guess that means that you will always be redirected to HTTPS unless your user agent is empty or something like that. So if you can change your user agent in requests you can take advantage of this fallback and prevent the redirect to HTTPS.

Regarding requesting multiple values at once: Will consider to implement that. Good idea.

Edit:
Added. You can now use "json" as "data" param to get all values as JSON.
https://www.unrealsoftware.de/dev.php
edited 1×, last 15.05.21 03:14:18 pm
www.UnrealSoftware.de | www.CS2D.com | www.CarnageContest.com | Use the forum & avoid PMs!
15.05.21 06:48:54 pm
Up
ohaz
User
Offline Off
user Hajt has written:
HTTP will be faster, less stressful for server.
Servers really don't care about the stress of HTTPS anymore. It was a bit of a problem 26 years ago. It isn't anymore. Same goes for speed.
https://ohaz.engineer - Software Engineering
15.05.21 08:49:47 pm
Up
Mami Tomoe
User
Offline Off
Quote >


Consider listing the user modes somewhere, a way for us to convert the ID to text more easily.
It's hard being the best girl in the whole entire world
15.05.21 10:03:07 pm
Up
DC
Admin
Offline Off
Somewhere is here.
Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
switch ($mode){
          case 0:return '<span style="color:#999">User</span>'; break;
          case 1:return '<span style="color:#955">Idiot</span>'; break;
          case 50:return '<span style="color:#999">Super User</span>'; break;
          case 51:return '<span style="color:#760">Gold User</span>'; break;
          case 52:return '<span style="color:#097">Supporter</span>'; break;
          case 53:return '<span style="color:#7D134B">Security Supporter</span>'; break;
          case 54:return '<span style="color:#E92">Reviewer</span>'; break;
          case 99:return '<span style="color:#070">Moderator</span>'; break;
          case 100:return '<span style="color:#090">Admin</span>'; break;
          case -97:return '<span style="color:#A00">GAME BANNED</span>'; break;
          case -98:return '<span style="color:#A00">COMMUNITY BANNED</span>'; break;
          case -99:return '<span style="color:#A00">BANNED</span>'; break;
          case -100:return '<span style="color:#A00">'.l('NICHT AKTIVIERT','NOT ACTIVATED').'</span>'; break;
     }
www.UnrealSoftware.de | www.CS2D.com | www.CarnageContest.com | Use the forum & avoid PMs!
15.05.21 10:30:04 pm
Up
Mami Tomoe
User
Offline Off
@user DC: Gold User? Supporter? Hah, what are those?
Also, shouldn't the Idiot mode be something like -1?
It's hard being the best girl in the whole entire world
15.05.21 11:24:20 pm
Up
Hador
User
Offline Off
user Mami Tomoe has written:
@user DC: Gold User? Supporter? Hah, what are those?


You get to unlock those as part of the 10th us anniversary tote bag every active user gets - you get to unlock all kinds of cool stuff like the red and blue colour schemes, an extended range of forum emoticons and access to experimental Stranded III builds. 5/7 would recommend
Hador
16.05.21 12:43:53 pm
Up
DC
Admin
Offline Off
@user Mami Tomoe: Not all of these are in use. They currently have no meaning.

Currently all negative modes mean "banned" / "no access". Therefore "idiot" can't be negative. Of course I could change that logic but there's no real reason to do so.
www.UnrealSoftware.de | www.CS2D.com | www.CarnageContest.com | Use the forum & avoid PMs!
30.05.21 02:51:23 am
Up
Mami Tomoe
User
Offline Off
I've recently stumbled across the user user JamppaCK which has an animated avatar (GIF).
That made me realise that GIFs were supported a few years ago, why were they removed? And is it planned to ever allow APNG or GIF avatars?


EDIT:
Also, I'd like to be able to request "days since registration" using the Unreal Software API.
The result would be a CSV of two values.
days,approximate


Example:
57,0
edited 2×, last 20.06.21 07:18:14 pm
It's hard being the best girl in the whole entire world
20.06.21 08:58:13 pm
Up
Hador
User
Offline Off
user Mami Tomoe has written:
I've recently stumbled across the user user JamppaCK which has an animated avatar (GIF).
That made me realise that GIFs were supported a few years ago, why were they removed? And is it planned to ever allow APNG or GIF avatars?



That was a bit of a discussion once, quite well summed up here: thread us No Animated Avatars
Hador
25.06.21 01:28:43 pm
Up
StirlizZ-Fapicon
Super User
Offline Off
How about a proper video player on a web-site? Just like in FB idk
CS2d for ANDROID Discord server is here: https://discord.gg/ww59nvf
30.06.21 06:23:34 pm
Up
YuriNikolai
User
Offline Off
This is quite a small suggestion, but on the login page's phishing warning, the screenshot still shows an http link to the unrealsoftware website instead of https. Maybe now that the website defaults to https that could be updated, since that screen is telling inexperienced users what to look for?
02.09.21 07:16:40 pm
Up
Mami Tomoe
User
Offline Off
Code:
1
https://unrealsoftware.de/users.php?raw&s=STARTOFFSET&c=COUNT

Setting COUNT to 0 should display all users by default, currently it displays none (literally 0).
It's hard being the best girl in the whole entire world
04.09.21 09:53:41 pm
Up
DC
Admin
Offline Off
@user Mami Tomoe: I don't really like that behavior because requesting all users causes heavy load on the server and therefore definitely shouldn't be the "default" behavior.

Just insert a super high number for
c
and everything is fine.
www.UnrealSoftware.de | www.CS2D.com | www.CarnageContest.com | Use the forum & avoid PMs!
18.09.21 07:56:22 pm
Up
Starkkz
Moderator
Offline Off
@user DC: Can you make the forum collect in-game data? For example, when a player logs in-game with his U.S.G.N. account have his in-game IP recorded on the account. And maybe, also the steam id.
lol
18.09.21 09:43:10 pm
Up
ohaz
User
Offline Off
That sounds like a recipe for disaster concerning privacy laws
https://ohaz.engineer - Software Engineering
22.10.21 01:02:27 pm
Up
Kolia_rus
GAME BANNED
Offline Off
Can we have RSS feed about new files like we have a feed about posts and news? https://www.unrealsoftware.de/rss.php
You received a game ban because you seem to be a cheater. You are not able to log-in in-game anymore.
24.10.21 11:32:05 am
Up
DC
Admin
Offline Off
@user Kolia_rus: That wouldn't be complicated I guess but are you really still using RSS feeds?
www.UnrealSoftware.de | www.CS2D.com | www.CarnageContest.com | Use the forum & avoid PMs!
24.10.21 04:52:07 pm
Up
Kolia_rus
GAME BANNED
Offline Off
Lol no, I just found that the forum posts have own RSS feed but files have not.
You received a game ban because you seem to be a cheater. You are not able to log-in in-game anymore.
To the start Previous 1 2 ... 101 102 103 104 Next To the start