author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
532,307
29.08.2020 19:45:47
25,200
f1343c1d77b3e8e135da32b0b99e5995db0c4717
Publish console message on initial startup for disk sizing
[ { "change_type": "MODIFY", "old_path": "server/power.go", "new_path": "server/power.go", "diff": "@@ -141,6 +141,7 @@ func (s *Server) onBeforeStart() error {\n// and process resource limits are correctly applied.\ns.SyncWithEnvironment()\n+ s.PublishConsoleOutputFromDaemon(\"Checking server disk sp...
Go
MIT License
pterodactyl/wings
Publish console message on initial startup for disk sizing
532,307
31.08.2020 20:27:41
25,200
d742acf308058ee601952e0321b2d3fb4d6e38ca
Minimize blocking in Filesystem.getCachedDiskUsage
[ { "change_type": "MODIFY", "old_path": "router/router_server_files.go", "new_path": "router/router_server_files.go", "diff": "@@ -287,7 +287,7 @@ func postServerCompressFiles(c *gin.Context) {\nreturn\n}\n- if !s.Filesystem.HasSpaceAvailable() {\n+ if !s.Filesystem.HasSpaceAvailable(true) {\nc.Abort...
Go
MIT License
pterodactyl/wings
Minimize blocking in Filesystem.getCachedDiskUsage (#53)
532,307
31.08.2020 22:10:57
25,200
1d22e84f21eee9257dfad7c0fe76441f1f589a9d
Allow a stale value on startup for disk size if the disk is unlimited.
[ { "change_type": "MODIFY", "old_path": "server/power.go", "new_path": "server/power.go", "diff": "@@ -141,10 +141,16 @@ func (s *Server) onBeforeStart() error {\n// and process resource limits are correctly applied.\ns.SyncWithEnvironment()\n+ // If a server has unlimited disk space, we don't care e...
Go
MIT License
pterodactyl/wings
Allow a stale value on startup for disk size if the disk is unlimited.
532,331
17.09.2020 23:48:09
14,400
033e8e7573f0b7256581021ca3bd9f7ae0eee305
Add GoReportcard badge Adds GoReportcard Badge
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "[![Logo Image](https://cdn.pterodactyl.io/logos/new/pterodactyl_logo.png)](https://pterodactyl.io)\n[![Discord](https://img.shields.io/discord/122900397965705216.svg?style=flat-square&label=Discord)](https://pterod...
Go
MIT License
pterodactyl/wings
Add GoReportcard badge (#57) Adds GoReportcard Badge
532,313
01.10.2020 18:00:26
14,400
b92fab83c8924ad0ccd320aa9c93054add339d55
Removed stray `.` in `./mnt/install`
[ { "change_type": "MODIFY", "old_path": "server/install.go", "new_path": "server/install.go", "diff": "@@ -395,7 +395,7 @@ func (ip *InstallationProcess) Execute() (string, error) {\nAttachStdin: true,\nOpenStdin: true,\nTty: true,\n- Cmd: []string{ip.Script.Entrypoint, \"./mnt/install/install.sh\"},...
Go
MIT License
pterodactyl/wings
Removed stray `.` in `./mnt/install`
532,310
07.10.2020 18:39:58
14,400
4c9aaeb769704c37e794e92b98eb80cb47c36330
fix file parsing resolves loads, edits, and re-writes the file instead of inline edits that seem to break. This inefficient but it works in my testing.
[ { "change_type": "MODIFY", "old_path": "parser/parser.go", "new_path": "parser/parser.go", "diff": "@@ -390,38 +390,31 @@ func (f *ConfigurationFile) parseYamlFile(path string) error {\n// scanning a file and performing a replacement. You should attempt to use anything other\n// than this function w...
Go
MIT License
pterodactyl/wings
fix file parsing resolves #2393 loads, edits, and re-writes the file instead of inline edits that seem to break. This inefficient but it works in my testing.
532,309
08.11.2020 14:42:55
-28,800
33e584b447c28a8a6d74fd5ab8b16c29ac2d7ee5
Turn off the CGO to make it static linked
[ { "change_type": "MODIFY", "old_path": ".github/workflows/build-test.yml", "new_path": ".github/workflows/build-test.yml", "diff": "@@ -32,6 +32,7 @@ jobs:\nenv:\nGOOS: ${{ matrix.goos }}\nGOARCH: ${{ matrix.goarch }}\n+ CGO_ENABLED: 0\nrun: |\ngo build -v -ldflags=\"-s -w -X github.com/pterodactyl/...
Go
MIT License
pterodactyl/wings
Turn off the CGO to make it static linked
532,321
01.12.2020 20:43:40
-3,600
4a7510d36f0dc03791e1070bfdd83cf35eac7f52
Allow multiple publishing on multiple interfaces on same port. Fixes the issue where you cannot have multiple ip addresses on the same port for a server.
[ { "change_type": "MODIFY", "old_path": "environment/allocations.go", "new_path": "environment/allocations.go", "diff": "@@ -38,15 +38,26 @@ func (a *Allocations) Bindings() nat.PortMap {\ncontinue\n}\n- binding := []nat.PortBinding{\n- {\n+ binding := nat.PortBinding{\nHostIP: ip,\nHostPort: strconv...
Go
MIT License
pterodactyl/wings
Allow multiple publishing on multiple interfaces on same port. Fixes the issue where you cannot have multiple ip addresses on the same port for a server.
532,326
15.12.2020 22:59:18
18,000
8f26c31df640260c27358f25230d74bd16444bde
Support downloading remote files to a server via the API
[ { "change_type": "MODIFY", "old_path": "router/middleware.go", "new_path": "router/middleware.go", "diff": "package router\nimport (\n+ \"errors\"\n\"github.com/gin-gonic/gin\"\n\"github.com/google/uuid\"\n\"github.com/pterodactyl/wings/config\"\n@@ -60,6 +61,9 @@ func AuthorizationMiddleware(c *gin...
Go
MIT License
pterodactyl/wings
Support downloading remote files to a server via the API Co-authored-by: Dane Everitt <dane@daneeveritt.com>
532,333
03.01.2021 19:24:28
18,000
a822c7c340d4e5cdbaeba1cfb87cfe7acb5ad74b
typo in docker-compose file minor typo i noticed while messing around
[ { "change_type": "MODIFY", "old_path": "docker-compose.example.yml", "new_path": "docker-compose.example.yml", "diff": "@@ -24,7 +24,7 @@ services:\n- \"/tmp/pterodactyl/:/tmp/pterodactyl/\"\n# you may need /srv/daemon-data if you are upgrading from an old daemon\n#- \"/srv/daemon-data/:/srv/daemon-...
Go
MIT License
pterodactyl/wings
typo in docker-compose file (#82) minor typo i noticed while messing around
532,315
21.02.2021 14:41:50
-28,800
4ed0bf522b487bb3c312abbad6dd46f812fec9ae
Quote and escape Content-Disposition header
[ { "change_type": "MODIFY", "old_path": "router/router_download.go", "new_path": "router/router_download.go", "diff": "@@ -52,7 +52,7 @@ func getDownloadBackup(c *gin.Context) {\ndefer f.Close()\nc.Header(\"Content-Length\", strconv.Itoa(int(st.Size())))\n- c.Header(\"Content-Disposition\", \"attachm...
Go
MIT License
pterodactyl/wings
Quote and escape Content-Disposition header
532,323
24.03.2021 10:26:03
-3,600
0c17e240f400b59bda424c653a082850d79dad8a
Added app name
[ { "change_type": "MODIFY", "old_path": "config/config.go", "new_path": "config/config.go", "diff": "@@ -247,6 +247,8 @@ type Configuration struct {\n// if the debug flag is passed through the command line arguments.\nDebug bool\n+ AppName string `json:\"app_name\" yaml:\"app_name\"`\n+\n// A unique ...
Go
MIT License
pterodactyl/wings
Added app name
532,323
02.04.2021 21:32:30
-7,200
b691b8f06febdbfd9b317df1da4de9c930e8a44d
Fixed /api/servers
[ { "change_type": "MODIFY", "old_path": "router/router_system.go", "new_path": "router/router_system.go", "diff": "@@ -28,7 +28,15 @@ func getSystemInformation(c *gin.Context) {\n// Returns all of the servers that are registered and configured correctly on\n// this wings instance.\nfunc getAllServers...
Go
MIT License
pterodactyl/wings
Fixed /api/servers
532,322
02.04.2021 22:45:56
14,400
bec6a6112df97c71f5550ab980cc497df06cf017
Fix reading User.Gid from WINGS_GID over WINGS_UID
[ { "change_type": "MODIFY", "old_path": "config/config.go", "new_path": "config/config.go", "diff": "@@ -395,7 +395,7 @@ func EnsurePterodactylUser() error {\nif sysName == \"busybox\" {\n_config.System.Username = system.FirstNotEmpty(os.Getenv(\"WINGS_USERNAME\"), \"pterodactyl\")\n_config.System.Us...
Go
MIT License
pterodactyl/wings
Fix reading User.Gid from WINGS_GID over WINGS_UID
532,310
12.04.2021 19:38:16
14,400
cfa338108fdf93a8e9fd9938aab03bdcadbfb95b
Fixes ghcr build Removes version pins so packages install properly.
[ { "change_type": "MODIFY", "old_path": "Dockerfile", "new_path": "Dockerfile", "diff": "FROM golang:1.15-alpine3.12 AS builder\nARG VERSION\n-RUN apk add --update --no-cache git=2.26.2-r0 make=4.3-r0 upx=3.96-r0\n+RUN apk add --update --no-cache git make upx\nWORKDIR /app/\nCOPY go.mod go.sum /app/\...
Go
MIT License
pterodactyl/wings
Fixes ghcr build Removes version pins so packages install properly.
532,312
05.07.2021 00:07:46
-7,200
c0a487c47e731576f373f061e03015847ddb4355
Fix environment variables with the same prefix being skipped unintentionally If you have two env variables (for example ONE_VARIABLE and ONE_VARIABLE_NAME) ONE_VARIABLE_NAME has prefix ONE_VARIABLE and will be skipped.
[ { "change_type": "MODIFY", "old_path": "server/server.go", "new_path": "server/server.go", "diff": "@@ -129,7 +129,7 @@ eloop:\nfor k := range s.Config().EnvVars {\n// Don't allow any environment variables that we have already set above.\nfor _, e := range out {\n- if strings.HasPrefix(e, strings.To...
Go
MIT License
pterodactyl/wings
Fix environment variables with the same prefix being skipped unintentionally (#98) If you have two env variables (for example ONE_VARIABLE and ONE_VARIABLE_NAME) ONE_VARIABLE_NAME has prefix ONE_VARIABLE and will be skipped. Co-authored-by: Jakob <dev@schrej.net>
532,316
04.10.2021 08:22:56
25,200
6f9783f164194afe6cd2fc618e81f8c698eefeed
Update CHS Primary Link to chs.gg Update CHS Primary Link to chs.gg
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -30,7 +30,7 @@ I would like to extend my sincere thanks to the following sponsors for helping f\n| [**Spill Hosting**](https://spillhosting.no/) | Spill Hosting is a Norwegian hosting service, which aims for ine...
Go
MIT License
pterodactyl/wings
Update CHS Primary Link to chs.gg (#107) Update CHS Primary Link to chs.gg
532,331
15.11.2021 12:56:43
18,000
66eb993afa61c4a14f1ea71fb64e2525b2d4f9a9
Update diagnostics command
[ { "change_type": "MODIFY", "old_path": "cmd/diagnostics.go", "new_path": "cmd/diagnostics.go", "diff": "@@ -78,7 +78,7 @@ func diagnosticsCmdRun(cmd *cobra.Command, args []string) {\n{\nName: \"ReviewBeforeUpload\",\nPrompt: &survey.Confirm{\n- Message: \"Do you want to review the collected data bef...
Go
MIT License
pterodactyl/wings
Update diagnostics command (#108) Co-authored-by: Matthew Penner <me@matthewp.io>
532,325
17.01.2022 21:55:13
18,000
cdb86abac1eb48bf57f7e3a041a4d89f85bcb4b6
RPM is now tracking v1.5.3
[ { "change_type": "MODIFY", "old_path": "rpm/ptero-wings.spec", "new_path": "rpm/ptero-wings.spec", "diff": "Name: ptero-wings\n-Version: 1.5.0\n+Version: 1.5.3\nRelease: 1%{?dist}\nSummary: The server control plane for Pterodactyl Panel. Written from the ground-up with security, speed, and stability...
Go
MIT License
pterodactyl/wings
RPM is now tracking v1.5.3 (#109)
532,318
17.01.2022 18:55:29
28,800
ed4d903f21ad633d41de896f3656127519fa1700
Redacts redacted info from all
[ { "change_type": "MODIFY", "old_path": "cmd/diagnostics.go", "new_path": "cmd/diagnostics.go", "diff": "@@ -188,6 +188,16 @@ func diagnosticsCmdRun(cmd *cobra.Command, args []string) {\nsurvey.AskOne(&survey.Confirm{Message: \"Upload to \" + diagnosticsArgs.HastebinURL + \"?\", Default: false}, &upl...
Go
MIT License
pterodactyl/wings
Redacts redacted info from all (#112)
532,317
18.01.2022 11:22:13
-28,800
521cc2aef281ca12409cfeae79ee443e11fcf1e6
Don't turn SSL into lowercase
[ { "change_type": "MODIFY", "old_path": "cmd/root.go", "new_path": "cmd/root.go", "diff": "@@ -355,7 +355,7 @@ func rootCmdRun(cmd *cobra.Command, _ []string) {\n// Check if main http server should run with TLS. Otherwise reset the TLS\n// config on the server and then serve it over normal HTTP.\nif ...
Go
MIT License
pterodactyl/wings
Don't turn SSL into lowercase (#114)
532,311
07.05.2022 15:23:56
14,400
6c98a955e3f9220b28e47145a7f3bf9b3d81b9e2
Only set cpu limits if specified; closes pterodactyl/panel#3988
[ { "change_type": "MODIFY", "old_path": "environment/docker/container.go", "new_path": "environment/docker/container.go", "diff": "@@ -480,21 +480,3 @@ func (e *Environment) convertMounts() []mount.Mount {\nreturn out\n}\n-\n-func (e *Environment) resources() container.Resources {\n- l := e.Configura...
Go
MIT License
pterodactyl/wings
Only set cpu limits if specified; closes pterodactyl/panel#3988
532,311
07.05.2022 15:53:08
14,400
1d197714dfdc759d41128ff17d5d7576a75868c4
Fix faulty handling of named pipes; closes pterodactyl/panel#4059
[ { "change_type": "MODIFY", "old_path": "router/router_server_files.go", "new_path": "router/router_server_files.go", "diff": "@@ -37,6 +37,15 @@ func getServerFileContents(c *gin.Context) {\nreturn\n}\ndefer f.Close()\n+ // Don't allow a named pipe to be opened.\n+ //\n+ // @see https://github.com/p...
Go
MIT License
pterodactyl/wings
Fix faulty handling of named pipes; closes pterodactyl/panel#4059
532,311
12.05.2022 18:00:55
14,400
37e4d57cdf4ad7fdd3d42aa8819694183007f225
Don't include files and folders with identical name prefixes when archiving; closes pterodactyl/panel#3946
[ { "change_type": "MODIFY", "old_path": "server/filesystem/archive.go", "new_path": "server/filesystem/archive.go", "diff": "@@ -130,7 +130,7 @@ func (a *Archive) withFilesCallback(tw *tar.Writer) func(path string, de *godirw\nfor _, f := range a.Files {\n// If the given doesn't match, or doesn't hav...
Go
MIT License
pterodactyl/wings
Don't include files and folders with identical name prefixes when archiving; closes pterodactyl/panel#3946
532,311
15.05.2022 16:01:52
14,400
5bcf4164fb8633b9537debaca7980d5ae85aa93a
Add support for public key based auth
[ { "change_type": "MODIFY", "old_path": "remote/types.go", "new_path": "remote/types.go", "diff": "@@ -11,6 +11,11 @@ import (\n\"github.com/pterodactyl/wings/parser\"\n)\n+const (\n+ SftpAuthPassword = SftpAuthRequestType(\"password\")\n+ SftpAuthPublicKey = SftpAuthRequestType(\"public_key\")\n+)\n...
Go
MIT License
pterodactyl/wings
Add support for public key based auth
532,311
15.05.2022 16:17:06
14,400
1927a59cd0c3f80937564564014f45dd7c2c7bd6
Send key correctly; don't retry 4xx errors
[ { "change_type": "MODIFY", "old_path": "remote/http.go", "new_path": "remote/http.go", "diff": "@@ -142,12 +142,10 @@ func (c *client) request(ctx context.Context, method, path string, body io.Reade\nif r.HasError() {\n// Close the request body after returning the error to free up resources.\ndefer ...
Go
MIT License
pterodactyl/wings
Send key correctly; don't retry 4xx errors
532,311
15.05.2022 16:41:26
14,400
5df1acd10ea20476f24f917de30697fc8be931ce
We don't return public keys
[ { "change_type": "MODIFY", "old_path": "remote/types.go", "new_path": "remote/types.go", "diff": "@@ -87,7 +87,6 @@ type SftpAuthRequest struct {\n// user for the SFTP subsystem.\ntype SftpAuthResponse struct {\nServer string `json:\"server\"`\n- PublicKeys []string `json:\"public_keys\"`\nPermissio...
Go
MIT License
pterodactyl/wings
We don't return public keys
532,311
21.05.2022 17:01:12
14,400
f390784973fe5124fff216c5daf8bfb916fb829e
Include error in log output if one occurs during move
[ { "change_type": "MODIFY", "old_path": "router/router_server_files.go", "new_path": "router/router_server_files.go", "diff": "@@ -131,6 +131,10 @@ func putServerRenameFiles(c *gin.Context) {\n// Return nil if the error is an is not exists.\n// NOTE: os.IsNotExist() does not work if the error is wrap...
Go
MIT License
pterodactyl/wings
Include error in log output if one occurs during move
532,311
29.05.2022 21:48:49
14,400
7fa7cc313fbdce5bbe67cf0ccbf5a2f713d89279
Fix permissions not being checked correctly for admins
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "# Changelog\n+## v1.6.3\n+### Fixed\n+* Fixes SFTP authentication failing for administrative users due to a permissions adjustment on the Panel.\n+\n## v1.6.2\n### Fixed\n* Fixes file upload size not being pr...
Go
MIT License
pterodactyl/wings
Fix permissions not being checked correctly for admins
532,311
30.05.2022 17:45:41
14,400
203a2091a071cecef4f070df2a149415012d57d9
Use the correct CPU period when throttling servers; closes pterodactyl/panel#4102
[ { "change_type": "MODIFY", "old_path": "environment/settings.go", "new_path": "environment/settings.go", "diff": "@@ -118,7 +118,7 @@ func (l Limits) AsContainerResources() container.Resources {\n// @see https://github.com/pterodactyl/panel/issues/3988\nif l.CpuLimit > 0 {\nresources.CPUQuota = l.Cp...
Go
MIT License
pterodactyl/wings
Use the correct CPU period when throttling servers; closes pterodactyl/panel#4102
532,311
30.05.2022 18:42:31
14,400
b1be2081eb0599df432c58329a4446aa28bb4f96
Better archive detection logic; try to use reflection as last ditch effort if unmatched closes pterodactyl/panel#4101
[ { "change_type": "MODIFY", "old_path": "server/filesystem/compress.go", "new_path": "server/filesystem/compress.go", "diff": "@@ -5,9 +5,12 @@ import (\n\"archive/zip\"\n\"compress/gzip\"\n\"fmt\"\n+ gzip2 \"github.com/klauspost/compress/gzip\"\n+ zip2 \"github.com/klauspost/compress/zip\"\n\"os\"\n...
Go
MIT License
pterodactyl/wings
Better archive detection logic; try to use reflection as last ditch effort if unmatched closes pterodactyl/panel#4101
532,310
03.07.2022 11:09:07
14,400
214baf83fb3b38f6b65b3309ebff0e746a24ec32
Fix/arm64 docker * fix: arm64 docker builds Don't hardcode amd64 platform for the Wings binary. * update docker file don't specify buildplatform remove upx as it causes arm64 failures remove goos as the build is on linux hosts.
[ { "change_type": "MODIFY", "old_path": "Dockerfile", "new_path": "Dockerfile", "diff": "# Stage 1 (Build)\n-FROM --platform=$BUILDPLATFORM golang:1.17-alpine AS builder\n+FROM golang:1.17-alpine AS builder\nARG VERSION\n-RUN apk add --update --no-cache git make upx\n+RUN apk add --update --no-cache ...
Go
MIT License
pterodactyl/wings
Fix/arm64 docker (#133) * fix: arm64 docker builds Don't hardcode amd64 platform for the Wings binary. * update docker file don't specify buildplatform remove upx as it causes arm64 failures remove goos as the build is on linux hosts. Co-authored-by: softwarenoob <admin@softwarenoob.com>
532,311
09.07.2022 17:52:59
14,400
dda7d10d37b1abd64cd26bf4ecf5ed267093a8fc
Use the natural panel event names
[ { "change_type": "MODIFY", "old_path": "server/activity.go", "new_path": "server/activity.go", "diff": "@@ -13,10 +13,10 @@ import (\ntype Event string\ntype ActivityMeta map[string]interface{}\n-const ActivityPowerPrefix = \"power_\"\n+const ActivityPowerPrefix = \"server:power.\"\nconst (\n- Activ...
Go
MIT License
pterodactyl/wings
Use the natural panel event names
532,324
10.07.2022 00:08:52
-7,200
204a4375fc5cf0213f628b7cb3c1f2cb520c848c
Make the Docker network MTU configurable
[ { "change_type": "MODIFY", "old_path": "config/config_docker.go", "new_path": "config/config_docker.go", "diff": "@@ -36,6 +36,7 @@ type DockerNetworkConfiguration struct {\nMode string `default:\"pterodactyl_nw\" yaml:\"network_mode\"`\nIsInternal bool `default:\"false\" yaml:\"is_internal\"`\nEnab...
Go
MIT License
pterodactyl/wings
Make the Docker network MTU configurable (#130)
532,311
09.07.2022 19:37:39
14,400
59fbd2bceaf3c729b19b5880f6b0e2247e17a226
Add initial niaeve implementation of SFTP logging This will end up flooding the activity logs due to the way SFTP works, we'll need to have an intermediate step in Wings that batches events every 10 seconds or so and submits them as a single "event" for activity.
[ { "change_type": "MODIFY", "old_path": "internal/cron/activity_cron.go", "new_path": "internal/cron/activity_cron.go", "diff": "@@ -18,6 +18,7 @@ func processActivityLogs(m *server.Manager, c int64) error {\n// Don't execute this cron if there is currently one running. Once this task is completed\n/...
Go
MIT License
pterodactyl/wings
Add initial niaeve implementation of SFTP logging This will end up flooding the activity logs due to the way SFTP works, we'll need to have an intermediate step in Wings that batches events every 10 seconds or so and submits them as a single "event" for activity.
532,311
10.07.2022 14:30:32
14,400
f28e06267cb8e872d3f8661b1cc046975ac1a155
Better tracking of SFTP events
[ { "change_type": "MODIFY", "old_path": "internal/cron/activity_cron.go", "new_path": "internal/cron/activity_cron.go", "diff": "@@ -12,16 +12,16 @@ import (\n)\nvar key = []byte(\"events\")\n-var processing system.AtomicBool\n+var activityCron system.AtomicBool\nfunc processActivityLogs(m *server.Ma...
Go
MIT License
pterodactyl/wings
Better tracking of SFTP events
532,311
10.07.2022 14:53:54
14,400
e1e7916790fc21e94b7cdcd8a9ea9bad3d6a0a83
Handle ErrKeyNotFound as a non-error
[ { "change_type": "MODIFY", "old_path": "internal/cron/sftp_cron.go", "new_path": "internal/cron/sftp_cron.go", "diff": "@@ -99,7 +99,7 @@ func (sep *sftpEventProcessor) Run() error {\n// Cleanup runs through all of the events we have currently tracked in the bucket and removes\n// them once we've ma...
Go
MIT License
pterodactyl/wings
Handle ErrKeyNotFound as a non-error
532,311
24.07.2022 10:28:42
14,400
61baccb1a3891bfa25e5b866a61b47cba08145a4
Push draft of sftp reconcilation details
[ { "change_type": "MODIFY", "old_path": "internal/cron/activity_cron.go", "new_path": "internal/cron/activity_cron.go", "diff": "@@ -79,7 +79,7 @@ func (ac *activityCron) Run(ctx context.Context) error {\nif len(logs) == 0 {\nreturn nil\n}\n- if err := ac.manager.Client().SendActivityLogs(context.Bac...
Go
MIT License
pterodactyl/wings
Push draft of sftp reconcilation details
532,311
24.07.2022 14:40:06
14,400
4634c931829938ffe7eeb4fca4611fe9c9b151ed
Add cron to handle parsing SFTP events
[ { "change_type": "MODIFY", "old_path": "internal/cron/cron.go", "new_path": "internal/cron/cron.go", "diff": "@@ -33,13 +33,29 @@ func Scheduler(ctx context.Context, m *server.Manager) (*gocron.Scheduler, error\nmax: config.Get().System.ActivitySendCount,\n}\n+ sftp := sftpCron{\n+ mu: system.NewAto...
Go
MIT License
pterodactyl/wings
Add cron to handle parsing SFTP events
532,311
24.07.2022 15:59:17
14,400
251f91a08e990a2b6680617301b9416c3ee872e3
Fix crons to actually run correctly using the configuration values
[ { "change_type": "MODIFY", "old_path": "config/config.go", "new_path": "config/config.go", "diff": "@@ -167,10 +167,10 @@ type SystemConfiguration struct {\n// being sent to the Panel. By default this will send activity collected over the last minute. Keep\n// in mind that only a fixed number of act...
Go
MIT License
pterodactyl/wings
Fix crons to actually run correctly using the configuration values
532,311
24.07.2022 16:26:52
14,400
21cf66b2b401e90d319ec78a596a22ab94d522a4
Use single connection in pool to avoid simultaneous write lock issues
[ { "change_type": "MODIFY", "old_path": "internal/database/database.go", "new_path": "internal/database/database.go", "diff": "@@ -7,7 +7,9 @@ import (\n\"github.com/pterodactyl/wings/internal/models\"\n\"github.com/pterodactyl/wings/system\"\n\"gorm.io/gorm\"\n+ \"gorm.io/gorm/logger\"\n\"path/filep...
Go
MIT License
pterodactyl/wings
Use single connection in pool to avoid simultaneous write lock issues
532,311
24.07.2022 16:27:05
14,400
f952efd9c72b947d70e63ba69d08214aaeddca30
Don't try to store nil for the metadata
[ { "change_type": "MODIFY", "old_path": "internal/models/activity.go", "new_path": "internal/models/activity.go", "diff": "@@ -60,5 +60,8 @@ func (a *Activity) BeforeCreate(_ *gorm.DB) error {\na.Timestamp = time.Now()\n}\na.Timestamp = a.Timestamp.UTC()\n+ if a.Metadata == nil {\n+ a.Metadata = Acti...
Go
MIT License
pterodactyl/wings
Don't try to store nil for the metadata
532,311
24.07.2022 16:27:25
14,400
8cee18a92bd0a062c7f37affc777d5e12368bbea
Save activity in a background routine to speed things along; cap query time at 3 seconds
[ { "change_type": "MODIFY", "old_path": "internal/cron/sftp_cron.go", "new_path": "internal/cron/sftp_cron.go", "diff": "@@ -7,7 +7,6 @@ import (\n\"github.com/pterodactyl/wings/internal/models\"\n\"github.com/pterodactyl/wings/server\"\n\"github.com/pterodactyl/wings/system\"\n- \"gorm.io/gorm\"\n\"...
Go
MIT License
pterodactyl/wings
Save activity in a background routine to speed things along; cap query time at 3 seconds
532,311
24.07.2022 16:58:03
14,400
c18e84468915bca2925d7c8768ec962f5f4d1339
Support more rapid insertion; ignore issues with i/o
[ { "change_type": "MODIFY", "old_path": "internal/database/database.go", "new_path": "internal/database/database.go", "diff": "@@ -35,6 +35,12 @@ func Initialize() error {\nsql.SetMaxOpenConns(1)\nsql.SetConnMaxLifetime(time.Hour)\n}\n+ if tx := db.Exec(\"PRAGMA synchronous = OFF\"); tx.Error != nil ...
Go
MIT License
pterodactyl/wings
Support more rapid insertion; ignore issues with i/o
532,311
24.07.2022 17:12:47
14,400
e3ab241d7f34dc71a6b645b3abed3305da795b7f
Track file upload activity
[ { "change_type": "MODIFY", "old_path": "router/router_server_files.go", "new_path": "router/router_server_files.go", "diff": "@@ -3,6 +3,7 @@ package router\nimport (\n\"bufio\"\n\"context\"\n+ \"github.com/pterodactyl/wings/internal/models\"\n\"io\"\n\"mime/multipart\"\n\"net/http\"\n@@ -600,6 +601...
Go
MIT License
pterodactyl/wings
Track file upload activity
532,311
24.07.2022 17:16:45
14,400
231e24aa3375b3a483b8601d1ccb56f48686d378
Support new metadata from panel for servers
[ { "change_type": "MODIFY", "old_path": "server/configuration.go", "new_path": "server/configuration.go", "diff": "@@ -16,6 +16,11 @@ type EggConfiguration struct {\nFileDenylist []string `json:\"file_denylist\"`\n}\n+type ConfigurationMeta struct {\n+ Name string `json:\"name\"`\n+ Description strin...
Go
MIT License
pterodactyl/wings
Support new metadata from panel for servers
532,325
25.09.2022 15:25:53
14,400
9dfc651a911d26ad16ff542959149e3f6d023a6c
rpm: update to 1.7.0
[ { "change_type": "MODIFY", "old_path": "rpm/ptero-wings.spec", "new_path": "rpm/ptero-wings.spec", "diff": "Name: ptero-wings\n-Version: 1.5.3\n+Version: 1.7.0\nRelease: 1%{?dist}\nSummary: The server control plane for Pterodactyl Panel. Written from the ground-up with security, speed, and stability...
Go
MIT License
pterodactyl/wings
rpm: update to 1.7.0 (#140)
532,334
25.09.2022 12:34:28
25,200
c736c24118906e90afe0614146cf6dba70b88177
it's to its
[ { "change_type": "MODIFY", "old_path": "cmd/diagnostics.go", "new_path": "cmd/diagnostics.go", "diff": "@@ -58,7 +58,7 @@ func newDiagnosticsCommand() *cobra.Command {\nreturn command\n}\n-// diagnosticsCmdRun collects diagnostics about wings, it's configuration and the node.\n+// diagnosticsCmdRun ...
Go
MIT License
pterodactyl/wings
it's to its (#123)
532,328
26.09.2022 02:47:09
-7,200
c686992e850183a79b7f4619b7979ffcfb1c223a
backups: add an option to change gzip compression level
[ { "change_type": "MODIFY", "old_path": "config/config.go", "new_path": "config/config.go", "diff": "@@ -219,6 +219,15 @@ type Backups struct {\n//\n// Defaults to 0 (unlimited)\nWriteLimit int `default:\"0\" yaml:\"write_limit\"`\n+\n+ // CompressionLevel determines how much backups created by wings...
Go
MIT License
pterodactyl/wings
backups: add an option to change gzip compression level (#128)
532,314
25.09.2022 18:49:48
21,600
b6edf3acf96520065198affe1397ebc8983d3d9e
environment(docker): set outgoing ip correctly Closes
[ { "change_type": "MODIFY", "old_path": "environment/allocations.go", "new_path": "environment/allocations.go", "diff": "@@ -12,6 +12,11 @@ import (\n// Defines the allocations available for a given server. When using the Docker environment\n// driver these correspond to mappings for the container th...
Go
MIT License
pterodactyl/wings
environment(docker): set outgoing ip correctly (#135) Closes https://github.com/pterodactyl/panel/issues/3841
532,315
05.10.2022 08:11:07
-28,800
e98d249cf7436dca9c9dfa57f286852c7fb32441
Add configuration for trusted proxies
[ { "change_type": "MODIFY", "old_path": "config/config.go", "new_path": "config/config.go", "diff": "@@ -91,6 +91,9 @@ type ApiConfiguration struct {\n// The maximum size for files uploaded through the Panel in MB.\nUploadLimit int64 `default:\"100\" json:\"upload_limit\" yaml:\"upload_limit\"`\n+\n+...
Go
MIT License
pterodactyl/wings
Add configuration for trusted proxies (#141)
532,332
05.10.2022 02:12:13
-7,200
0637eebefecd90819e6c98c99b56a0dc33ee6063
docker: add configuration for user namespace remapping
[ { "change_type": "MODIFY", "old_path": "config/config_docker.go", "new_path": "config/config_docker.go", "diff": "@@ -78,6 +78,14 @@ type DockerConfiguration struct {\nOverhead Overhead `json:\"overhead\" yaml:\"overhead\"`\nUsePerformantInspect bool `default:\"true\" json:\"use_performant_inspect\"...
Go
MIT License
pterodactyl/wings
docker: add configuration for user namespace remapping (#121)
532,314
04.10.2022 20:35:48
21,600
6fb61261b0f37f87ec87c0ff5faacebe2fa36a70
server(transfers): track progress of archive creation and extraction
[ { "change_type": "MODIFY", "old_path": "router/router_transfer.go", "new_path": "router/router_transfer.go", "diff": "@@ -12,7 +12,6 @@ import (\n\"path/filepath\"\n\"strconv\"\n\"strings\"\n- \"sync/atomic\"\n\"time\"\n\"emperror.dev/errors\"\n@@ -30,19 +29,9 @@ import (\n\"github.com/pterodactyl/w...
Go
MIT License
pterodactyl/wings
server(transfers): track progress of archive creation and extraction (#143)
532,335
17.10.2022 01:17:27
-7,200
5a760a0dcc3327912cf2c98aa5292d46a7b14b90
Add customizable container labels
[ { "change_type": "MODIFY", "old_path": "config/config.go", "new_path": "config/config.go", "diff": "@@ -16,8 +16,8 @@ import (\n\"time\"\n\"emperror.dev/errors\"\n+ \"github.com/acobaugh/osrelease\"\n\"github.com/apex/log\"\n- \"github.com/cobaugh/osrelease\"\n\"github.com/creasty/defaults\"\n\"gith...
Go
MIT License
pterodactyl/wings
Add customizable container labels (#146)
532,314
06.11.2022 13:33:01
25,200
33373629558700956700d455c533ae6a7d4af8f8
environment(docker): fix podman compatibility
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "# ignore configuration file\n/config.yml\n/config*.yml\n+/config.yaml\n+/config*.yaml\n# Ignore Vagrant stuff\n/.vagrant\n" }, { "change_type": "MODIFY", "old_path": "cmd/diagnostics.go", "new_pat...
Go
MIT License
pterodactyl/wings
environment(docker): fix podman compatibility (#151)
532,314
06.11.2022 13:38:30
25,200
eb4df39d14506fea5da1a0cfe08c58e5a47c526a
server(filesystem): fix inaccurate archive progress
[ { "change_type": "MODIFY", "old_path": "go.mod", "new_path": "go.mod", "diff": "@@ -35,7 +35,7 @@ require (\ngithub.com/klauspost/pgzip v1.2.5\ngithub.com/magiconair/properties v1.8.6\ngithub.com/mattn/go-colorable v0.1.13\n- github.com/mholt/archiver/v3 v3.5.1\n+ github.com/mholt/archiver/v4 v4.0.0...
Go
MIT License
pterodactyl/wings
server(filesystem): fix inaccurate archive progress (#145)
532,308
30.01.2023 17:09:36
-3,600
71fbd9271ef129af0e38e3d157a396e62dc5facd
activity: fix ip validity check
[ { "change_type": "MODIFY", "old_path": "internal/cron/activity_cron.go", "new_path": "internal/cron/activity_cron.go", "diff": "@@ -49,7 +49,7 @@ func (ac *activityCron) Run(ctx context.Context) error {\nfor _, v := range activity {\n// Delete any activity that has an invalid IP address. This is a f...
Go
MIT License
pterodactyl/wings
activity: fix ip validity check (#159)
105,979
26.01.2017 20:32:53
-3,600
a06f8e46152bf158e13ca3c8109d4bed315c6745
fix(addon): Remove temporary path
[ { "change_type": "MODIFY", "old_path": "addon.py", "new_path": "addon.py", "diff": "@@ -34,8 +34,7 @@ netflix_session = NetflixSession(\n)\nlibrary = Library(\nbase_url=base_url,\n- #root_folder=kodi_helper.base_data_path,\n- root_folder='/Users/asciidisco/Desktop/lib',\n+ root_folder=kodi_helper.ba...
Python
MIT License
castagnait/plugin.video.netflix
fix(addon): Remove temporary path
105,992
29.01.2017 15:38:26
-3,600
26c305a4ecab0366fa05d1d4c3bc9ee24d170029
cleanup / msl-includes
[ { "change_type": "MODIFY", "old_path": "resources/lib/MSL.py", "new_path": "resources/lib/MSL.py", "diff": "@@ -18,7 +18,8 @@ from Crypto.Random import get_random_bytes\n# from Crypto.Hash import HMAC, SHA256\nfrom Crypto.Util import Padding\nimport xml.etree.ElementTree as ET\n-from lib import log\...
Python
MIT License
castagnait/plugin.video.netflix
cleanup / msl-includes
105,992
29.01.2017 18:34:31
-3,600
07c987a9bb20d1766404669fa945b98764b45c97
fix bandwidth calulation
[ { "change_type": "MODIFY", "old_path": "resources/lib/MSL.py", "new_path": "resources/lib/MSL.py", "diff": "@@ -233,7 +233,7 @@ class MSL:\nrep = ET.SubElement(video_adaption_set, 'Representation',\nwidth=str(downloadable['width']),\nheight=str(downloadable['height']),\n- bandwidth=str(downloadable[...
Python
MIT License
castagnait/plugin.video.netflix
fix bandwidth calulation
105,979
04.02.2017 15:38:10
-3,600
c1cb01ec0027c7c5a1c67934df407b4820a5686a
feat(service): Dynamic port allocation
[ { "change_type": "MODIFY", "old_path": "service.py", "new_path": "service.py", "diff": "import threading\nimport SocketServer\nimport xbmc\n+import xbmcaddon\n+import socket\nfrom resources.lib.common import log\nfrom resources.lib.MSLHttpRequestHandler import MSLHttpRequestHandler\n-PORT = 8000\n+d...
Python
MIT License
castagnait/plugin.video.netflix
feat(service): Dynamic port allocation
105,979
04.02.2017 16:35:20
-3,600
3305a89c90f475629a06f4ab96fa6fdf9098dd2f
feat(msl): Move functionality from common.py to KodiHelper.py & remove common.py
[ { "change_type": "MODIFY", "old_path": "resources/lib/KodiHelper.py", "new_path": "resources/lib/KodiHelper.py", "diff": "@@ -18,9 +18,6 @@ except:\nclass KodiHelper:\n\"\"\"Consumes all the configuration data from Kodi as well as turns data into lists of folders and videos\"\"\"\n- msl_service_serv...
Python
MIT License
castagnait/plugin.video.netflix
feat(msl): Move functionality from common.py to KodiHelper.py & remove common.py
105,979
06.02.2017 11:54:17
-3,600
8eeebc7e22e95acf7d6cb5ea897450a72c2efe60
fix(msl): Broken imports
[ { "change_type": "MODIFY", "old_path": "resources/lib/MSL.py", "new_path": "resources/lib/MSL.py", "diff": "@@ -18,14 +18,6 @@ from Crypto.Random import get_random_bytes\n# from Crypto.Hash import HMAC, SHA256\nfrom Crypto.Util import Padding\nimport xml.etree.ElementTree as ET\n-from KodiHelper imp...
Python
MIT License
castagnait/plugin.video.netflix
fix(msl): Broken imports
105,979
09.02.2017 12:03:29
-3,600
74733fb1ca2b352a087dd63a60d89a26fa98b27a
feat(search): Adds suggestions to the search results
[ { "change_type": "MODIFY", "old_path": "resources/lib/Navigation.py", "new_path": "resources/lib/Navigation.py", "diff": "@@ -162,6 +162,12 @@ class Navigation:\nfor key in search_results_raw['value']['search'].keys():\nif self.netflix_session._is_size_key(key=key) == False:\nhas_search_results = se...
Python
MIT License
castagnait/plugin.video.netflix
feat(search): Adds suggestions to the search results
105,979
26.02.2017 13:20:23
-3,600
1d8369ef0de8ea43ac783282d50f4844f486d01d
fix(profiles): Add default avatar
[ { "change_type": "MODIFY", "old_path": "resources/lib/NetflixSession.py", "new_path": "resources/lib/NetflixSession.py", "diff": "@@ -281,7 +281,9 @@ class NetflixSession:\nprofile = {'id': profile_id}\nfor important_field in important_fields:\nprofile.update({important_field: item['profiles'][profi...
Python
MIT License
castagnait/plugin.video.netflix
fix(profiles): Add default avatar
105,996
27.02.2017 09:56:59
-3,600
0c5653eedae999646dfa3e125cd7126021d927f9
Set MPD::mediaPresentationDuration
[ { "change_type": "MODIFY", "old_path": "resources/lib/MSL.py", "new_path": "resources/lib/MSL.py", "diff": "@@ -207,15 +207,13 @@ class MSL:\nif len(manifest['psshb64']) >= 1:\npssh = manifest['psshb64'][0]\n-\n+ seconds = manifest['runtime']/1000\n+ duration = \"PT\"+str(seconds)+\".00S\"\nroot = E...
Python
MIT License
castagnait/plugin.video.netflix
Set MPD::mediaPresentationDuration
105,979
27.02.2017 13:53:06
-3,600
559ce4832693d6a8e805ce50c1d6a3283cda6c88
fix(metadata): Bumped version, changed licence to MIT, added providers & removed inputstream.adaptive dependency
[ { "change_type": "MODIFY", "old_path": "addon.xml", "new_path": "addon.xml", "diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.3.0\" provider-name=\"tba\">\n+<addon id=\"plugin.video.netflix\" name=\"Netflix\" ver...
Python
MIT License
castagnait/plugin.video.netflix
fix(metadata): Bumped version, changed licence to MIT, added providers & removed inputstream.adaptive dependency
105,979
27.02.2017 13:54:40
-3,600
e55e9232b3e042fadd2ecaeb2d9f7f7859929915
fix(adult-pin): Fixed named variable for adult pin
[ { "change_type": "MODIFY", "old_path": "resources/lib/Navigation.py", "new_path": "resources/lib/Navigation.py", "diff": "@@ -108,7 +108,7 @@ class Navigation:\nadult_pin = None\nif self.check_for_adult_pin(params=params):\nadult_pin = self.kodi_helper.show_adult_pin_dialog()\n- if self.netflix_sess...
Python
MIT License
castagnait/plugin.video.netflix
fix(adult-pin): Fixed named variable for adult pin
105,979
27.02.2017 13:55:21
-3,600
08d0b0c5ab8ce5424519703268331ee11f1fabe4
fix(core): Added back msl server certificate as long as the kodi settings bug persists
[ { "change_type": "MODIFY", "old_path": "resources/lib/KodiHelper.py", "new_path": "resources/lib/KodiHelper.py", "diff": "@@ -650,7 +650,9 @@ class KodiHelper:\nplay_item.setProperty(inputstream_addon + '.license_type', 'com.widevine.alpha')\nplay_item.setProperty(inputstream_addon + '.manifest_type...
Python
MIT License
castagnait/plugin.video.netflix
fix(core): Added back msl server certificate as long as the kodi settings bug persists
105,979
27.02.2017 14:22:17
-3,600
c69d8a0ec4b7f180c5a7741b64cb86d7e5927bbd
fix(seasons): Make season sorting more robust
[ { "change_type": "MODIFY", "old_path": "resources/lib/KodiHelper.py", "new_path": "resources/lib/KodiHelper.py", "diff": "@@ -557,7 +557,7 @@ class KodiHelper:\nfor index in seasons_sorted:\nfor season_id in season_list:\nseason = season_list[season_id]\n- if int(season['shortName'].split(' ')[1]) =...
Python
MIT License
castagnait/plugin.video.netflix
fix(seasons): Make season sorting more robust
105,979
02.03.2017 13:48:39
-3,600
cd0b4229bc7472a3e822e8e842e7696b535a22e7
chore(metadata): Version bump
[ { "change_type": "MODIFY", "old_path": "addon.xml", "new_path": "addon.xml", "diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.9.0\" provider-name=\"libdev,jojo,asciidisco\">\n+<addon id=\"plugin.video.netflix\" n...
Python
MIT License
castagnait/plugin.video.netflix
chore(metadata): Version bump
105,979
02.03.2017 14:06:16
-3,600
34e4ea221678c60eb04365005818659f153e42d4
chore(readme): Minor additions
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -31,6 +31,7 @@ please open an issue & we can provide you with some help to get started\n- [ ] Enable possibility to export single episodes or seasons to the Library\n- [ ] Evaluate idea of an auto updating libra...
Python
MIT License
castagnait/plugin.video.netflix
chore(readme): Minor additions
106,029
02.03.2017 14:12:09
-3,600
3f1982ccdd1e9a0eb46c505996616613e8089ed4
Removes own Loggging Setting
[ { "change_type": "MODIFY", "old_path": "resources/language/English/strings.po", "new_path": "resources/language/English/strings.po", "diff": "@@ -85,14 +85,6 @@ msgctxt \"#30014\"\nmsgid \"Account\"\nmsgstr \"\"\n-msgctxt \"#30015\"\n-msgid \"Logging\"\n-msgstr \"\"\n-\n-msgctxt \"#30016\"\n-msgid \...
Python
MIT License
castagnait/plugin.video.netflix
Removes own Loggging Setting
106,029
02.03.2017 14:12:46
-3,600
465712e1d4368f223d522f178934f16e044fbb1a
Changes Crypto to Cryptodome Adds more logging to MSL Service
[ { "change_type": "MODIFY", "old_path": "resources/lib/MSL.py", "new_path": "resources/lib/MSL.py", "diff": "@@ -5,18 +5,16 @@ import os\nimport pprint\nimport random\nfrom StringIO import StringIO\n-from hmac import HMAC\n-import hashlib\nimport requests\nimport zlib\nimport time\n-from Crypto.Publi...
Python
MIT License
castagnait/plugin.video.netflix
Changes Crypto to Cryptodome Adds more logging to MSL Service
106,029
02.03.2017 15:44:13
-3,600
693e8f1cb855748ca7b496cc6ef2658865cbab1c
Adds profile to manifest request
[ { "change_type": "MODIFY", "old_path": "resources/lib/MSL.py", "new_path": "resources/lib/MSL.py", "diff": "@@ -13,7 +13,7 @@ from Cryptodome.PublicKey import RSA\nfrom Cryptodome.Cipher import PKCS1_OAEP\nfrom Cryptodome.Cipher import AES\nfrom Cryptodome.Random import get_random_bytes\n-from Crypt...
Python
MIT License
castagnait/plugin.video.netflix
Adds profile to manifest request
106,029
02.03.2017 20:04:23
-3,600
5567fb19118646a4606df39dcb93dfdacf15f256
Adds more profiles to manifest request
[ { "change_type": "MODIFY", "old_path": "resources/lib/MSL.py", "new_path": "resources/lib/MSL.py", "diff": "@@ -85,10 +85,72 @@ class MSL:\n'lookupType': 'PREPARE',\n'viewableIds': [viewable_id],\n'profiles': [\n- 'playready-h264mpl30-dash',\n- 'playready-h264mpl31-dash',\n- 'playready-h264mpl40-das...
Python
MIT License
castagnait/plugin.video.netflix
Adds more profiles to manifest request
105,979
03.03.2017 12:27:06
-3,600
f2d29fb1561ddc4a393555f855a7aa7897106d1b
fix(seasons): Fixes - Seasons are now properly ordered. Remove print debugging statement
[ { "change_type": "MODIFY", "old_path": "resources/lib/KodiHelper.py", "new_path": "resources/lib/KodiHelper.py", "diff": "@@ -532,7 +532,7 @@ class KodiHelper:\nfor index in seasons_sorted:\nfor season_id in season_list:\nseason = season_list[season_id]\n- if int(season['id']) == index:\n+ if int(se...
Python
MIT License
castagnait/plugin.video.netflix
fix(seasons): Fixes #11 - Seasons are now properly ordered. Remove print debugging statement
105,979
03.03.2017 12:54:37
-3,600
91eacc378fc888732ca71e5bccac4e38c303892f
fix(search): Fixes
[ { "change_type": "MODIFY", "old_path": "resources/lib/Navigation.py", "new_path": "resources/lib/Navigation.py", "diff": "@@ -157,6 +157,7 @@ class Navigation:\nif self.netflix_session._is_size_key(key=key) == False:\nhas_search_results = search_results_raw['value']['search'][key]['titles']['length'...
Python
MIT License
castagnait/plugin.video.netflix
fix(search): Fixes #12
105,979
03.03.2017 17:18:13
-3,600
c56befbe404a7931774526ff5d446610e613a2e9
fix(ui): Masks password input, renders empty list if no search or seasons results are found
[ { "change_type": "MODIFY", "old_path": "addon.xml", "new_path": "addon.xml", "diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.9.2\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netflix...
Python
MIT License
castagnait/plugin.video.netflix
fix(ui): Masks password input, renders empty list if no search or seasons results are found
106,029
03.03.2017 23:44:43
-3,600
da6c6467a3bbea8f796851b047df9c8f02399426
Adds init segment length calculation
[ { "change_type": "MODIFY", "old_path": "resources/lib/MSL.py", "new_path": "resources/lib/MSL.py", "diff": "@@ -267,6 +267,7 @@ class MSL:\npssh = manifest['psshb64'][0]\nseconds = manifest['runtime']/1000\n+ init_length = seconds / 2 * 12 + 20*1000\nduration = \"PT\"+str(seconds)+\".00S\"\nroot = E...
Python
MIT License
castagnait/plugin.video.netflix
Adds init segment length calculation
105,979
04.03.2017 12:50:42
-3,600
a36d534fb70a74aa805e147c4f26d518b1edfdf8
fix(parser): Speeds up HTML parsing
[ { "change_type": "MODIFY", "old_path": "resources/lib/NetflixSession.py", "new_path": "resources/lib/NetflixSession.py", "diff": "@@ -14,7 +14,7 @@ try:\nimport cPickle as pickle\nexcept:\nimport pickle\n-from bs4 import BeautifulSoup\n+from bs4 import BeautifulSoup, SoupStrainer\nfrom pyjsparser im...
Python
MIT License
castagnait/plugin.video.netflix
fix(parser): Speeds up HTML parsing
106,029
04.03.2017 14:54:45
-3,600
d6c102c7e99ca8cb1871ee3ef951c35fcd824b84
fix(mslLogin): Restart for credentials in MSL not longer necessary
[ { "change_type": "MODIFY", "old_path": "resources/lib/MSL.py", "new_path": "resources/lib/MSL.py", "diff": "@@ -46,13 +46,11 @@ class MSL:\n'license': 'http://www.netflix.com/api/msl/NFCDCH-LX/cadmium/license'\n}\n- def __init__(self, email, password, kodi_helper):\n+ def __init__(self, kodi_helper)...
Python
MIT License
castagnait/plugin.video.netflix
fix(mslLogin): Restart for credentials in MSL not longer necessary
106,029
04.03.2017 15:18:45
-3,600
a190d8141ee4d3a09c7fef3334fd6083ff9c354e
feat(dolbySound): enable/disable dolby sound in addon settings
[ { "change_type": "MODIFY", "old_path": "resources/language/English/strings.po", "new_path": "resources/language/English/strings.po", "diff": "@@ -148,3 +148,8 @@ msgstr \"\"\nmsgctxt \"#30032\"\nmsgid \"Tracking\"\nmsgstr \"\"\n+\n+msgctxt \"#30033\"\n+msgid \"Use Dolby Sound\"\n+msgstr \"\"\n+\n" ...
Python
MIT License
castagnait/plugin.video.netflix
feat(dolbySound): enable/disable dolby sound in addon settings
105,979
04.03.2017 20:26:20
-3,600
9b6a47ca23d1db0a7425edaaa04dae09ae33ec13
fix(parser): Fix copy & paste error
[ { "change_type": "MODIFY", "old_path": "resources/lib/NetflixSession.py", "new_path": "resources/lib/NetflixSession.py", "diff": "@@ -433,7 +433,7 @@ class NetflixSession:\nreturn False;\n# collect all the login fields & their contents and add the user credentials\n- page_soup = BeautifulSoup(respon...
Python
MIT License
castagnait/plugin.video.netflix
fix(parser): Fix copy & paste error
105,979
04.03.2017 21:12:19
-3,600
08aa1fe9088e94596cbd40055bf63457a7617db8
fix(user-handling): Fixes user profile switching
[ { "change_type": "MODIFY", "old_path": "addon.xml", "new_path": "addon.xml", "diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.9.6\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netflix...
Python
MIT License
castagnait/plugin.video.netflix
fix(user-handling): Fixes user profile switching
105,979
06.03.2017 14:08:19
-3,600
d452ed43938b00e420ebe32091597102aad5be22
feat(esn): Adds ESN setting
[ { "change_type": "MODIFY", "old_path": "addon.xml", "new_path": "addon.xml", "diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.9.8\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netflix...
Python
MIT License
castagnait/plugin.video.netflix
feat(esn): Adds ESN setting
106,029
06.03.2017 16:01:53
-3,600
4ec9b5afd40ef050c550ae2e6c97ca153314b6be
chore(performance): Rearragenes imports to speed up addon start
[ { "change_type": "MODIFY", "old_path": "addon.py", "new_path": "addon.py", "diff": "# Created on: 13.01.2017\n# import local classes\n-if __package__ is None:\n+\nimport sys\n- import os\n- sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))\nfrom resources.lib.NetflixSessio...
Python
MIT License
castagnait/plugin.video.netflix
chore(performance): Rearragenes imports to speed up addon start
105,979
06.03.2017 17:13:04
-3,600
86455dfff7e4878e5192dd97991f2e96a3021739
chore(performance): Further speed up of imports
[ { "change_type": "MODIFY", "old_path": "addon.py", "new_path": "addon.py", "diff": "# Module: default\n# Created on: 13.01.2017\n-# import local classes\n-\nimport sys\nfrom resources.lib.NetflixSession import NetflixSession\nfrom resources.lib.KodiHelper import KodiHelper\n" }, { "change_ty...
Python
MIT License
castagnait/plugin.video.netflix
chore(performance): Further speed up of imports
105,979
07.03.2017 18:40:52
-3,600
69bafa3b4cb738c563f3cc8f7affe7b4fa8e91ea
chore(performance): Removes NetflixSession from the core addon & adds a HTTP proxy service for the Netflix data
[ { "change_type": "MODIFY", "old_path": "addon.py", "new_path": "addon.py", "diff": "# Created on: 13.01.2017\nimport sys\n-from resources.lib.NetflixSession import NetflixSession\nfrom resources.lib.KodiHelper import KodiHelper\nfrom resources.lib.Navigation import Navigation\nfrom resources.lib.Lib...
Python
MIT License
castagnait/plugin.video.netflix
chore(performance): Removes NetflixSession from the core addon & adds a HTTP proxy service for the Netflix data
105,979
07.03.2017 20:02:29
-3,600
ffd4aa3d7edc7f9cab576ae69d3a64d3389d9db9
fix(service): Add dynamic port resolution for netflix service
[ { "change_type": "MODIFY", "old_path": "resources/lib/Navigation.py", "new_path": "resources/lib/Navigation.py", "diff": "@@ -35,7 +35,7 @@ class Navigation:\nself.log = log_fn\ndef get_netflix_service_url (self):\n- return 'http://localhost:7005'\n+ return 'http://localhost:' + str(self.kodi_helper...
Python
MIT License
castagnait/plugin.video.netflix
fix(service): Add dynamic port resolution for netflix service
105,979
07.03.2017 22:12:58
-3,600
e68ef11b3c5f02b0aec3482b81235b9244af4fdb
fix(login): Enables hot login functionality, as well as proper login failed verification
[ { "change_type": "MODIFY", "old_path": "addon.xml", "new_path": "addon.xml", "diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.10.1\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli...
Python
MIT License
castagnait/plugin.video.netflix
fix(login): Enables hot login functionality, as well as proper login failed verification
105,979
07.03.2017 22:30:32
-3,600
b6a1c1cd2250104b139115ef16475c539626a9a7
chore(performace): Prefetching of user video lists
[ { "change_type": "MODIFY", "old_path": "addon.xml", "new_path": "addon.xml", "diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.10.2\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli...
Python
MIT License
castagnait/plugin.video.netflix
chore(performace): Prefetching of user video lists
105,979
07.03.2017 22:42:42
-3,600
94f1971e3d59b51d424bc6919b50c7b831eef2a1
chore(performace): Disable prefetching (temporary)
[ { "change_type": "MODIFY", "old_path": "resources/lib/NetflixHttpSubRessourceHandler.py", "new_path": "resources/lib/NetflixHttpSubRessourceHandler.py", "diff": "@@ -17,7 +17,7 @@ class NetflixHttpSubRessourceHandler:\nelse:\nself.netflix_session.login(account=self.credentials)\nself.profiles = self...
Python
MIT License
castagnait/plugin.video.netflix
chore(performace): Disable prefetching (temporary)
105,979
08.03.2017 00:12:20
-3,600
ca74d7fc650a2b74736c9d0e6eaee3aa805d716c
feat(settings): Adds shortcut to inputstream settings
[ { "change_type": "MODIFY", "old_path": "resources/language/English/strings.po", "new_path": "resources/language/English/strings.po", "diff": "@@ -156,3 +156,7 @@ msgstr \"\"\nmsgctxt \"#30034\"\nmsgid \"ESN (set automatically, can be changed manually)\"\nmsgstr \"\"\n+\n+msgctxt \"#30035\"\n+msgid \...
Python
MIT License
castagnait/plugin.video.netflix
feat(settings): Adds shortcut to inputstream settings
105,979
08.03.2017 08:41:45
-3,600
6ff6b14efa07a2b0e736cef5fee7296179af9a43
fix(api): Exchanges warmer API endpoint with preflight
[ { "change_type": "MODIFY", "old_path": "addon.xml", "new_path": "addon.xml", "diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.10.3\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli...
Python
MIT License
castagnait/plugin.video.netflix
fix(api): Exchanges warmer API endpoint with preflight
105,979
09.03.2017 10:36:23
-3,600
90f1fed6e5a2422235eb412d202da1f98de16149
chore(perf): Remove an unecessary request when entering a profile
[ { "change_type": "MODIFY", "old_path": "resources/lib/NetflixSession.py", "new_path": "resources/lib/NetflixSession.py", "diff": "@@ -280,14 +280,9 @@ class NetflixSession:\nif response.status_code != 200:\nreturn False\n- # fetch the index page again, so that we can fetch the corresponding user dat...
Python
MIT License
castagnait/plugin.video.netflix
chore(perf): Remove an unecessary request when entering a profile
105,979
09.03.2017 11:01:06
-3,600
ed87c5c11a91aedcff4ea843380747f5c7f4df1b
chore(perf): Switch from the browse enpoint to the profiles/manage endpoint when grepping inline JS, as this is twice as fast
[ { "change_type": "MODIFY", "old_path": "resources/lib/NetflixSession.py", "new_path": "resources/lib/NetflixSession.py", "diff": "@@ -24,10 +24,10 @@ class NetflixSession:\nurls = {\n'login': '/login',\n- 'browse': '/browse',\n+ 'browse': '/profiles/manage',\n'video_list_ids': '/preflight',\n'shakti...
Python
MIT License
castagnait/plugin.video.netflix
chore(perf): Switch from the browse enpoint to the profiles/manage endpoint when grepping inline JS, as this is twice as fast
105,979
09.03.2017 12:47:22
-3,600
f08b44fdcde5403719848fbe80b94efa8417ab57
fix(my-list): Fixes that not all videos have been shown on the list
[ { "change_type": "MODIFY", "old_path": "resources/lib/KodiHelper.py", "new_path": "resources/lib/KodiHelper.py", "diff": "@@ -430,7 +430,6 @@ class KodiHelper:\n\"\"\"\nfor video_list_id in video_list:\nvideo = video_list[video_list_id]\n- if type != 'queue' or (type == 'queue' and video['in_my_list...
Python
MIT License
castagnait/plugin.video.netflix
fix(my-list): Fixes that not all videos have been shown on the list
105,979
09.03.2017 12:48:23
-3,600
c83841672d0834fd26d54d87e5a4430c47a3e15f
chore(debug): Remove debug statements
[ { "change_type": "MODIFY", "old_path": "resources/lib/NetflixSession.py", "new_path": "resources/lib/NetflixSession.py", "diff": "@@ -1917,7 +1917,6 @@ class NetflixSession:\nstart = time()\nresponse = self.session.get(url=url, verify=self.verify_ssl, params=params)\nend = time()\n- print params\nse...
Python
MIT License
castagnait/plugin.video.netflix
chore(debug): Remove debug statements
105,979
09.03.2017 14:07:27
-3,600
f2154ed9821a052d1c145f7bdf219f4d9386af81
chore(performance): Does preflight request with lolomoid if given in cookie
[ { "change_type": "MODIFY", "old_path": "resources/lib/MSL.py", "new_path": "resources/lib/MSL.py", "diff": "+#!/usr/bin/env python\n+# -*- coding: utf-8 -*-\n+# Module: MSL\n+# Created on: 26.01.2017\n+\nimport base64\nimport gzip\nimport json\n" }, { "change_type": "MODIFY", "old_path":...
Python
MIT License
castagnait/plugin.video.netflix
chore(performance): Does preflight request with lolomoid if given in cookie